mirror of
https://github.com/containers/podman.git
synced 2025-06-26 04:46:57 +08:00
Revert "Switch all rootful to rootfull"
This reverts commit cc3790f332d989440eb1720e24e3619fc97c74ee. We can't change rootful to rootfull because `rootful` is written into the machine config. Changing this will break json unmarshalling, which will break existing machines. [NO NEW TESTS NEEDED] Signed-off-by: Ashley Cui <acui@redhat.com>
This commit is contained in:
@ -12,7 +12,6 @@ import (
|
|||||||
"github.com/containers/podman/v4/pkg/machine"
|
"github.com/containers/podman/v4/pkg/machine"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"github.com/spf13/pflag"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -107,18 +106,8 @@ func init() {
|
|||||||
flags.StringVar(&initOpts.IgnitionPath, IgnitionPathFlagName, "", "Path to ignition file")
|
flags.StringVar(&initOpts.IgnitionPath, IgnitionPathFlagName, "", "Path to ignition file")
|
||||||
_ = initCmd.RegisterFlagCompletionFunc(IgnitionPathFlagName, completion.AutocompleteDefault)
|
_ = initCmd.RegisterFlagCompletionFunc(IgnitionPathFlagName, completion.AutocompleteDefault)
|
||||||
|
|
||||||
rootfullFlagName := "rootfull"
|
rootfulFlagName := "rootful"
|
||||||
flags.BoolVar(&initOpts.Rootfull, rootfullFlagName, false, "Whether this machine should prefer rootfull container execution")
|
flags.BoolVar(&initOpts.Rootful, rootfulFlagName, false, "Whether this machine should prefer rootful container execution")
|
||||||
flags.SetNormalizeFunc(aliasFlags)
|
|
||||||
}
|
|
||||||
|
|
||||||
// aliasFlags is a function to handle backwards compatibility with old flags
|
|
||||||
func aliasFlags(f *pflag.FlagSet, name string) pflag.NormalizedName {
|
|
||||||
switch name {
|
|
||||||
case "rootful":
|
|
||||||
name = "rootfull"
|
|
||||||
}
|
|
||||||
return pflag.NormalizedName(name)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO should we allow for a users to append to the qemu cmdline?
|
// TODO should we allow for a users to append to the qemu cmdline?
|
||||||
|
@ -17,7 +17,7 @@ var (
|
|||||||
Long: "Sets an updatable virtual machine setting",
|
Long: "Sets an updatable virtual machine setting",
|
||||||
RunE: setMachine,
|
RunE: setMachine,
|
||||||
Args: cobra.MaximumNArgs(1),
|
Args: cobra.MaximumNArgs(1),
|
||||||
Example: `podman machine set --rootfull=false`,
|
Example: `podman machine set --rootful=false`,
|
||||||
ValidArgsFunction: completion.AutocompleteNone,
|
ValidArgsFunction: completion.AutocompleteNone,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
@ -33,9 +33,8 @@ func init() {
|
|||||||
})
|
})
|
||||||
flags := setCmd.Flags()
|
flags := setCmd.Flags()
|
||||||
|
|
||||||
rootfullFlagName := "rootfull"
|
rootfulFlagName := "rootful"
|
||||||
flags.BoolVar(&setOpts.Rootfull, rootfullFlagName, false, "Whether this machine should prefer rootfull container execution")
|
flags.BoolVar(&setOpts.Rootful, rootfulFlagName, false, "Whether this machine should prefer rootful container execution")
|
||||||
flags.SetNormalizeFunc(aliasFlags)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func setMachine(cmd *cobra.Command, args []string) error {
|
func setMachine(cmd *cobra.Command, args []string) error {
|
||||||
|
@ -207,7 +207,7 @@ END_HTML
|
|||||||
|
|
||||||
print { $out_fh } "<pre> <!-- begin processed output -->\n";
|
print { $out_fh } "<pre> <!-- begin processed output -->\n";
|
||||||
|
|
||||||
# Assume rootfull prompt, check for rootless (here and in log itself, below)
|
# Assume rootful prompt, check for rootless (here and in log itself, below)
|
||||||
my $Prompt = '#';
|
my $Prompt = '#';
|
||||||
$Prompt = '$' if $test_name =~ /rootless/;
|
$Prompt = '$' if $test_name =~ /rootless/;
|
||||||
|
|
||||||
|
@ -70,4 +70,4 @@ file to `/etc/modules.load.d`. See `man modules-load.d` for more details.
|
|||||||
|
|
||||||
### Blog Post with Details
|
### Blog Post with Details
|
||||||
|
|
||||||
Dan Walsh wrote a blog post on the [Enable Sysadmin](https://www.redhat.com/sysadmin/) site titled [How to use Podman inside of a container](https://www.redhat.com/sysadmin/podman-inside-container). In it, he details how to use these images as a rootfull and as a rootless user. Please refer to this blog for more detailed information.
|
Dan Walsh wrote a blog post on the [Enable Sysadmin](https://www.redhat.com/sysadmin/) site titled [How to use Podman inside of a container](https://www.redhat.com/sysadmin/podman-inside-container). In it, he details how to use these images as a rootful and as a rootless user. Please refer to this blog for more detailed information.
|
||||||
|
@ -7,5 +7,5 @@
|
|||||||
# Default Remote URI to access the Podman service.
|
# Default Remote URI to access the Podman service.
|
||||||
# Examples:
|
# Examples:
|
||||||
# remote rootless ssh://engineering.lab.company.com/run/user/1000/podman/podman.sock
|
# remote rootless ssh://engineering.lab.company.com/run/user/1000/podman/podman.sock
|
||||||
# remote rootfull ssh://root@10.10.1.136:22/run/podman/podman.sock
|
# remote rootful ssh://root@10.10.1.136:22/run/podman/podman.sock
|
||||||
# remote_uri= ""
|
# remote_uri= ""
|
||||||
|
@ -429,7 +429,7 @@ container full access to local system services such as D-bus and is therefore
|
|||||||
considered insecure.
|
considered insecure.
|
||||||
- **ns:**_path_: path to a network namespace to join.
|
- **ns:**_path_: path to a network namespace to join.
|
||||||
- **private**: create a new namespace for the container (default)
|
- **private**: create a new namespace for the container (default)
|
||||||
- **\<network name|ID\>**: Join the network with the given name or ID, e.g. use `--network mynet` to join the network with the name mynet. Only supported for rootfull users.
|
- **\<network name|ID\>**: Join the network with the given name or ID, e.g. use `--network mynet` to join the network with the name mynet. Only supported for rootful users.
|
||||||
|
|
||||||
#### **--no-cache**
|
#### **--no-cache**
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ podman-image-scp - Securely copy an image from one host to another
|
|||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman image scp** copies container images between hosts on a network. You can load to the remote host or from the remote host as well as in between two remote hosts.
|
**podman image scp** copies container images between hosts on a network. You can load to the remote host or from the remote host as well as in between two remote hosts.
|
||||||
Note: `::` is used to specify the image name depending on if you are saving or loading. Images can also be transferred from rootfull to rootless storage on the same machine without using sshd. This feature is not supported on the remote client, including Mac and Windows (excluding WSL2) machines.
|
Note: `::` is used to specify the image name depending on if you are saving or loading. Images can also be transferred from rootful to rootless storage on the same machine without using sshd. This feature is not supported on the remote client, including Mac and Windows (excluding WSL2) machines.
|
||||||
|
|
||||||
**podman image scp [GLOBAL OPTIONS]**
|
**podman image scp [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
|
@ -59,9 +59,9 @@ Memory (in MB).
|
|||||||
|
|
||||||
Start the virtual machine immediately after it has been initialized.
|
Start the virtual machine immediately after it has been initialized.
|
||||||
|
|
||||||
#### **--rootfull**=*true|false*
|
#### **--rootful**=*true|false*
|
||||||
|
|
||||||
Whether this machine should prefer rootfull (`true`) or rootless (`false`)
|
Whether this machine should prefer rootful (`true`) or rootless (`false`)
|
||||||
container execution. This option will also determine the remote connection default
|
container execution. This option will also determine the remote connection default
|
||||||
if there is no existing remote connection configurations.
|
if there is no existing remote connection configurations.
|
||||||
|
|
||||||
@ -95,7 +95,7 @@ Driver to use for mounting volumes from the host, such as `virtfs`.
|
|||||||
```
|
```
|
||||||
$ podman machine init
|
$ podman machine init
|
||||||
$ podman machine init myvm
|
$ podman machine init myvm
|
||||||
$ podman machine init --rootfull
|
$ podman machine init --rootful
|
||||||
$ podman machine init --disk-size 50
|
$ podman machine init --disk-size 50
|
||||||
$ podman machine init --memory=1024 myvm
|
$ podman machine init --memory=1024 myvm
|
||||||
$ podman machine init -v /Users:/mnt/Users
|
$ podman machine init -v /Users:/mnt/Users
|
||||||
|
@ -19,39 +19,39 @@ subset can be changed after machine initialization.
|
|||||||
|
|
||||||
Print usage statement.
|
Print usage statement.
|
||||||
|
|
||||||
#### **--rootfull**=*true|false*
|
#### **--rootful**=*true|false*
|
||||||
|
|
||||||
Whether this machine should prefer rootfull (`true`) or rootless (`false`)
|
Whether this machine should prefer rootful (`true`) or rootless (`false`)
|
||||||
container execution. This option will also update the current podman
|
container execution. This option will also update the current podman
|
||||||
remote connection default if it is currently pointing at the specified
|
remote connection default if it is currently pointing at the specified
|
||||||
machine name (or `podman-machine-default` if no name is specified).
|
machine name (or `podman-machine-default` if no name is specified).
|
||||||
|
|
||||||
Unlike [**podman system connection default**](podman-system-connection-default.1.md)
|
Unlike [**podman system connection default**](podman-system-connection-default.1.md)
|
||||||
this option will also make the API socket, if available, forward to the rootfull/rootless
|
this option will also make the API socket, if available, forward to the rootful/rootless
|
||||||
socket in the VM.
|
socket in the VM.
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
To switch the default VM `podman-machine-default` from rootless to rootfull:
|
To switch the default VM `podman-machine-default` from rootless to rootful:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ podman machine set --rootfull
|
$ podman machine set --rootful
|
||||||
```
|
```
|
||||||
|
|
||||||
or more explicitly:
|
or more explicitly:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ podman machine set --rootfull=true
|
$ podman machine set --rootful=true
|
||||||
```
|
```
|
||||||
|
|
||||||
To switch the default VM `podman-machine-default` from rootfull to rootless:
|
To switch the default VM `podman-machine-default` from rootful to rootless:
|
||||||
```
|
```
|
||||||
$ podman machine set --rootfull=false
|
$ podman machine set --rootful=false
|
||||||
```
|
```
|
||||||
|
|
||||||
To switch the VM `myvm` from rootless to rootfull:
|
To switch the VM `myvm` from rootless to rootful:
|
||||||
```
|
```
|
||||||
$ podman machine set --rootfull myvm
|
$ podman machine set --rootful myvm
|
||||||
```
|
```
|
||||||
|
|
||||||
## SEE ALSO
|
## SEE ALSO
|
||||||
|
@ -210,7 +210,7 @@ func createBasicSlirp4netnsCmdArgs(options *slirp4netnsNetworkOptions, features
|
|||||||
return cmdArgs, nil
|
return cmdArgs, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// setupSlirp4netns can be called in rootfull as well as in rootless
|
// setupSlirp4netns can be called in rootful as well as in rootless
|
||||||
func (r *Runtime) setupSlirp4netns(ctr *Container, netns ns.NetNS) error {
|
func (r *Runtime) setupSlirp4netns(ctr *Container, netns ns.NetNS) error {
|
||||||
path := r.config.Engine.NetworkCmdPath
|
path := r.config.Engine.NetworkCmdPath
|
||||||
if path == "" {
|
if path == "" {
|
||||||
|
@ -9,7 +9,7 @@ The bindings require that the Podman system service is running for the specified
|
|||||||
by calling the service directly.
|
by calling the service directly.
|
||||||
|
|
||||||
### Starting the service with system
|
### Starting the service with system
|
||||||
The command to start the Podman service differs slightly depending on the user that is running the service. For a rootfull service,
|
The command to start the Podman service differs slightly depending on the user that is running the service. For a rootful service,
|
||||||
start the service like this:
|
start the service like this:
|
||||||
```
|
```
|
||||||
# systemctl start podman.socket
|
# systemctl start podman.socket
|
||||||
@ -26,7 +26,7 @@ It can be handy to run the system service manually. Doing so allows you to enab
|
|||||||
$ podman --log-level=debug system service -t0
|
$ podman --log-level=debug system service -t0
|
||||||
```
|
```
|
||||||
If you do not provide a specific path for the socket, a default is provided. The location of that socket for
|
If you do not provide a specific path for the socket, a default is provided. The location of that socket for
|
||||||
rootfull connections is `/run/podman/podman.sock` and for rootless it is `/run/USERID#/podman/podman.sock`. For more
|
rootful connections is `/run/podman/podman.sock` and for rootless it is `/run/USERID#/podman/podman.sock`. For more
|
||||||
information about the Podman system service, see `man podman-system-service`.
|
information about the Podman system service, see `man podman-system-service`.
|
||||||
|
|
||||||
### Creating a connection
|
### Creating a connection
|
||||||
@ -35,7 +35,7 @@ as they will be required to compile a Go program making use of the bindings.
|
|||||||
|
|
||||||
|
|
||||||
The first step for using the bindings is to create a connection to the socket. As mentioned earlier, the destination
|
The first step for using the bindings is to create a connection to the socket. As mentioned earlier, the destination
|
||||||
of the socket depends on the user who owns it. In this case, a rootfull connection is made.
|
of the socket depends on the user who owns it. In this case, a rootful connection is made.
|
||||||
|
|
||||||
```
|
```
|
||||||
import (
|
import (
|
||||||
@ -59,7 +59,7 @@ The `conn` variable returned from the `bindings.NewConnection` function can then
|
|||||||
to interact with containers.
|
to interact with containers.
|
||||||
|
|
||||||
### Examples
|
### Examples
|
||||||
The following examples build upon the connection example from above. They are all rootfull connections as well.
|
The following examples build upon the connection example from above. They are all rootful connections as well.
|
||||||
|
|
||||||
Note: Optional arguments to the bindings methods are set using With*() methods on *Option structures.
|
Note: Optional arguments to the bindings methods are set using With*() methods on *Option structures.
|
||||||
Composite types are not duplicated rather the address is used. As such, you should not change an underlying
|
Composite types are not duplicated rather the address is used. As such, you should not change an underlying
|
||||||
|
@ -367,7 +367,7 @@ func (ir *ImageEngine) Transfer(ctx context.Context, source entities.ImageScpOpt
|
|||||||
if rootless.IsRootless() && (len(dest.User) == 0 || dest.User == "root") { // if we are rootless and do not have a destination user we can just use sudo
|
if rootless.IsRootless() && (len(dest.User) == 0 || dest.User == "root") { // if we are rootless and do not have a destination user we can just use sudo
|
||||||
return transferRootless(source, dest, podman, parentFlags)
|
return transferRootless(source, dest, podman, parentFlags)
|
||||||
}
|
}
|
||||||
return transferRootfull(source, dest, podman, parentFlags)
|
return transferRootful(source, dest, podman, parentFlags)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ir *ImageEngine) Tag(ctx context.Context, nameOrID string, tags []string, options entities.ImageTagOptions) error {
|
func (ir *ImageEngine) Tag(ctx context.Context, nameOrID string, tags []string, options entities.ImageTagOptions) error {
|
||||||
@ -785,8 +785,8 @@ func transferRootless(source entities.ImageScpOptions, dest entities.ImageScpOpt
|
|||||||
return cmdLoad.Run()
|
return cmdLoad.Run()
|
||||||
}
|
}
|
||||||
|
|
||||||
// transferRootfull creates new podman processes using exec.Command and a new uid/gid alongside a cleared environment
|
// TransferRootful creates new podman processes using exec.Command and a new uid/gid alongside a cleared environment
|
||||||
func transferRootfull(source entities.ImageScpOptions, dest entities.ImageScpOptions, podman string, parentFlags []string) error {
|
func transferRootful(source entities.ImageScpOptions, dest entities.ImageScpOptions, podman string, parentFlags []string) error {
|
||||||
basicCommand := []string{podman}
|
basicCommand := []string{podman}
|
||||||
basicCommand = append(basicCommand, parentFlags...)
|
basicCommand = append(basicCommand, parentFlags...)
|
||||||
saveCommand := append(basicCommand, "save")
|
saveCommand := append(basicCommand, "save")
|
||||||
|
@ -28,7 +28,7 @@ type InitOptions struct {
|
|||||||
URI url.URL
|
URI url.URL
|
||||||
Username string
|
Username string
|
||||||
ReExec bool
|
ReExec bool
|
||||||
Rootfull bool
|
Rootful bool
|
||||||
// The numerical userid of the user that called machine
|
// The numerical userid of the user that called machine
|
||||||
UID string
|
UID string
|
||||||
}
|
}
|
||||||
@ -95,7 +95,7 @@ type ListResponse struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type SetOptions struct {
|
type SetOptions struct {
|
||||||
Rootfull bool
|
Rootful bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type SSHOptions struct {
|
type SSHOptions struct {
|
||||||
|
@ -57,8 +57,8 @@ type MachineVMV1 struct {
|
|||||||
QMPMonitor Monitorv1
|
QMPMonitor Monitorv1
|
||||||
// RemoteUsername of the vm user
|
// RemoteUsername of the vm user
|
||||||
RemoteUsername string
|
RemoteUsername string
|
||||||
// Whether this machine should run in a rootfull or rootless manner
|
// Whether this machine should run in a rootful or rootless manner
|
||||||
Rootfull bool
|
Rootful bool
|
||||||
// UID is the numerical id of the user that called machine
|
// UID is the numerical id of the user that called machine
|
||||||
UID int
|
UID int
|
||||||
}
|
}
|
||||||
@ -99,8 +99,8 @@ type ImageConfig struct {
|
|||||||
|
|
||||||
// HostUser describes the host user
|
// HostUser describes the host user
|
||||||
type HostUser struct {
|
type HostUser struct {
|
||||||
// Whether this machine should run in a rootfull or rootless manner
|
// Whether this machine should run in a rootful or rootless manner
|
||||||
Rootfull bool
|
Rootful bool
|
||||||
// UID is the numerical id of the user that called machine
|
// UID is the numerical id of the user that called machine
|
||||||
UID int
|
UID int
|
||||||
}
|
}
|
||||||
|
@ -204,7 +204,7 @@ func migrateVM(configPath string, config []byte, vm *MachineVM) error {
|
|||||||
vm.QMPMonitor = qmpMonitor
|
vm.QMPMonitor = qmpMonitor
|
||||||
vm.ReadySocket = readySocket
|
vm.ReadySocket = readySocket
|
||||||
vm.RemoteUsername = old.RemoteUsername
|
vm.RemoteUsername = old.RemoteUsername
|
||||||
vm.Rootfull = old.Rootfull
|
vm.Rootful = old.Rootful
|
||||||
vm.UID = old.UID
|
vm.UID = old.UID
|
||||||
|
|
||||||
// Backup the original config file
|
// Backup the original config file
|
||||||
@ -258,7 +258,7 @@ func (v *MachineVM) Init(opts machine.InitOptions) (bool, error) {
|
|||||||
)
|
)
|
||||||
sshDir := filepath.Join(homedir.Get(), ".ssh")
|
sshDir := filepath.Join(homedir.Get(), ".ssh")
|
||||||
v.IdentityPath = filepath.Join(sshDir, v.Name)
|
v.IdentityPath = filepath.Join(sshDir, v.Name)
|
||||||
v.Rootfull = opts.Rootfull
|
v.Rootful = opts.Rootful
|
||||||
|
|
||||||
switch opts.ImagePath {
|
switch opts.ImagePath {
|
||||||
case Testing, Next, Stable, "":
|
case Testing, Next, Stable, "":
|
||||||
@ -356,8 +356,8 @@ func (v *MachineVM) Init(opts machine.InitOptions) (bool, error) {
|
|||||||
names := []string{v.Name, v.Name + "-root"}
|
names := []string{v.Name, v.Name + "-root"}
|
||||||
|
|
||||||
// The first connection defined when connections is empty will become the default
|
// The first connection defined when connections is empty will become the default
|
||||||
// regardless of IsDefault, so order according to rootfull
|
// regardless of IsDefault, so order according to rootful
|
||||||
if opts.Rootfull {
|
if opts.Rootful {
|
||||||
uris[0], names[0], uris[1], names[1] = uris[1], names[1], uris[0], names[0]
|
uris[0], names[0], uris[1], names[1] = uris[1], names[1], uris[0], names[0]
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -435,7 +435,7 @@ func (v *MachineVM) Init(opts machine.InitOptions) (bool, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (v *MachineVM) Set(_ string, opts machine.SetOptions) error {
|
func (v *MachineVM) Set(_ string, opts machine.SetOptions) error {
|
||||||
if v.Rootfull == opts.Rootfull {
|
if v.Rootful == opts.Rootful {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -459,7 +459,7 @@ func (v *MachineVM) Set(_ string, opts machine.SetOptions) error {
|
|||||||
|
|
||||||
if changeCon {
|
if changeCon {
|
||||||
newDefault := v.Name
|
newDefault := v.Name
|
||||||
if opts.Rootfull {
|
if opts.Rootful {
|
||||||
newDefault += "-root"
|
newDefault += "-root"
|
||||||
}
|
}
|
||||||
if err := machine.ChangeDefault(newDefault); err != nil {
|
if err := machine.ChangeDefault(newDefault); err != nil {
|
||||||
@ -467,7 +467,7 @@ func (v *MachineVM) Set(_ string, opts machine.SetOptions) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
v.Rootfull = opts.Rootfull
|
v.Rootful = opts.Rootful
|
||||||
return v.writeConfig()
|
return v.writeConfig()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1117,7 +1117,7 @@ func (v *MachineVM) setupAPIForwarding(cmd []string) ([]string, string, apiForwa
|
|||||||
destSock := fmt.Sprintf("/run/user/%d/podman/podman.sock", v.UID)
|
destSock := fmt.Sprintf("/run/user/%d/podman/podman.sock", v.UID)
|
||||||
forwardUser := "core"
|
forwardUser := "core"
|
||||||
|
|
||||||
if v.Rootfull {
|
if v.Rootful {
|
||||||
destSock = "/run/podman/podman.sock"
|
destSock = "/run/podman/podman.sock"
|
||||||
forwardUser = "root"
|
forwardUser = "root"
|
||||||
}
|
}
|
||||||
@ -1323,11 +1323,11 @@ func (v *MachineVM) waitAPIAndPrintInfo(forwardState apiForwardingState, forward
|
|||||||
}
|
}
|
||||||
|
|
||||||
waitAndPingAPI(forwardSock)
|
waitAndPingAPI(forwardSock)
|
||||||
if !v.Rootfull {
|
if !v.Rootful {
|
||||||
fmt.Printf("\nThis machine is currently configured in rootless mode. If your containers\n")
|
fmt.Printf("\nThis machine is currently configured in rootless mode. If your containers\n")
|
||||||
fmt.Printf("require root permissions (e.g. ports < 1024), or if you run into compatibility\n")
|
fmt.Printf("require root permissions (e.g. ports < 1024), or if you run into compatibility\n")
|
||||||
fmt.Printf("issues with non-podman clients, you can switch using the following command: \n")
|
fmt.Printf("issues with non-podman clients, you can switch using the following command: \n")
|
||||||
fmt.Printf("\n\tpodman machine set --rootfull%s\n\n", suffix)
|
fmt.Printf("\n\tpodman machine set --rootful%s\n\n", suffix)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("API forwarding listening on: %s\n", forwardSock)
|
fmt.Printf("API forwarding listening on: %s\n", forwardSock)
|
||||||
|
@ -165,8 +165,8 @@ type MachineVM struct {
|
|||||||
Port int
|
Port int
|
||||||
// RemoteUsername of the vm user
|
// RemoteUsername of the vm user
|
||||||
RemoteUsername string
|
RemoteUsername string
|
||||||
// Whether this machine should run in a rootfull or rootless manner
|
// Whether this machine should run in a rootful or rootless manner
|
||||||
Rootfull bool
|
Rootful bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type ExitCodeError struct {
|
type ExitCodeError struct {
|
||||||
@ -232,7 +232,7 @@ func (v *MachineVM) Init(opts machine.InitOptions) (bool, error) {
|
|||||||
homeDir := homedir.Get()
|
homeDir := homedir.Get()
|
||||||
sshDir := filepath.Join(homeDir, ".ssh")
|
sshDir := filepath.Join(homeDir, ".ssh")
|
||||||
v.IdentityPath = filepath.Join(sshDir, v.Name)
|
v.IdentityPath = filepath.Join(sshDir, v.Name)
|
||||||
v.Rootfull = opts.Rootfull
|
v.Rootful = opts.Rootful
|
||||||
|
|
||||||
if err := downloadDistro(v, opts); err != nil {
|
if err := downloadDistro(v, opts); err != nil {
|
||||||
return false, err
|
return false, err
|
||||||
@ -316,8 +316,8 @@ func setupConnections(v *MachineVM, opts machine.InitOptions, sshDir string) err
|
|||||||
names := []string{v.Name, v.Name + "-root"}
|
names := []string{v.Name, v.Name + "-root"}
|
||||||
|
|
||||||
// The first connection defined when connections is empty will become the default
|
// The first connection defined when connections is empty will become the default
|
||||||
// regardless of IsDefault, so order according to rootfull
|
// regardless of IsDefault, so order according to rootful
|
||||||
if opts.Rootfull {
|
if opts.Rootful {
|
||||||
uris[0], names[0], uris[1], names[1] = uris[1], names[1], uris[0], names[0]
|
uris[0], names[0], uris[1], names[1] = uris[1], names[1], uris[0], names[0]
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -733,7 +733,7 @@ func pipeCmdPassThrough(name string, input string, arg ...string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (v *MachineVM) Set(name string, opts machine.SetOptions) error {
|
func (v *MachineVM) Set(name string, opts machine.SetOptions) error {
|
||||||
if v.Rootfull == opts.Rootfull {
|
if v.Rootful == opts.Rootful {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -744,7 +744,7 @@ func (v *MachineVM) Set(name string, opts machine.SetOptions) error {
|
|||||||
|
|
||||||
if changeCon {
|
if changeCon {
|
||||||
newDefault := v.Name
|
newDefault := v.Name
|
||||||
if opts.Rootfull {
|
if opts.Rootful {
|
||||||
newDefault += "-root"
|
newDefault += "-root"
|
||||||
}
|
}
|
||||||
if err := machine.ChangeDefault(newDefault); err != nil {
|
if err := machine.ChangeDefault(newDefault); err != nil {
|
||||||
@ -752,7 +752,7 @@ func (v *MachineVM) Set(name string, opts machine.SetOptions) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
v.Rootfull = opts.Rootfull
|
v.Rootful = opts.Rootful
|
||||||
return v.writeConfig()
|
return v.writeConfig()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -768,7 +768,7 @@ func (v *MachineVM) Start(name string, _ machine.StartOptions) error {
|
|||||||
return errors.Wrap(err, "WSL bootstrap script failed")
|
return errors.Wrap(err, "WSL bootstrap script failed")
|
||||||
}
|
}
|
||||||
|
|
||||||
if !v.Rootfull {
|
if !v.Rootful {
|
||||||
fmt.Printf("\nThis machine is currently configured in rootless mode. If your containers\n")
|
fmt.Printf("\nThis machine is currently configured in rootless mode. If your containers\n")
|
||||||
fmt.Printf("require root permissions (e.g. ports < 1024), or if you run into compatibility\n")
|
fmt.Printf("require root permissions (e.g. ports < 1024), or if you run into compatibility\n")
|
||||||
fmt.Printf("issues with non-podman clients, you can switch using the following command: \n")
|
fmt.Printf("issues with non-podman clients, you can switch using the following command: \n")
|
||||||
@ -777,7 +777,7 @@ func (v *MachineVM) Start(name string, _ machine.StartOptions) error {
|
|||||||
if name != machine.DefaultMachineName {
|
if name != machine.DefaultMachineName {
|
||||||
suffix = " " + name
|
suffix = " " + name
|
||||||
}
|
}
|
||||||
fmt.Printf("\n\tpodman machine set --rootfull%s\n\n", suffix)
|
fmt.Printf("\n\tpodman machine set --rootful%s\n\n", suffix)
|
||||||
}
|
}
|
||||||
|
|
||||||
globalName, pipeName, err := launchWinProxy(v)
|
globalName, pipeName, err := launchWinProxy(v)
|
||||||
@ -833,7 +833,7 @@ func launchWinProxy(v *MachineVM) (bool, string, error) {
|
|||||||
destSock := "/run/user/1000/podman/podman.sock"
|
destSock := "/run/user/1000/podman/podman.sock"
|
||||||
forwardUser := v.RemoteUsername
|
forwardUser := v.RemoteUsername
|
||||||
|
|
||||||
if v.Rootfull {
|
if v.Rootful {
|
||||||
destSock = "/run/podman/podman.sock"
|
destSock = "/run/podman/podman.sock"
|
||||||
forwardUser = "root"
|
forwardUser = "root"
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ can easily fail
|
|||||||
* Some system unit configuration options do not work in the rootless container
|
* Some system unit configuration options do not work in the rootless container
|
||||||
* systemd fails to apply several options and failures are silently ignored (e.g. CPUShares, MemoryLimit). Should work on cgroup V2.
|
* systemd fails to apply several options and failures are silently ignored (e.g. CPUShares, MemoryLimit). Should work on cgroup V2.
|
||||||
* Use of certain options will cause service startup failures (e.g. PrivateNetwork). The systemd services requiring `PrivateNetwork` can be made to work by passing `--cap-add SYS_ADMIN`, but the security implications should be carefully evaluated. In most cases, it's better to create an override.conf drop-in that sets `PrivateNetwork=no`. This also applies to containers run by root.
|
* Use of certain options will cause service startup failures (e.g. PrivateNetwork). The systemd services requiring `PrivateNetwork` can be made to work by passing `--cap-add SYS_ADMIN`, but the security implications should be carefully evaluated. In most cases, it's better to create an override.conf drop-in that sets `PrivateNetwork=no`. This also applies to containers run by root.
|
||||||
* Can not share container images with CRI-O or other rootfull users
|
* Can not share container images with CRI-O or other rootful users
|
||||||
* Difficult to use additional stores for sharing content
|
* Difficult to use additional stores for sharing content
|
||||||
* Does not work on NFS or parallel filesystem homedirs (e.g. [GPFS](https://www.ibm.com/support/knowledgecenter/en/SSFKCN/gpfs_welcome.html))
|
* Does not work on NFS or parallel filesystem homedirs (e.g. [GPFS](https://www.ibm.com/support/knowledgecenter/en/SSFKCN/gpfs_welcome.html))
|
||||||
* NFS and parallel filesystems enforce file creation on different UIDs on the server side and does not understand User Namespace.
|
* NFS and parallel filesystems enforce file creation on different UIDs on the server side and does not understand User Namespace.
|
||||||
|
@ -123,7 +123,7 @@ var _ = Describe("Podman exec", func() {
|
|||||||
})
|
})
|
||||||
|
|
||||||
It("podman exec in keep-id container drops privileges", func() {
|
It("podman exec in keep-id container drops privileges", func() {
|
||||||
SkipIfNotRootless("This function is not enabled for rootfull podman")
|
SkipIfNotRootless("This function is not enabled for rootful podman")
|
||||||
ctrName := "testctr1"
|
ctrName := "testctr1"
|
||||||
testCtr := podmanTest.Podman([]string{"run", "-d", "--name", ctrName, "--userns=keep-id", ALPINE, "top"})
|
testCtr := podmanTest.Podman([]string{"run", "-d", "--name", ctrName, "--userns=keep-id", ALPINE, "top"})
|
||||||
testCtr.WaitWithDefaultTimeout()
|
testCtr.WaitWithDefaultTimeout()
|
||||||
|
@ -17,7 +17,7 @@ var _ = Describe("Podman mount", func() {
|
|||||||
)
|
)
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
SkipIfNotRootless("This function is not enabled for rootfull podman")
|
SkipIfNotRootless("This function is not enabled for rootful podman")
|
||||||
SkipIfRemote("Podman mount not supported for remote connections")
|
SkipIfRemote("Podman mount not supported for remote connections")
|
||||||
tempdir, err = CreateTempDirInTempDir()
|
tempdir, err = CreateTempDirInTempDir()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -254,7 +254,7 @@ var _ = Describe("Podman network", func() {
|
|||||||
|
|
||||||
expectedNetworks := []string{name}
|
expectedNetworks := []string{name}
|
||||||
if !rootless.IsRootless() {
|
if !rootless.IsRootless() {
|
||||||
// rootfull image contains "podman/cni/87-podman-bridge.conflist" for "podman" network
|
// rootful image contains "podman/cni/87-podman-bridge.conflist" for "podman" network
|
||||||
expectedNetworks = append(expectedNetworks, "podman")
|
expectedNetworks = append(expectedNetworks, "podman")
|
||||||
}
|
}
|
||||||
session := podmanTest.Podman(append([]string{"network", "inspect"}, expectedNetworks...))
|
session := podmanTest.Podman(append([]string{"network", "inspect"}, expectedNetworks...))
|
||||||
|
@ -90,7 +90,7 @@ function teardown() {
|
|||||||
|
|
||||||
@test "podman system service - socket activation - kill rootless pause" {
|
@test "podman system service - socket activation - kill rootless pause" {
|
||||||
if ! is_rootless; then
|
if ! is_rootless; then
|
||||||
skip "there is no pause process when running rootfull"
|
skip "there is no pause process when running rootful"
|
||||||
fi
|
fi
|
||||||
run_podman run -d $IMAGE sleep 90
|
run_podman run -d $IMAGE sleep 90
|
||||||
cid="$output"
|
cid="$output"
|
||||||
|
@ -483,7 +483,7 @@ function skip_if_root_ubuntu {
|
|||||||
if is_ubuntu; then
|
if is_ubuntu; then
|
||||||
if ! is_remote; then
|
if ! is_remote; then
|
||||||
if ! is_rootless; then
|
if ! is_rootless; then
|
||||||
skip "Cannot run this test on rootfull ubuntu, usually due to user errors"
|
skip "Cannot run this test on rootful ubuntu, usually due to user errors"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user