mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a8608b5b67
About github.com/opencontainers/runc/libcontainer/user:
According to 195d8d544a
this package has two functions:
- Have a static implementation of user lookup, which is now supported in the
os/user stdlib package with the osusergo build tag, but wasn't at the time.
- Have extra functions that os/user doesn't have, but none of those are used
in homedir.
Since https://github.com/moby/moby/pull/11287, homedir depended directly on
libcontainer's user package for CurrentUser().
This is being replaced with os/user.Current(), because all of our static
binaries are compiled with the osusergo tag, and for dynamic libraries it
is more correct to use libc's implementation than parsing /etc/passwd.
About github.com/docker/docker/pkg/idtools:
Only dependency was from GetStatic() which uses idtools.LookupUID(uid).
The implementation of idtools.LookupUID just calls to
github.com/opencontainers/runc/libcontainer/user.LookupUid or fallbacks
to exec-ing to getent (since https://github.com/moby/moby/pull/27599).
This patch replaces calls to homedir.GetStatic by homedir.Get(), opting out
of supporting nss lookups in static binaries via exec-ing to getent for
the homedir package.
If homedir package users need to support nss lookups, they are advised
to compile dynamically instead.
Signed-off-by: Tibor Vass <tibor@docker.com>
93 lines
2.6 KiB
Go
93 lines
2.6 KiB
Go
package homedir // import "github.com/docker/docker/pkg/homedir"
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
// GetRuntimeDir returns XDG_RUNTIME_DIR.
|
|
// XDG_RUNTIME_DIR is typically configured via pam_systemd.
|
|
// GetRuntimeDir returns non-nil error if XDG_RUNTIME_DIR is not set.
|
|
//
|
|
// See also https://standards.freedesktop.org/basedir-spec/latest/ar01s03.html
|
|
func GetRuntimeDir() (string, error) {
|
|
if xdgRuntimeDir := os.Getenv("XDG_RUNTIME_DIR"); xdgRuntimeDir != "" {
|
|
return xdgRuntimeDir, nil
|
|
}
|
|
return "", errors.New("could not get XDG_RUNTIME_DIR")
|
|
}
|
|
|
|
// StickRuntimeDirContents sets the sticky bit on files that are under
|
|
// XDG_RUNTIME_DIR, so that the files won't be periodically removed by the system.
|
|
//
|
|
// StickyRuntimeDir returns slice of sticked files.
|
|
// StickyRuntimeDir returns nil error if XDG_RUNTIME_DIR is not set.
|
|
//
|
|
// See also https://standards.freedesktop.org/basedir-spec/latest/ar01s03.html
|
|
func StickRuntimeDirContents(files []string) ([]string, error) {
|
|
runtimeDir, err := GetRuntimeDir()
|
|
if err != nil {
|
|
// ignore error if runtimeDir is empty
|
|
return nil, nil
|
|
}
|
|
runtimeDir, err = filepath.Abs(runtimeDir)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var sticked []string
|
|
for _, f := range files {
|
|
f, err = filepath.Abs(f)
|
|
if err != nil {
|
|
return sticked, err
|
|
}
|
|
if strings.HasPrefix(f, runtimeDir+"/") {
|
|
if err = stick(f); err != nil {
|
|
return sticked, err
|
|
}
|
|
sticked = append(sticked, f)
|
|
}
|
|
}
|
|
return sticked, nil
|
|
}
|
|
|
|
func stick(f string) error {
|
|
st, err := os.Stat(f)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m := st.Mode()
|
|
m |= os.ModeSticky
|
|
return os.Chmod(f, m)
|
|
}
|
|
|
|
// GetDataHome returns XDG_DATA_HOME.
|
|
// GetDataHome returns $HOME/.local/share and nil error if XDG_DATA_HOME is not set.
|
|
//
|
|
// See also https://standards.freedesktop.org/basedir-spec/latest/ar01s03.html
|
|
func GetDataHome() (string, error) {
|
|
if xdgDataHome := os.Getenv("XDG_DATA_HOME"); xdgDataHome != "" {
|
|
return xdgDataHome, nil
|
|
}
|
|
home := os.Getenv("HOME")
|
|
if home == "" {
|
|
return "", errors.New("could not get either XDG_DATA_HOME or HOME")
|
|
}
|
|
return filepath.Join(home, ".local", "share"), nil
|
|
}
|
|
|
|
// GetConfigHome returns XDG_CONFIG_HOME.
|
|
// GetConfigHome returns $HOME/.config and nil error if XDG_CONFIG_HOME is not set.
|
|
//
|
|
// See also https://standards.freedesktop.org/basedir-spec/latest/ar01s03.html
|
|
func GetConfigHome() (string, error) {
|
|
if xdgConfigHome := os.Getenv("XDG_CONFIG_HOME"); xdgConfigHome != "" {
|
|
return xdgConfigHome, nil
|
|
}
|
|
home := os.Getenv("HOME")
|
|
if home == "" {
|
|
return "", errors.New("could not get either XDG_CONFIG_HOME or HOME")
|
|
}
|
|
return filepath.Join(home, ".config"), nil
|
|
}
|