Skip to content
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

Windows contribution problems #21821

Closed
l0rd opened this issue Feb 26, 2024 · 15 comments · Fixed by #22913
Closed

Windows contribution problems #21821

l0rd opened this issue Feb 26, 2024 · 15 comments · Fixed by #22913
Labels
kind/bug Categorizes issue or PR as related to a bug. windows issue/bug on Windows

Comments

@l0rd
Copy link
Member

l0rd commented Feb 26, 2024

These are some notes of the issues faced while trying to follow the contributing instructions for windows (build_windows.md). The goal was to be able to build podman from source on windows and execute podman run on both WSL and Hyper-v.

The main question is if MSYS2 is still a requirement today as it complicates the setup of the dev environment. And if it is required how can we provide instructions to expose the tools installed via MSYS2 externally (to the IDE and Powershell).

Troubles when installing msys2 with chocolately

chocolately is a popular package manager for windows. I have used to install msys2 (choco install msys2) and started a mintty shell running msys2 from a terminal. But then the environment is MSYS2 rather then UCRT64 and I spent some time to understand why commands were not working (e.g. go could not be found).

MSYS2 VS Code integration (or other IDEs)

This is worth linking. And it's still unclear how to configure the golang VS Code extension to use the go version installed in MSYS2 environment.

build - RELEASE_NUMBER / RELEASE_VERSION issue

The first issue issue I faced trying to run make podman-remote was:

Makefile:754: *** Required variable RELEASE_NUMBER value is undefined, whitespace, or empty.  Stop.

I resolved that executing export RELEASE_VERSION=5.0.0-dev

build - "file contains a virus" issue

github.com/containers/podman/v5/test/version: go build github.com/containers/podman/v5/test/version: open C:\msys64\tmp\go-build700477625\b001\exe\a.out.exe: Operation did not complete successfully because the file contains a virus or potentially unwanted software.
make: *** [Makefile:303: test/version/version] Error 1

To fix that "C:\msys64\tmp" should be added in the exlusions list in the Windows Security Virus & threat protection settings

hyper-v

It's difficult to find out how to configure podman to use hyper-v instead of the default wsl. Looking at the source code I found that we need to set $env:CONTAINERS_MACHINE_PROVIDER="hyperv". Also hyper-v should be enabled first (doc).

policy.json

