-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Optimize image loading for Podman machines #26660
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
Open
Honny1
wants to merge
2
commits into
containers:main
Choose a base branch
from
Honny1:speed-up-load
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+343
−47
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package local_utils | ||
|
||
// LocalAPIMap is a map of local paths to their target paths in the VM | ||
type LocalAPIMap struct { | ||
ClientPath string `json:"ClientPath,omitempty"` | ||
RemotePath string `json:"RemotePath,omitempty"` | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
//go:build amd64 || arm64 | ||
|
||
package local_utils | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"fmt" | ||
"io/fs" | ||
"net/url" | ||
"path/filepath" | ||
"strconv" | ||
"strings" | ||
|
||
"github.com/containers/podman/v5/pkg/bindings" | ||
"github.com/containers/podman/v5/pkg/machine/define" | ||
"github.com/containers/podman/v5/pkg/machine/env" | ||
"github.com/containers/podman/v5/pkg/machine/provider" | ||
"github.com/containers/podman/v5/pkg/machine/vmconfigs" | ||
"github.com/containers/podman/v5/pkg/specgen" | ||
"github.com/containers/storage/pkg/fileutils" | ||
"github.com/sirupsen/logrus" | ||
) | ||
|
||
// FindMachineByPort finds a running machine that matches the given connection port. | ||
// It returns the machine configuration and provider, or an error if not found. | ||
func FindMachineByPort(connectionURI string, parsedConnection *url.URL) (*vmconfigs.MachineConfig, vmconfigs.VMProvider, error) { | ||
machineProvider, err := provider.Get() | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("getting machine provider: %w", err) | ||
} | ||
|
||
dirs, err := env.GetMachineDirs(machineProvider.VMType()) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
machineList, err := vmconfigs.LoadMachinesInDir(dirs) | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("listing machines: %w", err) | ||
} | ||
|
||
// Now we know that the connection points to a machine and we | ||
// can find the machine by looking for the one with the | ||
// matching port. | ||
connectionPort, err := strconv.Atoi(parsedConnection.Port()) | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("parsing connection port: %w", err) | ||
} | ||
|
||
for _, mc := range machineList { | ||
if connectionPort != mc.SSH.Port { | ||
continue | ||
} | ||
|
||
state, err := machineProvider.State(mc, false) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
if state != define.Running { | ||
return nil, nil, fmt.Errorf("machine %s is not running but in state %s", mc.Name, state) | ||
} | ||
|
||
return mc, machineProvider, nil | ||
} | ||
|
||
return nil, nil, fmt.Errorf("could not find a matching machine for connection %q", connectionURI) | ||
} | ||
|
||
// getMachineMountsAndVMType retrieves the mounts and VM type of a machine based on the connection URI and parsed URL. | ||
// It returns a slice of mounts, the VM type, or an error if the machine cannot be found or is not running. | ||
func getMachineMountsAndVMType(connectionURI string, parsedConnection *url.URL) ([]*vmconfigs.Mount, define.VMType, error) { | ||
mc, machineProvider, err := FindMachineByPort(connectionURI, parsedConnection) | ||
if err != nil { | ||
return nil, define.UnknownVirt, err | ||
} | ||
return mc.Mounts, machineProvider.VMType(), nil | ||
} | ||
|
||
// isPathAvailableOnMachine checks if a local path is available on the machine through mounted directories. | ||
// If the path is available, it returns a LocalAPIMap with the corresponding remote path. | ||
func isPathAvailableOnMachine(mounts []*vmconfigs.Mount, vmType define.VMType, path string) (*LocalAPIMap, bool) { | ||
pathABS, err := filepath.Abs(path) | ||
if err != nil { | ||
logrus.Debugf("Failed to get absolute path for %s: %v", path, err) | ||
return nil, false | ||
} | ||
|
||
// WSLVirt is a special case where there is no real concept of doing a mount in WSL, | ||
// WSL by default mounts the drives to /mnt/c, /mnt/d, etc... | ||
if vmType == define.WSLVirt { | ||
converted_path, err := specgen.ConvertWinMountPath(pathABS) | ||
if err != nil { | ||
logrus.Debugf("Failed to convert Windows mount path: %v", err) | ||
return nil, false | ||
} | ||
|
||
return &LocalAPIMap{ | ||
ClientPath: pathABS, | ||
RemotePath: converted_path, | ||
}, true | ||
} | ||
|
||
for _, mount := range mounts { | ||
mountSource := filepath.Clean(mount.Source) | ||
if strings.HasPrefix(pathABS, mountSource) { | ||
// Ensure we're matching directory boundaries, not just prefixes | ||
// e.g., /home/user should not match /home/username | ||
if len(pathABS) > len(mountSource) && pathABS[len(mountSource)] != filepath.Separator { | ||
continue | ||
} | ||
|
||
relPath, err := filepath.Rel(mountSource, pathABS) | ||
if err != nil { | ||
logrus.Debugf("Failed to get relative path: %v", err) | ||
continue | ||
} | ||
target := filepath.Join(mount.Target, relPath) | ||
|
||
converted_path, err := specgen.ConvertWinMountPath(target) | ||
if err != nil { | ||
logrus.Debugf("Failed to convert Windows mount path: %v", err) | ||
return nil, false | ||
} | ||
logrus.Debugf("Converted client path: %q", converted_path) | ||
return &LocalAPIMap{ | ||
ClientPath: pathABS, | ||
RemotePath: converted_path, | ||
}, true | ||
} | ||
} | ||
return nil, false | ||
} | ||
|
||
// CheckPathOnRunningMachine is a convenience function that checks if a path is available | ||
// on any currently running machine. It combines machine inspection and path checking. | ||
func CheckPathOnRunningMachine(ctx context.Context, path string) (*LocalAPIMap, bool) { | ||
if err := fileutils.Exists(path); errors.Is(err, fs.ErrNotExist) { | ||
logrus.Debugf("Path %s does not exist locally, skipping machine check", path) | ||
return nil, false | ||
} | ||
|
||
if machineMode := bindings.GetMachineMode(ctx); !machineMode { | ||
logrus.Debug("Machine mode is not enabled, skipping machine check") | ||
return nil, false | ||
} | ||
|
||
conn, err := bindings.GetClient(ctx) | ||
if err != nil { | ||
logrus.Debugf("Failed to get client connection: %v", err) | ||
return nil, false | ||
} | ||
|
||
mounts, vmType, err := getMachineMountsAndVMType(conn.URI.String(), conn.URI) | ||
if err != nil { | ||
logrus.Debugf("Failed to get machine mounts: %v", err) | ||
return nil, false | ||
} | ||
|
||
return isPathAvailableOnMachine(mounts, vmType, path) | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//go:build !amd64 && !arm64 | ||
|
||
package local_utils | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/sirupsen/logrus" | ||
) | ||
|
||
func CheckPathOnRunningMachine(ctx context.Context, path string) (*LocalAPIMap, bool) { | ||
logrus.Debug("CheckPathOnRunningMachine is not supported") | ||
return nil, false | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is nice! But please split this out into a separate commit with its own explanation as it is mostly unrelated to the machine change