-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
node.exe 8.7.0 and above does not work in Windows NanoServer container #16603
node.exe 8.7.0 and above does not work in Windows NanoServer container #16603
Comments
cc @nodejs/platform-windows |
Just tested the binaries in Windows Server 1709 images (microsoft/windowsservercore:1709 and microsoft/nanoserver:1709) and all versions 8.7.0, 8.8.0 and 8.8.1 work there. |
OK, I ran another test on a fresh Window Server 2016 in Azure, tested with several microsoft/nanoserver:10.0.14393.1066 .. microsoft/nanoserver:10.0.14393.1770 (latest) and I can reproduce the problem. Node.exe 8.7.0 ... 8.8.1 don't work in nanoserver images for the LTS channel of Windows Server 2016. It seems that the newer images for the Semi-annual channel of Windows Server 1709 don't have this problem. |
Ohh boy. This is not going to be fun to debug 🤦♂️ |
@refack Oh the diff between 10.0.14393.1770 and 10.0.16299.19 = current release of Windows Server 1709 could be a little longer :-) It's not just 20 releases I guess. |
@StefanScherer so it might be easier to figure this out from node's side (although I already have an obvious suspect, the bump in libuv from 1.14.1 to 1.15.0 https://github.com/libuv/libuv/blob/v1.x/ChangeLog) |
P.S. node exits with 0xC0000139 {Entry Point Not Found} so it seems like we started using a new API that doesn't exists in 10.0.14393.1770 |
API diff:
dropped:
|
Most probably |
@refack I also tried older nanoserver:10.0.14393.x images and it's the same there. But with that list of API changes in Node.js maybe @PatrickLang can have a short look ^^ and give us a hint which might cause problems? |
Hm, I remember the NanoServer API scan tool. Oh I still have a Docker image of that. FROM stefanscherer/nanoserverapiscan:onbuild
ADD https://nodejs.org/dist/v8.6.0/win-x64/node.exe node-8.6.0.exe
ADD https://nodejs.org/dist/v8.8.1/win-x64/node.exe node-8.8.1.exe
But it doesn't show any errors. |
If @refack's assessment is correct, it's likely from libuv/libuv#1408 (since 8.7 upgraded libuv to 1.15.0)- @bzoz can you take a look, we likely need to GetProcAddress of SetWinEventHook rather than statically linking against it if the API is not present Windows NanoServer |
@refack how did you generate that API diff? I mean, what tool did you use to extract the used APIs? |
@digitalinfinity I'll look into it. It definitely looks like this might be the issue here. |
But if the API is not present we will fail anyways right? What additional benefit The API in question is a standard Win32 API, and the need to invoke it reflectively rather than directly, invokes question on the ability to support Nanoserver (there is no documented necessity on specialized invocation on these APIs). If we follow the suit, we may end up making similar changes to other APIs to ensure runtime reliability? |
|
@rgl pestudio by https://www.winitor.com/ |
SetWinEventHook is not available on some Windows versions. Fixes: nodejs/node#16603
I did a test, creating a simple |
@gireeshpunathil to echo @bzoz SetWinEventHook is not a critical API for Node- so the suggestion was to check for it before using it, because if it's not there, only the feature that depends on it (in this case the console resize event) would need to be off |
I was able to compile Node with the libuv patch and it indeed solves this issue. |
@digitalinfinity - thanks. My original concern is addressed by seeing a well defined document that articulates the platform differences, as well as a scanner tool to automate the dependency check. Now we seem to be well on the path for supporting NanoServer, I propose to run the node test suite in this platform and check we have a reasonable coverage, and potentially containing all the issues under one |
libuv 1.15.0 is slated to land on v6.x on tuesday. Should we back it out or float this patch? |
IMHO floating the patch is the better path. /cc @saghul |
@refack my only concern is that it is practically Friday and the release is going out Tuesday. We'll need to get that patch landed upstream ASAP, and even then I'd like to get a couple opinions about fast tracking it from @nodejs/lts |
@MylesBorins: sorry - but can you please clarify which PR?
|
@gireeshpunathil pretty sure the patch is libuv/libuv#1611 |
sorry for my ignorance but that is not yet landed (to be backed out) right? |
Reopening because the issue isn't fixed till this patch lands in v8.x and v6.x.
@MylesBorins meant either back out libuv 1.15.0, or float this patch Not sure if possible, but if libuv could include that patch in a 1.15.1, that would be better than than floating a patch. I'd rather we float the patch than revert libuv 1.15.0 if possible. |
Original commit message: tty, win: get SetWinEventHook pointer at startup SetWinEventHook is not available on some Windows versions. Fixes: nodejs#16603 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> fixes: nodejs#16603
cherry-pick in #16724 |
Original commit message: tty, win: get SetWinEventHook pointer at startup SetWinEventHook is not available on some Windows versions. Fixes: #16603 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> PR-URL: #16724 Fixes: #16603 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
Original commit message: tty, win: get SetWinEventHook pointer at startup SetWinEventHook is not available on some Windows versions. Fixes: #16603 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> PR-URL: #16724 Fixes: #16603 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
Original commit message: tty, win: get SetWinEventHook pointer at startup SetWinEventHook is not available on some Windows versions. Fixes: #16603 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> PR-URL: #16724 Fixes: #16603 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
Good job everyone 🥇 7 days from report to fix, including a roundtrip through libuv. |
I want to thank you all involved resolving this so quickly. Can‘t wait for the next release. |
I have problems running the newer versions of Node 8 in a Windows Nanoserver Container:
Version:
8.7.0, 8.8.0, 8.8.1
Platform:
Windows
Subsystem:
Windows Nanoserver Container running in Windows 10 / Windows Server 2016
To reproduce the problem, just download the node.exe of specific versions in a Windows NanoServer container:
Then inside the container:
Beginning with Node 8.7.0 this stops working:
The text was updated successfully, but these errors were encountered: