Status Update
Comments
jb...@google.com <jb...@google.com> #2
What do you see when you do: `adb reboot && adb wait-for-device` (this is a commonly used pattern and will continue to be supported - adb will block until the device initializes).
adb usage (for most cases, including `devices`) does *not* require root (root would be needed only when you need to do specialized tasks like push. The behavior of `adb devices` should not be contingent on root.
You might also want to see what gets reported (in response to `adb devices`) after doing `adb unroot`.
If there's still any residual questions, I'll need to look at the host/server logs (and possibly the device logs) - you can attach those to this bug.
dn...@google.com <dn...@google.com> #3
Same behavior is observed after running adb root when root is not already acquired.
note that adb root
re-starts the adbd running on the device. so the common element here -- if you're all talking to the same device(s) -- might be "there's a problem with the usb stack on the devices we're talking to, that means they don't come back when adbd restarts".
jb...@google.com <jb...@google.com> #4
I have the same issue and I've actually found the problem and have a tested fix.
In usb_linux.cpp, where the following code is:
unsigned char length = bufptr[0];
unsigned char type = bufptr[1];
A corsair usb device results in a type
and length
of both 0, even though all processing in the code is correct. It has several good descriptors, eventually followed by a length and type of 0, before bufptr gets to the full descriptor length. Therefore, this code loops indefinitely, and plugging in new devices is never found.
The fix is simple:
@@ -292,6 +292,9 @@ static void find_usb_device(const std::string& base,
device->iSerialNumber, zero_mask, max_packet_size);
break;
}
+ } else if (length == 0) {
+ D("interface descriptor has wrong size");
+ break;
} else {
bufptr += length;
}
th...@outlook.com <th...@outlook.com> #5
th...@outlook.com <th...@outlook.com> #6
th...@outlook.com <th...@outlook.com> #8
Thanks for the fix! This is great news.
The fix from type
is explicitly 0. It can still potentially lead to an infinite loop should some device contain a descriptor with a non-zero type
and a zero length
. While this fixes my problem, I'd still be weary of leaving this potential infinite loop in.
Thanks again
jb...@google.com <jb...@google.com> #9
yeah, i missed that change from ps1 to ps2. i think we should change that back.
th...@outlook.com <th...@outlook.com> #10
jb...@google.com <jb...@google.com>
il...@google.com <il...@google.com> #11
a zero-length descriptor will always cause this code to go into an infinite loop (because we only handle one type
, and that's above this code --- if we could handle the type, we've already done so). it's never going to be useful for the adb server to hang if something's reporting a bad descriptor, so we should always break.
jb...@google.com <jb...@google.com>
ap...@google.com <ap...@google.com> #12
Buenas tardes
jb...@google.com <jb...@google.com> #13
th...@outlook.com <th...@outlook.com> #14
jb...@google.com <jb...@google.com> #15
Marked as fixed
th...@outlook.com <th...@outlook.com> #16
fixed
jb...@google.com <jb...@google.com> #18
I am closing this as I have not been able to reliably produce any of the mentioned errors with the latest library versions and this bug was about providing support for shared elements, which did. I did see a case where if you use system back to interrupt, that the transition didn't finish, but I couldn't reproduce that either.
If you can provide an app that reproduces this case reliably please file a new bug.
th...@outlook.com <th...@outlook.com> #19
The last issue with predictive back I've come across was fixed in fragment-1.8.5. Thanks for the fixes.
Description
Component used: Fragment
After the release of Android 14 brought predictive back, Material Components added support for Material Motion Transitions . Unfortunately the shared element transition that would bring the coolest effects does not yet work, because the Fragment library does not support predictive back with this type of transition.
This is where I would like to request predictive back support for the shared element transition in the AndroidX Fragment library.
Ref:https://github.com/material-components/material-components-android/issues/3619#issuecomment-1883473193