Set sticky bit to /tmp

This is generally done for '/tmp' to prevent accidental
deletion of files. More details here:
http://man7.org/linux/man-pages/man1/chmod.1.html#RESTRICTED_DELETION_FLAG_OR_STICKY_BIT

PiperOrigin-RevId: 249633207
Change-Id: I444a5b406fdef664f5677b2f20f374972613a02b
This commit is contained in:
Fabricio Voznika 2019-05-23 06:46:55 -07:00 committed by Shentubot
parent 9006304dfe
commit c091e62369
1 changed files with 8 additions and 6 deletions

View File

@ -290,7 +290,7 @@ func mountSubmounts(ctx context.Context, conf *Config, mns *fs.MountNamespace, r
} }
} }
if err := mountTmp(ctx, conf, mns, root, fds, mounts); err != nil { if err := mountTmp(ctx, conf, mns, root, mounts); err != nil {
return fmt.Errorf("mount submount %q: %v", "tmp", err) return fmt.Errorf("mount submount %q: %v", "tmp", err)
} }
@ -551,9 +551,8 @@ func subtargets(root string, mnts []specs.Mount) []string {
func setupContainerFS(procArgs *kernel.CreateProcessArgs, spec *specs.Spec, conf *Config, stdioFDs, goferFDs []int, console bool, creds *auth.Credentials, ls *limits.LimitSet, k *kernel.Kernel, cid string) error { func setupContainerFS(procArgs *kernel.CreateProcessArgs, spec *specs.Spec, conf *Config, stdioFDs, goferFDs []int, console bool, creds *auth.Credentials, ls *limits.LimitSet, k *kernel.Kernel, cid string) error {
ctx := procArgs.NewContext(k) ctx := procArgs.NewContext(k)
// Create the FD map, which will set stdin, stdout, and stderr. If // Create the FD map, which will set stdin, stdout, and stderr. If console
// console is true, then ioctl calls will be passed through to the host // is true, then ioctl calls will be passed through to the host fd.
// fd.
fdm, err := createFDMap(ctx, k, ls, console, stdioFDs) fdm, err := createFDMap(ctx, k, ls, console, stdioFDs)
if err != nil { if err != nil {
return fmt.Errorf("importing fds: %v", err) return fmt.Errorf("importing fds: %v", err)
@ -725,7 +724,7 @@ func destroyContainerFS(ctx context.Context, cid string, k *kernel.Kernel) error
// //
// Note that when there are submounts inside of '/tmp', directories for the // Note that when there are submounts inside of '/tmp', directories for the
// mount points must be present, making '/tmp' not empty anymore. // mount points must be present, making '/tmp' not empty anymore.
func mountTmp(ctx context.Context, conf *Config, mns *fs.MountNamespace, root *fs.Dirent, fds *fdDispenser, mounts []specs.Mount) error { func mountTmp(ctx context.Context, conf *Config, mns *fs.MountNamespace, root *fs.Dirent, mounts []specs.Mount) error {
for _, m := range mounts { for _, m := range mounts {
if filepath.Clean(m.Destination) == "/tmp" { if filepath.Clean(m.Destination) == "/tmp" {
log.Debugf("Explict %q mount found, skipping internal tmpfs, mount: %+v", "/tmp", m) log.Debugf("Explict %q mount found, skipping internal tmpfs, mount: %+v", "/tmp", m)
@ -763,8 +762,11 @@ func mountTmp(ctx context.Context, conf *Config, mns *fs.MountNamespace, root *f
tmpMount := specs.Mount{ tmpMount := specs.Mount{
Type: tmpfs, Type: tmpfs,
Destination: "/tmp", Destination: "/tmp",
// Sticky bit is added to prevent accidental deletion of files from
// another user. This is normally done for /tmp.
Options: []string{"mode=1777"},
} }
return mountSubmount(ctx, conf, mns, root, fds, tmpMount, mounts) return mountSubmount(ctx, conf, mns, root, nil, tmpMount, mounts)
default: default:
return err return err