[Bug 50256] New: Animate VST plugin activation doesn't work: wbem_services_ExecQuery gets no network adapters
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(a)winehq.org Reporter: andriy.parhomenko(a)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. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 Gijs Vermeulen <gijsvrm(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |wmi&wbemprox -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #1 from Hans Leidekker <hans(a)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. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #2 from Hans Leidekker <hans(a)meelstraat.net> --- Created attachment 68800 --> https://bugs.winehq.org/attachment.cgi?id=68800 patch Does this patch help? -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #3 from parhom <andriy.parhomenko(a)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 -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #4 from Hans Leidekker <hans(a)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? -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #5 from parhom <andriy.parhomenko(a)gmail.com> --- Created attachment 68822 --> https://bugs.winehq.org/attachment.cgi?id=68822 Backtrace -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #6 from parhom <andriy.parhomenko(a)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 -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 Hans Leidekker <hans(a)meelstraat.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #68821|0 |1 is obsolete| | --- Comment #7 from Hans Leidekker <hans(a)meelstraat.net> --- Created attachment 68839 --> https://bugs.winehq.org/attachment.cgi?id=68839 debug patch Try this one instead. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #8 from parhom <andriy.parhomenko(a)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%" -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #9 from Hans Leidekker <hans(a)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? -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #10 from parhom <andriy.parhomenko(a)gmail.com> --- Created attachment 68845 --> https://bugs.winehq.org/attachment.cgi?id=68845 Backtrace -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #11 from Hans Leidekker <hans(a)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? -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #12 from parhom <andriy.parhomenko(a)gmail.com> --- Created attachment 68850 --> https://bugs.winehq.org/attachment.cgi?id=68850 Backtrace -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 --- Comment #13 from parhom <andriy.parhomenko(a)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. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 Hans Leidekker <hans(a)meelstraat.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |4c5dee872be0c6a5d5df089bcf1 | |5e49edfd00d43 Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #14 from Hans Leidekker <hans(a)meelstraat.net> --- This should be fixed in git after 4c5dee872be0c6a5d5df089bcf15e49edfd00d43. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #15 from Alexandre Julliard <julliard(a)winehq.org> --- Closing bugs fixed in 6.1. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 parhom <andriy.parhomenko(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.winehq.org/sho | |w_bug.cgi?id=50820 -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 Michael Stefaniuc <mstefani(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |6.0.x -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 Michael Stefaniuc <mstefani(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|6.0.x |--- --- Comment #16 from Michael Stefaniuc <mstefani(a)winehq.org> --- Removing the 6.0.x milestone from bug fixes included in 6.0.1. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50256 Mehmet gelisin <mehmetgelisin(a)aol.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mehmetgelisin(a)aol.com --- Comment #17 from Mehmet gelisin <mehmetgelisin(a)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 -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
participants (1)
-
WineHQ Bugzilla