summaryrefslogtreecommitdiff
path: root/gusb
Commit message (Collapse)AuthorAgeFilesLines
* trivial: Fix two -Wunused-variable warningsRichard Hughes2022-09-091-0/+4
|
* trivial: Fix the ColorMunki self testsRichard Hughes2022-09-091-4/+3
| | | | PVS: Converting type 'gssize' to type 'gboolean' can lead to a loss of high-order bits.
* Save device events when requiredRichard Hughes2022-09-089-6/+804
| | | | | | This allows us to simulate an entire context of devices, simulating responses as if the hardware is connected. This allows building rich device-specific unit tests in programs like fwupd, without having to have the hardware attached.
* trivial: Update the ColorHug test to reflect realityRichard Hughes2022-09-061-1/+1
|
* trivial: Ignore more requests when emulating a deviceRichard Hughes2022-09-061-0/+20
|
* trivial: Use a unique JSON key name for the IDRichard Hughes2022-09-061-4/+5
|
* trivial: Use a boolean flag for cache controlRichard Hughes2022-09-061-2/+10
| | | | There's no point keep asking the device for BOS descriptors when it has none.
* trivial: Check the handle before getting BOS descriptorsRichard Hughes2022-09-061-0/+4
|
* trivial: Fix up some docgen headersRichard Hughes2022-09-062-25/+1
|
* Skip some functionality when emulatingRichard Hughes2022-09-051-0/+12
|
* Include the platform ID in the JSON fileRichard Hughes2022-09-051-0/+10
|
* Serialize the GUsbDevice to and from JSON formatRichard Hughes2022-09-0514-11/+640
| | | | This allows us to write tests that mock up entire devices.
* Cache the list of interfaces and descriptorsRichard Hughes2022-09-053-94/+104
| | | | | This can speed up device enumeration, and also allows us to emulate the interfaces or descriptors in the future.
* trivial: Use @self for instance dataRichard Hughes2022-09-0510-482/+471
|
* Use G_DECLARE_DERIVABLE_TYPE to reduce boilerplateRichard Hughes2022-09-0510-217/+190
|
* trivial: Use @self for instance dataRichard Hughes2022-09-044-115/+114
|
* Reformat the code using clang-formatRichard Hughes2022-09-0427-1990/+1923
| | | | | This frees up mental energy when reviewing patches and is something I should have done a long time ago.
* Add support for getting BOS descriptorsRichard Hughes2022-09-048-0/+275
|
* Use g_autoptr() in a lot more placesRichard Hughes2022-09-043-174/+96
| | | | We started using this several months ago and nobody even noticed.
* trivial: Fix a docs warning when buildingRichard Hughes2022-06-161-1/+1
|
* trivial: Fix case of single-line commentsRichard Hughes2022-06-161-12/+12
|
* trivial: Use SPDX-License-Identifier in one more placeRichard Hughes2022-06-161-12/+1
|
* trivial: Remove some duplicate header includesRichard Hughes2022-06-1611-20/+0
|
* Only include the start year in the copyright headerRichard Hughes2022-06-1610-10/+10
| | | | | The end year is legally and functionally redundant, and more importantly causes cherry-pick conflicts when trying to maintain old branches.
* gusb: Add some umockdev based testsBenjamin Berg2022-06-152-0/+224
| | | | The primary purpose for this is to test the hotplug codepaths.
* Never dispatch idle events after the context has been destroyedRichard Hughes2022-06-151-12/+37
| | | | | Also, reduce the number of idle sources by batching them up as much as possible.
* trivial: Remove the '1:1 already exists' debug lines on rescanRichard Hughes2022-01-061-3/+1
|
* Add API to change the hotplug poll intervalRichard Hughes2022-01-063-3/+79
|
* Fix hotplug after threaded device removalRichard Hughes2021-12-071-1/+1
| | | | Somehow this worked when we unref'd the context but did not ref it.
* Fix version script check for GNU BFD linker on FreeBSDTing-Wei Lan2021-10-102-2/+10
| | | | | | | | | | | | | | | | | | On FreeBSD, symbols 'environ' and ' __progname' are defined in crt1.o and referenced by libc.so. This makes it different from platforms which define 'environ' in libc.so. GNU BFD linker fails to link an executable if these two symbols are not put into the global section of the version script because a shared library should not reference a local symbol defined in a different object file. GNU gold and LLVM LLD don't have the problem. This means the current check for --version-script fails on FreeBSD when GNU BFD linker is used. The failure can be avoided by linking a shared library instead of an executable, but meson doesn't support passing additional arguments to the compiler in its 'has_link_argument' method. Instead of adding these two unused symbols to the real version script, use a smaller version script specifically made for the test.
* Don't hard-code the list of OS supporting --version-scriptTing-Wei Lan2021-10-101-2/+3
| | | | | Instead of keeping a list of OS in the build file, it should be better to run a check to determine if it is supported by the linker.
* context: Fix hotplug handling and signal emission during enumerateBenjamin Berg2021-10-051-50/+56
| | | | | | | | | | | | | | | | | | | | | | Initial device enumeration may happen in a random order. This causes issues if someone calls g_usb_device_get_parent from the "device-added" signal handler. The problem is. that this will cause an infinite recursion as GUsb tries to enumerate again, which results in the device to be added. Also, the order of devices is random and resolving the parent requires the full list of devices. As such, we should delay emission until the internal array has been filled. To fix this, emit the signals from g_usb_context_enumerate. Also, while changing this, it became obvious that libusb hotplug callback is updating priv->devices from the libusb thread, only pushing it to an idle handler when the signal is emitted. Doing this is unsafe if hotplug events arrive during enumeration. Push libusb event into the mainloop immediately in order to process it. Doing means that any libusb hotplug events arriving during g_usb_context_enumerate will be handled after the function has returned. Making all possible corner cases behave correctly.
* Add g_usb_device_get_string_descriptor_bytes_fullmasterRicardo Cañuelo2021-09-303-15/+57
| | | | | | | Some devices won't answer to a request with a 128-byte data buffer, this allows the user to specify the size of the request data buffer. g_usb_device_get_string_descriptor_bytes still uses the default buffer size (128 bytes).
* trivial: Fix a warning when used in a subprojectRichard Hughes2021-05-221-2/+1
| | | | | | | Fixes: DEPRECATION: Library was passed to the libraries keyword argument of a previous call to generate() method instead of first positional argument.
* Require *any* python3 to fix FreeBSD buildRichard Hughes2021-05-211-1/+1
|
* Do not depend on libusb_get_port_number() to fix DragonFlyBSD compileRichard Hughes2021-05-211-1/+10
|
* Do not depend on libusb_get_parent() to fix FreeBSD compileRichard Hughes2021-05-211-0/+9
|
* Lower the libusb dep to fix compile on FreeBSDRichard Hughes2021-05-211-3/+18
| | | | | | | | | | | FreeBSD is not a supported platform of libusb. The native USB access library on FreeBSD is libusb20, which provides both the non-portable FreeBSD-specific API and wrapper functions that are mostly compatible eith libusb 1.0 API. It is an integral part of FreeBSD and the version included in the oldest supported FreeBSD release reports 1.0.9 in its libusb-1.0.pc. Based on a patch by Ting-Wei Lan <lantw@src.gnome.org>, many thanks.
* Do not run the tests on FreeBSDRichard Hughes2021-05-211-0/+10
| | | | | | Root hubs on FreeBSD have vid and pid set to zero. Based on a patch by Ting-Wei Lan <lantw@src.gnome.org>
* device: Reference the libusb device when setMarco Trevisan (Treviño)2021-04-131-3/+13
| | | | | | | | | We used to reference a device during the initable init vfunc, however it's better to do it when the device is actually set as an object property. In this way, the device is always unreffed when the object is disposed, without having to care about the ordering.
* device: Do not double-reference USB devicesMarco Trevisan (Treviño)2021-04-131-2/+0
| | | | | | | | | | | Currently gusb-device adds two references to an internal libusb device, causing a memory leak on destruction. In fact, we add a reference when the device is constructed and when the device is inited. To avoid this and ensure that libusb will cleanup all the devices on context destruction, only reference on device initialization.
* Add g_usb_device_get_string_descriptor_bytes()Richard Hughes2021-01-273-0/+62
| | | | This is requried for the GD32VF103 device.
* trivial: Include string.h for memcpy()Richard Hughes2020-12-141-0/+2
|
* device: Fix cancellation if cancellable is already cancelledBenjamin Berg2020-10-011-27/+42
| | | | | | | | | | | libusb can only handle cancellation if the transfer is already in-flight. However, g_cancellable_connect will immediately call the callback and then libusb_cancel_transfer when the cancellable is already cancelled at the time the transfer is submitted. Move the cancellation registration to after transfer submission to avoid ordering issues. Also avoid even submitting the transfer if the cancellable is already cancelled to begin with.
* trivial: Fix up typos spotted by codespellRichard Hughes2020-09-243-8/+8
|
* Properly set dylib versions on darwinCaleb Xu2020-08-031-0/+1
|
* Add a way to get iConfigurationBenson Leung2020-07-293-0/+37
| | | | | Adds a getter for a gusb_device to get the string index for the active configuration's description.
* Allow building GtkDoc when building as a subprojectRichard Hughes2020-06-241-0/+3
| | | | Fixes https://github.com/fwupd/fwupd/issues/2178
* generate-version-script: Don't hard-code the path of python3Ting-Wei Lan2020-03-241-0/+4
| | | | | | Python can be installed in different directories on different operating systems, so we can't hard-code the path of it. Instead, use meson to find it to avoid 'no such file or directory' error on the bad path.
* build: version-script should be supported everywhere except on darwin systemLaurent Bigonville2020-03-181-1/+1
| | | | Fixes: #34