Files
Luca Di Maio 1308ae11ce chore(license): add GPL-3.0 SPDX header to Go sources (#2173)
The legacy shell tree carried a per-file license header; the Go rewrite
shipped without one. Add it to all files and enforce it going forward
via golangci-lint's goheader linter, so the notice can't be dropped.

Signed-off-by: Luca Di Maio <luca.dimaio1@gmail.com>
2026-07-24 18:08:51 +02:00

140 lines
5.1 KiB
Go

// SPDX-License-Identifier: GPL-3.0-only
//
// This file is part of the distrobox project:
// https://github.com/89luca89/distrobox
//
// Copyright (C) 2021 distrobox contributors
//
// distrobox is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License version 3
// as published by the Free Software Foundation.
//
// distrobox is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with distrobox; if not, see <http://www.gnu.org/licenses/>.
package cli
import (
"bufio"
"context"
"errors"
"fmt"
"os"
"slices"
"github.com/urfave/cli/v3"
"github.com/89luca89/distrobox/pkg/commands"
"github.com/89luca89/distrobox/pkg/config"
"github.com/89luca89/distrobox/pkg/containermanager"
"github.com/89luca89/distrobox/pkg/ui"
)
func newEphemeralCommand(cfg *config.Values) *cli.Command {
createCmd := newCreateCommand(cfg)
ignoredFlags := []string{
"compatibility",
"no-entry",
}
flags := make([]cli.Flag, 0, len(createCmd.Flags)+1)
for _, f := range createCmd.Flags {
if slices.Contains(ignoredFlags, f.Names()[0]) {
continue
}
flags = append(flags, f)
}
// -e/--exec is the marker that tells distrobox to treat everything
// after it as the custom command to run inside the ephemeral
// container. It is a no-op marker from urfave/cli's point of view
// because the custom command is always taken from the positional
// args — we just need the alias to exist so the parser doesn't
// reject the flag. The original distrobox-ephemeral bash script
// accepts -e, --exec, and `--` interchangeably.
flags = append(flags, &cli.BoolFlag{
Name: "exec",
Aliases: []string{"e"},
Usage: "end arguments: execute the rest as command to execute at login\n" +
"(equivalent to the bare `--` separator; the custom command is\n" +
"always taken from the positional args)",
})
return &cli.Command{
Name: "ephemeral",
Usage: "create a temporary distrobox container that is automatically removed on exit",
UsageText: `distrobox ephemeral [options] [-- command]
Examples:
distrobox ephemeral
distrobox ephemeral --image alpine:latest -- cat /etc/os-release
distrobox ephemeral --root --image fedora:39
distrobox ephemeral -- bash -c "echo hello"`,
Flags: flags,
// PrepareArgs (parse.go) splits the command off behind a "--", so
// inherited create flags (e.g. -c/--clone) are parsed wherever they
// appear instead of being eaten out of the custom command.
UseShortOptionHandling: false,
SkipFlagParsing: false,
Action: func(ctx context.Context, cmd *cli.Command) error {
return ephemeralAction(ctx, cmd, cfg)
},
}
}
func ephemeralAction(ctx context.Context, cmd *cli.Command, cfg *config.Values) error {
containerManager, ok := ctx.Value(containerManagerKey).(containermanager.ContainerManager)
if !ok {
return errors.New("container manager not found in context")
}
// ephemeral has no positional name, so after PrepareArgs the whole
// positional tail is the custom command.
customCommand := cmd.Args().Slice()
opts := commands.EphemeralOptions{
CreateOptions: commands.CreateOptions{
ContainerImage: cmd.String("image"),
ContainerName: cmd.String("name"),
ContainerHostname: cmd.String("hostname"),
ContainerClone: cmd.String("clone"),
UnshareNetNs: cmd.Bool("unshare-netns") || cmd.Bool("unshare-all"),
UnshareDevsys: cmd.Bool("unshare-devsys") || cmd.Bool("unshare-all"),
UnshareGroups: cmd.Bool("unshare-groups") || cmd.Bool("unshare-all") || cmd.Bool("init"),
UnshareIpc: cmd.Bool("unshare-ipc") || cmd.Bool("unshare-all"),
UnshareProcess: cmd.Bool("unshare-process") || cmd.Bool("unshare-all") || cmd.Bool("init"),
AdditionalFlags: cmd.StringSlice("additional-flags"),
AdditionalVolumes: cmd.StringSlice("volume"),
AdditionalPackages: cmd.StringSlice("additional-packages"),
Nopasswd: cmd.Bool("absolutely-disable-root-password-i-am-really-positively-sure"),
ContainerUserCustomHome: cmd.String("home"),
Init: cmd.Bool("init"),
Nvidia: cmd.Bool("nvidia"),
ContainerInitHook: cmd.String("init-hooks"),
ContainerPreInitHook: cmd.String("pre-init-hooks"),
ContainerPlatform: cmd.String("platform"),
GenerateEntry: false,
Rootful: cmd.Bool("root"),
DryRun: cmd.Bool("dry-run"),
},
CustomCommand: customCommand,
}
progress := ui.NewProgress(os.Stderr)
printer := ui.NewPrinter(os.Stderr, true)
prompter := ui.NewPrompter(*bufio.NewReader(os.Stdin), os.Stdout)
ephemeralCmd := commands.NewEphemeralCommand(cfg, containerManager, progress, printer, prompter)
err := ephemeralCmd.Execute(ctx, opts)
if err != nil {
return fmt.Errorf("ephemeral command failed: %w", err)
}
return nil
}