https://bugs.winehq.org/show_bug.cgi?id=50256
Bug ID: 50256 Summary: Animate VST plugin activation doesn't work: wbem_services_ExecQuery gets no network adapters Product: Wine Version: 6.0-rc1 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: andriy.parhomenko@gmail.com Distribution: ---
Created attachment 68788 --> https://bugs.winehq.org/attachment.cgi?id=68788 Backtrace
When I try to activate Animate VST plugin by MasteringTheMix, it gives error 28, which means no network adapters detected (https://masteringthemix.zendesk.com/hc/en-gb/articles/208383349-ENABLE-THE-N...)
The plugin was loaded in Reaper with linvst.
I've attached the backtrace with WINEDEBUG=+wbemprox, it seems that wbem_services_ExecQuery returns 0 adapters found.
https://bugs.winehq.org/show_bug.cgi?id=50256
Gijs Vermeulen gijsvrm@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |wmi&wbemprox
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #1 from Hans Leidekker hans@meelstraat.net --- It's looking for the GUID and DeviceID properties but we don't support the GUID currently:
0104:trace:wbemprox:wbem_services_ExecQuery 0000000005036100, L"WQL", L"SELECT GUID, DeviceID FROM Win32_NetworkAdapter WHERE PhysicalAdapter = TRUE AND (PNPDeviceID LIKE "PCI\\%" OR PNPDeviceID LIKE "USB\\%" OR PNPDeviceID LIKE "SD\\%" OR PNPDeviceID LIKE "XEN%\\%" OR PNPDeviceID LIKE "VMBUS\\%" OR PNPDeviceID LIKE "%BDRV\\%") AND NOT"..., 0x00000030, 0000000000000000, 000000000021CB88
The truncated NOT clause may also refer to unimplemented properties.
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #2 from Hans Leidekker hans@meelstraat.net --- Created attachment 68800 --> https://bugs.winehq.org/attachment.cgi?id=68800 patch
Does this patch help?
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #3 from parhom andriy.parhomenko@gmail.com --- (In reply to Hans Leidekker from comment #2)
Created attachment 68800 [details] patch
Does this patch help?
No, still getting this:
0100:trace:wbemprox:wbem_services_ExecQuery 0000000004F572B0, L"WQL", L"SELECT GUID, DeviceID FROM Win32_NetworkAdapter WHERE PhysicalAdapter = TRUE AND (PNPDeviceID LIKE "PCI\\%" OR PNPDeviceID LIKE "USB\\%" OR PNPDeviceID LIKE "SD\\%" OR PNPDeviceID LIKE "XEN%\\%" OR PNPDeviceID LIKE "VMBUS\\%" OR PNPDeviceID LIKE "%BDRV\\%") AND NOT"..., 0x00000030, 0000000000000000, 000000000021CB88 0100:trace:wbemprox:grab_table returning 0000000062C9E740 0100:trace:wbemprox:parse_query wql_parse returned 0 0100:trace:wbemprox:fill_networkadapter created 0 rows
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #4 from Hans Leidekker hans@meelstraat.net --- Created attachment 68821 --> https://bugs.winehq.org/attachment.cgi?id=68821 debug patch
Can you apply this debug patch on top of the previous patch and get another +wbemprox trace?
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #5 from parhom andriy.parhomenko@gmail.com --- Created attachment 68822 --> https://bugs.winehq.org/attachment.cgi?id=68822 Backtrace
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #6 from parhom andriy.parhomenko@gmail.com --- (In reply to Hans Leidekker from comment #4)
Created attachment 68821 [details] debug patch
Can you apply this debug patch on top of the previous patch and get another +wbemprox trace?
Done
https://bugs.winehq.org/show_bug.cgi?id=50256
Hans Leidekker hans@meelstraat.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #68821|0 |1 is obsolete| |
--- Comment #7 from Hans Leidekker hans@meelstraat.net --- Created attachment 68839 --> https://bugs.winehq.org/attachment.cgi?id=68839 debug patch
Try this one instead.
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #8 from parhom andriy.parhomenko@gmail.com --- (In reply to Hans Leidekker from comment #7)
Created attachment 68839 [details] debug patch
Try this one instead.
Now the printed query seems not cut off:
SELECT GUID, DeviceID FROM Win32_NetworkAdapter WHERE PhysicalAdapter = TRUE AND (PNPDeviceID LIKE "PCI\%" OR PNPDeviceID LIKE "USB\%" OR PNPDeviceID LIKE "SD \%" OR PNPDeviceID LIKE "XEN%\%" OR PNPDeviceID LIKE "VMBUS\%" OR PNPDeviceID LIKE "%BDRV\%") AND NOT ServiceName LIKE "usbrndis%"
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #9 from Hans Leidekker hans@meelstraat.net --- (In reply to parhom from comment #8)
(In reply to Hans Leidekker from comment #7)
Created attachment 68839 [details] debug patch
Try this one instead.
Now the printed query seems not cut off:
SELECT GUID, DeviceID FROM Win32_NetworkAdapter WHERE PhysicalAdapter = TRUE AND (PNPDeviceID LIKE "PCI\%" OR PNPDeviceID LIKE "USB\%" OR PNPDeviceID LIKE "SD \%" OR PNPDeviceID LIKE "XEN%\%" OR PNPDeviceID LIKE "VMBUS\%" OR PNPDeviceID LIKE "%BDRV\%") AND NOT ServiceName LIKE "usbrndis%"
Can you attach the full trace?
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #10 from parhom andriy.parhomenko@gmail.com --- Created attachment 68845 --> https://bugs.winehq.org/attachment.cgi?id=68845 Backtrace
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #11 from Hans Leidekker hans@meelstraat.net --- Created attachment 68847 --> https://bugs.winehq.org/attachment.cgi?id=68847 patch2
This patch (on top of the first) adds Win32_NetworkAdapter.ServiceName and fixes escaped backslashes in LIKE clauses. It think that should fix this query. Can you give it a try?
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #12 from parhom andriy.parhomenko@gmail.com --- Created attachment 68850 --> https://bugs.winehq.org/attachment.cgi?id=68850 Backtrace
https://bugs.winehq.org/show_bug.cgi?id=50256
--- Comment #13 from parhom andriy.parhomenko@gmail.com --- (In reply to parhom from comment #12)
Created attachment 68850 [details] Backtrace
Getting now different error code from the plugin: 11. Unfortunately, it is not documented.
https://bugs.winehq.org/show_bug.cgi?id=50256
Hans Leidekker hans@meelstraat.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |4c5dee872be0c6a5d5df089bcf1 | |5e49edfd00d43 Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED
--- Comment #14 from Hans Leidekker hans@meelstraat.net --- This should be fixed in git after 4c5dee872be0c6a5d5df089bcf15e49edfd00d43.
https://bugs.winehq.org/show_bug.cgi?id=50256
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #15 from Alexandre Julliard julliard@winehq.org --- Closing bugs fixed in 6.1.
https://bugs.winehq.org/show_bug.cgi?id=50256
parhom andriy.parhomenko@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.winehq.org/sho | |w_bug.cgi?id=50820
https://bugs.winehq.org/show_bug.cgi?id=50256
Michael Stefaniuc mstefani@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |6.0.x
https://bugs.winehq.org/show_bug.cgi?id=50256
Michael Stefaniuc mstefani@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|6.0.x |---
--- Comment #16 from Michael Stefaniuc mstefani@winehq.org --- Removing the 6.0.x milestone from bug fixes included in 6.0.1.
https://bugs.winehq.org/show_bug.cgi?id=50256
Mehmet gelisin mehmetgelisin@aol.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mehmetgelisin@aol.com
--- Comment #17 from Mehmet gelisin mehmetgelisin@aol.com --- I am getting continuous spamming in command console of the following fixme when the mouse pointer http://www.compilatori.com/ is moved over any loaded webpage in a builtin Wine Internet Explorer window. This happens both when it's loaded as a standalone and when the browser is embedded into another application. 0024:fixme:msctf:InputProcessorProfileMgr_GetActiveProfile (02D356D0)->({34745c63-b2f0-4784-8b67-5e12c8701a31} http://www.wearelondonmade.com/
One way to reproduce this is by running the below command, bringing Wine Internet Exporer window into focus and then moving the cursor over it. http://www.jopspeech.com/
wine iexplore
I am getting continuous spamming in command console of the following fixme when the http://joerg.li/ mouse pointer is moved over any loaded webpage in a builtin Wine Internet Explorer window. http://connstr.net/ This happens both when it's loaded as a standalone and when the browser is embedded into another application. http://embermanchester.uk/ 0024:fixme:msctf:InputProcessorProfileMgr_GetActiveProfile (02D356D0)->({34745c63-b2f0-4784-8b67-5e12c8701a31} http://www.slipstone.co.uk/
One way to reproduce this is by running the below command, bringing Wine Internet Exporer window into focus and then moving the cursor over it.
wine iexplore http://www.logoarts.co.uk/
I am getting continuous spamming in command console of the following fixme when the mouse pointer is moved over any loaded webpage in a http://www.acpirateradio.co.uk/ builtin Wine Internet Explorer window. This happens both when it's loaded as a standalone and when the browser is embedded into another application. 0024:fixme:msctf:InputProcessorProfileMgr_GetActiveProfile (02D356D0)->({34745c63-b2f0-4784-8b67-5e12c8701a31}
https://waytowhatsnext.com/ One way to reproduce this is by running the below command, bringing Wine Internet Exporer window into focus and then moving the cursor over it.
wine iexplore
https://www.webb-dev.co.uk/ I am getting continuous spamming in command console of the following fixme when the mouse pointer is moved over any loaded webpage in a builtin Wine Internet Explorer window. This happens both when it's loaded as a standalone and when the browser is embedded into another application. 0024:fixme:msctf:InputProcessorProfileMgr_GetActiveProfile (02D356D0)->({34745c63-b2f0-4784-8b67-5e12c8701a31} http://www.iu-bloomington.com/
One way to reproduce this is by running the below command, bringing Wine Internet Exporer window into focus and then moving the cursor over it. http://www-look-4.com/ wine iexplore