The file [/etc/containers/policy.json](https://podman.io/docs/installation#policyjson) is required for machine init to work when the provider is hyper-v. Interestingly it's not needed when the provider is wsl:

Error: obtaining default signature policy: open /etc/containers/policy.json: The system cannot find the path specified.

To overcome that I had to use the powershell (not the MSYS2 shell) and create the file C:\etc\containers\policy.json copying https://src.fedoraproject.org/rpms/containers-common/raw/main/f/default-policy.json.

makefile and winmake.ps1

I found that CI uses ./winmake localmachine (pkg\machine\e2e\README.md). The script ./winmake.ps1 requires powershell (rather than MSYS2) and it's not clear why there are 2 makefiles.

Anyway I faced 2 problems to run it:

PS C:\Users\mario\Git\podman> ./winmake localmachine
./winmake : File C:\Users\mario\Git\podman\winmake.ps1 cannot be loaded. The file C:\Users\mario\Git\podman\winmake.ps1 is not digitally signed. You cannot run this script on the current system. For more
information about running scripts and setting execution policy, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ ./winmake localmachine
+ ~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess

This was fixed by Set-ExecutionPolicy -ExecutionPolicy Bypass.

And then I had another error because golang is missing (Powershell doesn't see the version installed by MSYS2):

Building Ginkgo
go build -o build/ginkgo.exe ./vendor/github.com/onsi/ginkgo/v2/ginkgo
Invoke-Expression : The term 'go' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct
and try again.
At C:\Users\mario\Git\podman\contrib\cirrus\win-lib.ps1:74 char:5
+     Invoke-Expression $command
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (go:String) [Invoke-Expression], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException,Microsoft.PowerShell.Commands.InvokeExpressionCommand

I installed golang (choco install golang) and I was able to run ./winmake podman-remote.

Could not find gvproxy

After running $env:CONTAINERS_MACHINE_PROVIDER="hyperv"; ./podman.exe machine init, ./podman.exe machine start fails:

./podman.exe machine start
Starting machine "podman-machine-default"
Error: could not find "gvproxy" in one of {[C:\Program Files\RedHat\Podman] {<nil>}}.  To resolve this error, set the helper_binaries_dir key in the `[engine]` section of containers.conf to the directory containing your helper binaries.

I run make win-gvproxy (using the MSYS2 shell):

$ make win-gvproxy
GOARCH=amd64 go build -o test/version/version ./test/version/
mkdir -p bin/windows/
curl -sSL -o bin/windows/gvproxy.exe --retry 5 https://github.com/containers/gvisor-tap-vsock/releases/download/v0.7.3/gvproxy-windowsgui.exe
curl -sSL -o bin/windows/win-sshproxy.exe --retry 5 https://github.com/containers/gvisor-tap-vsock/releases/download/v0.7.3/win-sshproxy.exe

But podman machine start was still failing with the same error so I tried to build podman remote using the HELPER_BINARIES_DIR make podman-remote HELPER_BINARIES_DIR=\Users\mario\Git\podman\bin\windows but without success.

Finally I created the following C:\etc\containers\containers.conf and the problem disappeared.

[engine]
helper_binaries_dir=["C:/Users/mario/Git/podman/bin/windows"]
@l0rd l0rd added the kind/bug Categorizes issue or PR as related to a bug. label Feb 26, 2024
@rhatdan
Copy link
Member

rhatdan commented Feb 26, 2024

@n1hility PTAL

@l0rd
Copy link
Member Author

l0rd commented Feb 26, 2024

To clarify: if those are fair points and the windows dev environment setup isn't already documented somewhere else I would like to work on this issue and specifically improve the windows part of CONTRIBUTING.md.

@Luap99 Luap99 added the windows issue/bug on Windows label Feb 26, 2024
@baude
Copy link
Member

baude commented Feb 26, 2024

@n1hility PTAL

the podman team needs to look at these and solve them. @l0rd the list is actually much longer because we have no native linting and we should not require any special installs like chocolar or terminal emulators to contribute.

@baude
Copy link
Member

baude commented Feb 26, 2024

the windows way to build podman is done with .\winmake.ps1 podman-remote ... it looks like that didn't make the docs anywhere

@baude
Copy link
Member

baude commented Feb 26, 2024

hyperv should really be enabled via containers.conf where you can define your machine provider ... the environment variable should only be for temporary, ci, or dev usage.

@baude
Copy link
Member

baude commented Feb 26, 2024

i think #21765 will fix the policy problem.

@baude
Copy link
Member

baude commented Feb 26, 2024

as for dependencies, we should probably advise folks to download prebuilt binaries as needed instead of building them. this is a good point you make.

@n1hility
Copy link
Member

You can get Makefile based builds working under msys but there is likely always going to be gotchas with that env. the better appaoach is to, as @baude mentioned above use winmake.ps1, although it is still relatively new, so isnt yet providing a full distribution (just the podman-remote binary). You can also cross compile and build the zip dist on a linux vm, container, or host using make podman-remote-release-windows_amd64.zip

WRT to helper binaries, most things are using sibling fs based lookups (helpers located in same dir as executing podman.exe), although there are a few cases whether thats not yet done.

Just so you are aware Podman 5 is still under a high degree of change atm (after a big refactor), so if you work on any build related changes, keep in mind the odds of conflict will be higher than normal until the release is out the door.

@arixmkii
Copy link
Contributor

I will check the contribution docs, as I was the original author. I've been running MSYS builds in my dev VMs and in GH Actions for over the years w/o noticing any significant issues, so, this should be stable enough, but might be there were some not so well documented parts.

@arixmkii
Copy link
Contributor

arixmkii commented Feb 27, 2024

Finally I created the following C:\etc\containers\containers.conf and the problem disappeared.

This is the issue with the current work in progress with machine 5. It is very very new and will be sorted out. There is a ticket for this #21765

This is not documented, because it is very new - introduced with the change how machine images are fetched and it is not supposed to lasting, it is going to be fixed/documented when finalized.

@arixmkii
Copy link
Contributor

as for dependencies, we should probably advise folks to download prebuilt binaries as needed instead of building them. this is a good point you make.

Plus one to this. I often just install the latest release to get all the needed binaries. May be it should be documented as an option.

@l0rd
Copy link
Member Author

l0rd commented Mar 1, 2024

I have submitted #21910 to add a new section to build podman on windows without MSYS.

@l0rd
Copy link
Member Author

l0rd commented Mar 1, 2024

the podman team needs to look at these and solve them. @l0rd the list is actually much longer because we have no native linting and we should not require any special installs like chocolar or terminal emulators to contribute.

The instructions in the PR I have submitted don't require anything other than go and git. I have created a separate issue to support linting on windows.

Copy link

github-actions bot commented Apr 1, 2024

A friendly reminder that this issue had no activity for 30 days.

@n1hility
Copy link
Member

n1hility commented Apr 1, 2024

Current status:

The main question is if MSYS2 is still a requirement today as it complicates the setup of the dev environment. And if it is required how can we provide instructions to expose the tools installed via MSYS2 externally (to the IDE and Powershell).

Current goal is to not require MSYS2 (using winmake instead), require minimal system deps, and add improved portable tasks for specific needs (validation, lint etc)

hyper-v

It's difficult to find out how to configure podman to use hyper-v instead of the default wsl. Looking at the source code I found that we need to set $env:CONTAINERS_MACHINE_PROVIDER="hyperv". Also hyper-v should be enabled first (doc).

Current plan is add a Hyper-V option to the installer (in progress - @lord is looking at it)

policy.json

The file [/etc/containers/policy.json](https://podman.io/docs/installation#policyjson) is required for machine init to work when the provider is hyper-v. Interestingly it's not needed when the provider is wsl:

Fixed

This was fixed by Set-ExecutionPolicy -ExecutionPolicy Bypass.

This is one expected, and the error message tells you what to do. Although could also add a doc entry

And then I had another error because golang is missing (Powershell doesn't see the version installed by MSYS2):

Golang is an expected dependency at the moment.

I installed golang (choco install golang) and I was able to run ./winmake podman-remote.

Could not find gvproxy

Currently you need an installation of podman on your system to include this. Although I agree the build should fetch this for you and we should change the search path

l0rd added a commit to l0rd/podman that referenced this issue Jun 5, 2024
Add the following targets in winmake.ps1:
- `installer`: builds the Windows installer
- `docs`: builds the documentation HTML pages
- `validatepr`: runs the Linux Makefile `.valiatepr`
                target using podman.
- `lint`: faster validation that runs linter locally

Update of `build_windows.md`:
- removed every reference to the MSYS2 platform
- added instructions to build the installer and linters

Fix containers#21821 and containers#21911

Signed-off-by: Mario Loriedo <mario.loriedo@gmail.com>
l0rd added a commit to l0rd/podman that referenced this issue Jun 6, 2024
Add the following targets in winmake.ps1:
- `installer`: builds the Windows installer
- `docs`: builds the documentation HTML pages
- `validatepr`: runs the Linux Makefile `.valiatepr`
                target using podman.
- `lint`: faster validation that runs linter locally

Update of `build_windows.md`:
- removed every reference to the MSYS2 platform
- added instructions to build the installer and linters

Fix containers#21821 and containers#21911

Signed-off-by: Mario Loriedo <mario.loriedo@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Categorizes issue or PR as related to a bug. windows issue/bug on Windows
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants