mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

This includes two new hidden commands: a 9p server, `podman machine server9p`, and a 9p client, `podman machine client9p` with `server9p` currently only configured to run on Windows and serve 9p via HyperV vsock, and `client9p` only configured to run on Linux. The server is run by `podman machine start` and has the same lifespan as gvproxy (waits for the gvproxy PID to die before shutting down). The client is run inside the VM, also by `podman machine start`, and mounts uses kernel 9p mount code to complete the mount. It's unfortunately not possible to use mount directly without the wrapper; we need to set up the vsock and pass it to mount as an FD. In theory this can be generalized so that the server can run anywhere and over almost any transport, but I haven't done this here as I don't think we have a usecase other than HyperV right now. [NO NEW TESTS NEEDED] This requires changes to Podman in the VM, so we need to wait until a build with this lands in FCOS to test. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
51 lines
1.3 KiB
Go
51 lines
1.3 KiB
Go
package localfs
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/hugelgupf/p9/linux"
|
|
"github.com/hugelgupf/p9/p9"
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
func umask(_ int) int {
|
|
return 0
|
|
}
|
|
|
|
func localToQid(path string, info os.FileInfo) (uint64, error) {
|
|
pathPtr, err := windows.UTF16PtrFromString(path)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
var (
|
|
access uint32 // none; we only need metadata
|
|
sharemode uint32
|
|
createmode uint32 = windows.OPEN_EXISTING
|
|
attribute uint32 = windows.FILE_ATTRIBUTE_NORMAL
|
|
)
|
|
if info.IsDir() {
|
|
attribute = windows.FILE_FLAG_BACKUP_SEMANTICS
|
|
}
|
|
fd, err := windows.CreateFile(pathPtr, access, sharemode, nil, createmode, attribute, 0)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
fi := &windows.ByHandleFileInformation{}
|
|
if err = windows.GetFileInformationByHandle(fd, fi); err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
x := uint64(fi.FileIndexHigh)<<32 | uint64(fi.FileIndexLow)
|
|
return x, nil
|
|
}
|
|
|
|
// lock implements p9.File.Lock.
|
|
// As in FreeBSD NFS locking, we just say "sure, we did it" without actually
|
|
// doing anything; this lock design makes even less sense on Windows than
|
|
// it does on Linux (pid? really? what were they thinking?)
|
|
func (l *Local) lock(pid int, locktype p9.LockType, flags p9.LockFlags, start, length uint64, client string) (p9.LockStatus, error) {
|
|
return p9.LockStatusOK, linux.ENOSYS
|
|
}
|