Fix chroot untar for zero padded archive from slow reader
Signed-off-by: Lewis Marshall <lewis@lmars.net>
This commit is contained in:
parent
1036313f03
commit
a8124280d2
2 changed files with 46 additions and 0 deletions
|
@ -6,6 +6,7 @@ import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
@ -38,6 +39,10 @@ func untar() {
|
||||||
if err := archive.Unpack(os.Stdin, "/", options); err != nil {
|
if err := archive.Unpack(os.Stdin, "/", options); err != nil {
|
||||||
fatal(err)
|
fatal(err)
|
||||||
}
|
}
|
||||||
|
// fully consume stdin in case it is zero padded
|
||||||
|
if _, err := ioutil.ReadAll(os.Stdin); err != nil {
|
||||||
|
fatal(err)
|
||||||
|
}
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
package chrootarchive
|
package chrootarchive
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"testing"
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/docker/docker/pkg/archive"
|
"github.com/docker/docker/pkg/archive"
|
||||||
"github.com/docker/docker/pkg/reexec"
|
"github.com/docker/docker/pkg/reexec"
|
||||||
|
@ -42,3 +44,42 @@ func TestChrootTarUntar(t *testing.T) {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type slowEmptyTarReader struct {
|
||||||
|
size int
|
||||||
|
offset int
|
||||||
|
chunkSize int
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read is a slow reader of an empty tar (like the output of "tar c --files-from /dev/null")
|
||||||
|
func (s *slowEmptyTarReader) Read(p []byte) (int, error) {
|
||||||
|
time.Sleep(100 * time.Millisecond)
|
||||||
|
count := s.chunkSize
|
||||||
|
if len(p) < s.chunkSize {
|
||||||
|
count = len(p)
|
||||||
|
}
|
||||||
|
for i := 0; i < count; i++ {
|
||||||
|
p[i] = 0
|
||||||
|
}
|
||||||
|
s.offset += count
|
||||||
|
if s.offset > s.size {
|
||||||
|
return count, io.EOF
|
||||||
|
}
|
||||||
|
return count, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestChrootUntarEmptyArchiveFromSlowReader(t *testing.T) {
|
||||||
|
tmpdir, err := ioutil.TempDir("", "docker-TestChrootUntarEmptyArchiveFromSlowReader")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os.RemoveAll(tmpdir)
|
||||||
|
dest := filepath.Join(tmpdir, "dest")
|
||||||
|
if err := os.MkdirAll(dest, 0700); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
stream := &slowEmptyTarReader{size: 10240, chunkSize: 1024}
|
||||||
|
if err := Untar(stream, dest, nil); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue