Hello.
I have a problem that's sadly very hard to reproduce and leaves behind no log trace.
VH client often crashes on windows when connecting to MCX N23x and MCXA156 microcontrollers. There were other devices used with the same environment (different resberries, but same setup) and they don't produce the crash.
The VH server Is running on a Raspberry Pi 4.
The crash happens when trying to initiate the communication with the device on application level. The VH connection is established successfully, but crashes after data starts flowing over the serial port.
There is no mention in the client's log of any disconnect, from the server there doesn't seem to be anything of note.
The crash is especially pesky, because it has lasting effects. The exact behavior can differ a bit, but in majority cases it's as follows:
The connected device stays visible in device manager, and windows still seems to think that it is connected and cannot be removed, neither via GUI or directly through command line (pnputil).
After restarting VH, no device including the one which caused the crash can be connected to. VH will report them as acquired. but OS will not detect them.
This only gets fixed after a PC reset, which usually takes very long time, eventually leading into an OS crash. Most likely related to the "ghost" device left behind after the crash. Even OS can't handle it
Sometimes the device can be manually removed, in which case VH also continues to be usable. This is pretty rare, so I haven't been able to figure out any connected circumstances that would decide which of the two cases happens. I'm also not fully sure if the next info down bellow is the same for this case.
The crash does get logged in System Event messages. It's a fault when VH is using library C:\Windows\System32\ucrtbase.dll.
One entry is about the crash itself, one from Windows Error Reporting
Transcript of the crash report:Faulting application name: vhui64.exe, version 5.8.2.0, time stamp 0x6783273d
Faulting module name ucrtbase.dll, version: 10.0.19041.3636, time stamp: 0x81cf5d89
Exception code: 0xc0000005
Fault offset: 0x0000000000026ed1
Faulting process id: 0xa08
Faulting application start time: 0x01db68e09e345551
Faulting application path: *VH client path*
Faulting module path: C:\Windows\System32\ucrtbase.dll
Faulting package full name:
Faulting package-relative application ID:
Transcript of the WER report containing mostly the same info:Problem signature:
P1: vhui64.exe
P2: 5.8.2.0
P3: 6783273d
P4: ucrtbase.dll
P5: 10.0.19041.3636
P6: 81cf5d89
P7: c0000005
P8: 0x0000000000026ed1
Attached to the latter report is also this wer file, but nothing else (file should stay up for 7 days, i can send it again if it expires, or just send the contents, it's 200 lines):
https://tmpsend.com/hrccVij1
.
Try this:
Debug info
I finally managed to catch it. Sorry it took so long. Had to do it through attaching to process, not throug JIT but through attaching to process manually.
The problem might also be related to VH running through SSH, windows does run the program through some desktop-less mode, which might change things.
Anyway the whole thing is pretty long. The important parts seem to be this at the end:
But there also seem to be a lot (at least 40+) threads that seem stuck, although I might be misunderstanding the meaning here. All of them look very similar, with the same stack trace
dropping the full thing here
https://tmpsend.com/qgJSmDVG
.
Virtualhere requires GUI mode (it is not a console program) so that could be the issue.
"VH running through SSH" that is not really supported unless you setup sshd correctly. E.g https://stackoverflow.com/questions/59880794/starting-gui-programs-via-openssh-on-windows because it needs to be able to access the user session.
Virtualhere is expecting to be notified of HID devices arriving and relies on GUI Windows APIs to determine what it is.
(All those 40+ threads are running ok but paused because of the crash)
SSHD
Understood. Will set up sshd and report back.