1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
//go:build linux
package main
import (
"fmt"
"os"
"os/exec"
"sort"
"strings"
"github.com/containers/storage"
"github.com/containers/storage/pkg/unshare"
"github.com/moby/sys/capability"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
var (
unshareDescription = "\n Runs a command in a modified user namespace."
unshareCommand = &cobra.Command{
Use: "unshare",
Short: "Run a command in a modified user namespace",
Long: unshareDescription,
RunE: unshareCmd,
Example: `buildah unshare id
buildah unshare cat /proc/self/uid_map
buildah unshare buildah-script.sh`,
}
unshareMounts []string
)
func init() {
unshareCommand.SetUsageTemplate(UsageTemplate())
flags := unshareCommand.Flags()
flags.SetInterspersed(false)
flags.StringSliceVarP(&unshareMounts, "mount", "m", []string{}, "mount the specified containers (default [])")
rootCmd.AddCommand(unshareCommand)
}
func unshareMount(c *cobra.Command, mounts []string) ([]string, func(), error) {
var store storage.Store
var mountedContainers, env []string
if len(mounts) == 0 {
return nil, nil, nil
}
unmount := func() {
for _, mounted := range mountedContainers {
builder, err := openBuilder(getContext(), store, mounted)
if err != nil {
fmt.Fprintln(os.Stderr, fmt.Errorf("loading information about build container %q: %w", mounted, err))
continue
}
err = builder.Unmount()
if err != nil {
fmt.Fprintln(os.Stderr, fmt.Errorf("unmounting build container %q: %w", mounted, err))
continue
}
}
}
store, err := getStore(c)
if err != nil {
return nil, nil, err
}
for _, mountSpec := range mounts {
mount := strings.SplitN(mountSpec, "=", 2)
container := mountSpec
envVar := container
if len(mount) == 2 {
envVar = mount[0]
container = mount[1]
}
builder, err := openBuilder(getContext(), store, container)
if err != nil {
unmount()
return nil, nil, fmt.Errorf("loading information about build container %q: %w", container, err)
}
mountPoint, err := builder.Mount(builder.MountLabel)
if err != nil {
unmount()
return nil, nil, fmt.Errorf("mounting build container %q: %w", container, err)
}
logrus.Debugf("mounted container %q at %q", container, mountPoint)
mountedContainers = append(mountedContainers, container)
if envVar != "" {
envSpec := fmt.Sprintf("%s=%s", envVar, mountPoint)
logrus.Debugf("adding %q to environment", envSpec)
env = append(env, envSpec)
}
}
return env, unmount, nil
}
// unshareCmd execs whatever using the ID mappings that we want to use for ourselves
func unshareCmd(c *cobra.Command, args []string) error {
// Set the default isolation type to use the "rootless" method.
if _, present := os.LookupEnv("BUILDAH_ISOLATION"); !present {
if err := os.Setenv("BUILDAH_ISOLATION", "rootless"); err != nil {
logrus.Errorf("error setting BUILDAH_ISOLATION=rootless in environment: %v", err)
os.Exit(1)
}
}
// force reexec using the configured ID mappings
unshare.MaybeReexecUsingUserNamespace(true)
// exec the specified command, if there is one
if len(args) < 1 {
// try to exec the shell, if one's set
shell, shellSet := os.LookupEnv("SHELL")
if !shellSet {
logrus.Errorf("no command specified")
os.Exit(1)
}
args = []string{shell}
}
cmd := exec.Command(args[0], args[1:]...)
cmd.Env = unshare.RootlessEnv()
cmd.Stdin = os.Stdin
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
mountEnvs, unmountMounts, err := unshareMount(c, unshareMounts)
if err != nil {
return err
}
cmd.Env = append(cmd.Env, mountEnvs...)
unshare.ExecRunnable(cmd, unmountMounts)
os.Exit(1)
return nil
}
func debugCapabilities() {
pid, err := capability.NewPid2(0)
if err != nil {
logrus.Errorf("error checking our capabilities: %v", err)
return
}
if err := pid.Load(); err != nil {
logrus.Errorf("error loading our current capabilities: %v", err)
return
}
knownCaps := capability.ListKnown()
effective := make([]string, 0, len(knownCaps))
for i := range knownCaps {
have := pid.Get(capability.EFFECTIVE, knownCaps[i])
effective = append(effective, fmt.Sprintf("%s=%v", knownCaps[i].String(), have))
}
sort.Strings(effective)
logrus.Debugf("effective capabilities: %v", effective)
}
|