2019-05-03 18:22:55 +02:00
|
|
|
From 6603582112f42cd00b84d62a5412f2380e55d7e3 Mon Sep 17 00:00:00 2001
|
2017-03-08 10:03:15 +01:00
|
|
|
From: Aleksa Sarai <asarai@suse.de>
|
|
|
|
Date: Wed, 8 Mar 2017 12:41:54 +1100
|
|
|
|
Subject: [PATCH 1/2] daemon: allow directory creation in /run/secrets
|
|
|
|
|
|
|
|
Since FileMode can have the directory bit set, allow a SecretStore
|
|
|
|
implementation to return secrets that are actually directories. This is
|
|
|
|
useful for creating directories and subdirectories of secrets.
|
|
|
|
|
2017-05-29 14:37:19 +02:00
|
|
|
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
|
2017-03-08 10:03:15 +01:00
|
|
|
Signed-off-by: Aleksa Sarai <asarai@suse.de>
|
|
|
|
---
|
2018-05-30 07:44:31 +02:00
|
|
|
.../daemon/container_operations_unix.go | 24 ++++++++++++++++---
|
2017-10-18 06:27:06 +02:00
|
|
|
1 file changed, 21 insertions(+), 3 deletions(-)
|
2017-03-08 10:03:15 +01:00
|
|
|
|
2018-02-13 12:34:28 +01:00
|
|
|
diff --git a/components/engine/daemon/container_operations_unix.go b/components/engine/daemon/container_operations_unix.go
|
2019-05-03 18:22:55 +02:00
|
|
|
index c0aab7234269..8d8b13d26cff 100644
|
2018-02-13 12:34:28 +01:00
|
|
|
--- a/components/engine/daemon/container_operations_unix.go
|
|
|
|
+++ b/components/engine/daemon/container_operations_unix.go
|
2017-10-18 06:27:06 +02:00
|
|
|
@@ -3,6 +3,7 @@
|
2018-08-15 09:09:12 +02:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2017-04-11 14:13:39 +02:00
|
|
|
|
2017-10-18 06:27:06 +02:00
|
|
|
import (
|
|
|
|
+ "bytes"
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2018-08-15 09:09:12 +02:00
|
|
|
@@ -14,6 +15,7 @@ import (
|
2017-10-18 06:27:06 +02:00
|
|
|
"github.com/docker/docker/container"
|
|
|
|
"github.com/docker/docker/daemon/links"
|
2018-08-15 09:09:12 +02:00
|
|
|
"github.com/docker/docker/errdefs"
|
2017-10-18 06:27:06 +02:00
|
|
|
+ "github.com/docker/docker/pkg/archive"
|
|
|
|
"github.com/docker/docker/pkg/idtools"
|
|
|
|
"github.com/docker/docker/pkg/mount"
|
|
|
|
"github.com/docker/docker/pkg/stringid"
|
2018-08-15 09:09:12 +02:00
|
|
|
@@ -206,9 +208,6 @@ func (daemon *Daemon) setupSecretDir(c *container.Container) (setupErr error) {
|
2017-10-18 06:27:06 +02:00
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "unable to get secret from secret store")
|
2017-03-08 10:03:15 +01:00
|
|
|
}
|
|
|
|
- if err := ioutil.WriteFile(fPath, secret.Spec.Data, s.File.Mode); err != nil {
|
|
|
|
- return errors.Wrap(err, "error injecting secret")
|
2017-05-29 14:37:19 +02:00
|
|
|
- }
|
|
|
|
|
|
|
|
uid, err := strconv.Atoi(s.File.UID)
|
|
|
|
if err != nil {
|
2018-08-15 09:09:12 +02:00
|
|
|
@@ -219,6 +218,25 @@ func (daemon *Daemon) setupSecretDir(c *container.Container) (setupErr error) {
|
2017-05-29 14:37:19 +02:00
|
|
|
return err
|
|
|
|
}
|
2017-10-18 06:27:06 +02:00
|
|
|
|
2017-03-08 10:03:15 +01:00
|
|
|
+ if s.File.Mode.IsDir() {
|
2017-10-18 06:27:06 +02:00
|
|
|
+ if err := os.Mkdir(fPath, s.File.Mode); err != nil {
|
|
|
|
+ return errors.Wrap(err, "error creating secretdir")
|
|
|
|
+ }
|
|
|
|
+ if secret.Spec.Data != nil {
|
|
|
|
+ // If the "file" is a directory, then s.File.Data is actually a tar
|
|
|
|
+ // archive of the directory. So we just do a tar extraction here.
|
|
|
|
+ if err := archive.UntarUncompressed(bytes.NewBuffer(secret.Spec.Data), fPath, &archive.TarOptions{
|
2018-12-04 05:34:12 +01:00
|
|
|
+ UIDMaps: daemon.idMapping.UIDs(),
|
|
|
|
+ GIDMaps: daemon.idMapping.GIDs(),
|
2017-10-18 06:27:06 +02:00
|
|
|
+ }); err != nil {
|
|
|
|
+ return errors.Wrap(err, "error injecting secretdir")
|
|
|
|
+ }
|
2017-03-08 10:03:15 +01:00
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ if err := ioutil.WriteFile(fPath, secret.Spec.Data, s.File.Mode); err != nil {
|
|
|
|
+ return errors.Wrap(err, "error injecting secret")
|
|
|
|
+ }
|
2017-05-29 14:37:19 +02:00
|
|
|
+ }
|
2017-10-18 06:27:06 +02:00
|
|
|
if err := os.Chown(fPath, rootIDs.UID+uid, rootIDs.GID+gid); err != nil {
|
2017-05-29 14:37:19 +02:00
|
|
|
return errors.Wrap(err, "error setting ownership for secret")
|
2017-03-08 10:03:15 +01:00
|
|
|
}
|
|
|
|
--
|
2019-05-03 18:22:55 +02:00
|
|
|
2.21.0
|
2017-03-08 10:03:15 +01:00
|
|
|
|