mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
The iNet Wireless Daemon (iwd) project aims to provide a comprehensive Wi-Fi connectivity solution for Linux based devices. The core goal of the project is to optimize resource utilization: storage, runtime memory and link-time costs.
https://iwd.wiki.kernel.org/
119a1e7de3
==20758== Invalid read of size 1 ==20758== at 0x401254: ie_tlv_iter_next (ie.c:55) ==20758== by 0x40104B: ie_test (test-ie.c:57) ==20758== by 0x4021C0: l_test_run (test.c:83) ==20758== by 0x4011B7: main (test-ie.c:123) ==20758== Address 0x51e10f3 is 0 bytes after a block of size 19 alloc'd ==20758== at 0x4C2C874: realloc (in /usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so) ==20758== by 0x4010CF: append_data (test-ie.c:101) ==20758== by 0x40118F: main (test-ie.c:119) ==20758== ==20758== Invalid read of size 1 ==20758== at 0x401266: ie_tlv_iter_next (ie.c:56) ==20758== by 0x40104B: ie_test (test-ie.c:57) ==20758== by 0x4021C0: l_test_run (test.c:83) ==20758== by 0x4011B7: main (test-ie.c:123) ==20758== Address 0x51e10f4 is 1 bytes after a block of size 19 alloc'd ==20758== at 0x4C2C874: realloc (in /usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so) ==20758== by 0x4010CF: append_data (test-ie.c:101) ==20758== by 0x40118F: main (test-ie.c:119) |
||
---|---|---|
client | ||
linux | ||
src | ||
unit | ||
.gitignore | ||
acinclude.m4 | ||
AUTHORS | ||
bootstrap | ||
bootstrap-configure | ||
ChangeLog | ||
configure.ac | ||
COPYING | ||
INSTALL | ||
Makefile.am | ||
README |
Wireless daemon for Linux ************************* Copyright (C) 2013-2014 Intel Corporation. All rights reserved. Compilation and installation ============================ In order to compile the source code you need following software packages: - GCC compiler - GNU C library - Embedded Linux library To configure run: ./configure --prefix=/usr Configure automatically searches for all required components and packages. To compile and install run: make && make install Embedded Linux library ====================== In order to compile the daemon and control utility the development version of Embedded Linux library is required to be present. The development repositories can be found here: git://git.kernel.org/pub/scm/libs/ell/ell.git https://kernel.googlesource.com/pub/scm/libs/ell/ell.git The build systems requires that the Embedded Linux library source code is available on the same top level directory as the Wireless daemon source code: . |--- ell | |--- ell | `--- unit `--- iwd |--- src `--- client It is not required to build or install Embedded Linux library. The build will happen when building the Wireless daemon and it will then be linked internally. Kernel dependencies =================== In order to use this daemon and control utility the kdbus kernel module is required. The development repositories can be found here: https://github.com/gregkh/kdbus https://code.google.com/p/d-bus/ The daemon will start its own private bus that is located at the /dev/kdbus device hierarchy: /dev/kdbus |--- control `--- 0-iwd `--- bus When started as root, the new private bus will be /dev/kdbus/0-iwd/bus and it can be verified with the busctl utility from systemd: # busctl --address=kernel:path=/dev/kdbus/0-iwd/bus NAME PID PROCESS USER CONNECTION CONNECTION-NAME :1.1 62151 iwd root :1.1 iwd :1.2 62153 busctl root :1.2 sd-busctl Clients talking to the daemon must specifiy the private bus address.