2013-01-18 19:13:39 -05:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
2013-01-22 15:12:16 -05:00
|
|
|
"errors"
|
2013-01-18 19:13:39 -05:00
|
|
|
"fmt"
|
2013-01-28 17:30:05 -05:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2013-01-18 19:13:39 -05:00
|
|
|
"os"
|
2013-01-25 14:05:11 -05:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2013-01-22 15:12:16 -05:00
|
|
|
"syscall"
|
2013-01-28 14:53:58 -05:00
|
|
|
"time"
|
2013-01-18 19:13:39 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type Filesystem struct {
|
|
|
|
RootFS string
|
|
|
|
RWPath string
|
2013-01-29 02:15:02 -05:00
|
|
|
// The layers to be mounted on top of each other via aufs.
|
|
|
|
// Layers are ordered top-to-bottom: the first layer in the list will be mounted on top of the others.
|
|
|
|
// In other words, THE BASE IMAGE SHOULD BE LAST!
|
2013-01-18 19:13:39 -05:00
|
|
|
Layers []string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *Filesystem) createMountPoints() error {
|
2013-01-29 06:14:16 -05:00
|
|
|
if err := os.Mkdir(fs.RootFS, 0755); err != nil && !os.IsExist(err) {
|
2013-01-18 19:13:39 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-01-29 06:14:16 -05:00
|
|
|
if err := os.Mkdir(fs.RWPath, 0755); err != nil && !os.IsExist(err) {
|
2013-01-18 19:13:39 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *Filesystem) Mount() error {
|
2013-01-22 15:12:16 -05:00
|
|
|
if fs.IsMounted() {
|
|
|
|
return errors.New("Mount: Filesystem already mounted")
|
|
|
|
}
|
2013-01-18 19:13:39 -05:00
|
|
|
if err := fs.createMountPoints(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
rwBranch := fmt.Sprintf("%v=rw", fs.RWPath)
|
|
|
|
roBranches := ""
|
|
|
|
for _, layer := range fs.Layers {
|
|
|
|
roBranches += fmt.Sprintf("%v=ro:", layer)
|
|
|
|
}
|
|
|
|
branches := fmt.Sprintf("br:%v:%v", rwBranch, roBranches)
|
2013-01-28 14:53:58 -05:00
|
|
|
if err := syscall.Mount("none", fs.RootFS, "aufs", 0, branches); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !fs.IsMounted() {
|
|
|
|
return errors.New("Mount failed")
|
|
|
|
}
|
|
|
|
return nil
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *Filesystem) Umount() error {
|
2013-01-22 15:12:16 -05:00
|
|
|
if !fs.IsMounted() {
|
|
|
|
return errors.New("Umount: Filesystem not mounted")
|
|
|
|
}
|
2013-01-28 14:53:58 -05:00
|
|
|
if err := syscall.Unmount(fs.RootFS, 0); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if fs.IsMounted() {
|
|
|
|
return fmt.Errorf("Umount: Filesystem still mounted after calling umount(%v)", fs.RootFS)
|
|
|
|
}
|
2013-01-28 14:58:59 -05:00
|
|
|
// Even though we just unmounted the filesystem, AUFS will prevent deleting the mntpoint
|
|
|
|
// for some time. We'll just keep retrying until it succeeds.
|
2013-01-28 14:53:58 -05:00
|
|
|
for retries := 0; retries < 1000; retries++ {
|
|
|
|
err := os.Remove(fs.RootFS)
|
|
|
|
if err == nil {
|
|
|
|
// rm mntpoint succeeded
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
// mntpoint doesn't exist anymore. Success.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// fmt.Printf("(%v) Remove %v returned: %v\n", retries, fs.RootFS, err)
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
}
|
|
|
|
return fmt.Errorf("Umount: Failed to umount %v", fs.RootFS)
|
2013-01-22 15:12:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *Filesystem) IsMounted() bool {
|
2013-01-28 14:53:58 -05:00
|
|
|
mntpoint, err := os.Stat(fs.RootFS)
|
2013-01-22 15:12:16 -05:00
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
panic(err)
|
|
|
|
}
|
2013-01-28 14:53:58 -05:00
|
|
|
parent, err := os.Stat(filepath.Join(fs.RootFS, ".."))
|
2013-01-22 15:12:16 -05:00
|
|
|
if err != nil {
|
2013-01-28 14:53:58 -05:00
|
|
|
panic(err)
|
2013-01-22 15:12:16 -05:00
|
|
|
}
|
2013-01-28 14:53:58 -05:00
|
|
|
|
|
|
|
mntpointSt := mntpoint.Sys().(*syscall.Stat_t)
|
|
|
|
parentSt := parent.Sys().(*syscall.Stat_t)
|
|
|
|
return mntpointSt.Dev != parentSt.Dev
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-01-27 03:59:49 -05:00
|
|
|
// Tar returns the contents of the filesystem as an uncompressed tar stream
|
|
|
|
func (fs *Filesystem) Tar() (io.Reader, error) {
|
|
|
|
if err := fs.EnsureMounted(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return Tar(fs.RootFS)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *Filesystem) EnsureMounted() error {
|
|
|
|
if !fs.IsMounted() {
|
|
|
|
if err := fs.Mount(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-01-25 14:05:11 -05:00
|
|
|
type ChangeType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
ChangeModify = iota
|
|
|
|
ChangeAdd
|
|
|
|
ChangeDelete
|
|
|
|
)
|
|
|
|
|
|
|
|
type Change struct {
|
|
|
|
Path string
|
|
|
|
Kind ChangeType
|
|
|
|
}
|
|
|
|
|
2013-01-26 18:56:42 -05:00
|
|
|
func (change *Change) String() string {
|
|
|
|
var kind string
|
|
|
|
switch change.Kind {
|
2013-01-28 17:30:05 -05:00
|
|
|
case ChangeModify:
|
|
|
|
kind = "C"
|
|
|
|
case ChangeAdd:
|
|
|
|
kind = "A"
|
|
|
|
case ChangeDelete:
|
|
|
|
kind = "D"
|
2013-01-26 18:56:42 -05:00
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s %s", kind, change.Path)
|
|
|
|
}
|
|
|
|
|
2013-01-25 14:05:11 -05:00
|
|
|
func (fs *Filesystem) Changes() ([]Change, error) {
|
|
|
|
var changes []Change
|
|
|
|
err := filepath.Walk(fs.RWPath, func(path string, f os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rebase path
|
|
|
|
path, err = filepath.Rel(fs.RWPath, path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
path = filepath.Join("/", path)
|
|
|
|
|
|
|
|
// Skip root
|
|
|
|
if path == "/" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip AUFS metadata
|
|
|
|
if matched, err := filepath.Match("/.wh..wh.*", path); err != nil || matched {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
change := Change{
|
|
|
|
Path: path,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find out what kind of modification happened
|
|
|
|
file := filepath.Base(path)
|
|
|
|
// If there is a whiteout, then the file was removed
|
|
|
|
if strings.HasPrefix(file, ".wh.") {
|
|
|
|
originalFile := strings.TrimLeft(file, ".wh.")
|
|
|
|
change.Path = filepath.Join(filepath.Dir(path), originalFile)
|
|
|
|
change.Kind = ChangeDelete
|
|
|
|
} else {
|
|
|
|
// Otherwise, the file was added
|
|
|
|
change.Kind = ChangeAdd
|
|
|
|
|
|
|
|
// ...Unless it already existed in a top layer, in which case, it's a modification
|
|
|
|
for _, layer := range fs.Layers {
|
|
|
|
stat, err := os.Stat(filepath.Join(layer, path))
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err == nil {
|
|
|
|
// The file existed in the top layer, so that's a modification
|
|
|
|
|
|
|
|
// However, if it's a directory, maybe it wasn't actually modified.
|
|
|
|
// If you modify /foo/bar/baz, then /foo will be part of the changed files only because it's the parent of bar
|
|
|
|
if stat.IsDir() && f.IsDir() {
|
|
|
|
if f.Size() == stat.Size() && f.Mode() == stat.Mode() && f.ModTime() == stat.ModTime() {
|
|
|
|
// Both directories are the same, don't record the change
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
change.Kind = ChangeModify
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Record change
|
|
|
|
changes = append(changes, change)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return changes, nil
|
|
|
|
}
|
|
|
|
|
2013-01-27 04:08:34 -05:00
|
|
|
// Reset removes all changes to the filesystem, reverting it to its initial state.
|
2013-01-26 18:56:42 -05:00
|
|
|
func (fs *Filesystem) Reset() error {
|
|
|
|
if err := os.RemoveAll(fs.RWPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-01-27 04:08:34 -05:00
|
|
|
// We removed the RW directory itself along with its content: let's re-create an empty one.
|
2013-01-26 18:56:42 -05:00
|
|
|
if err := fs.createMountPoints(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-01-27 04:08:34 -05:00
|
|
|
// Open opens the named file for reading.
|
|
|
|
func (fs *Filesystem) OpenFile(path string, flag int, perm os.FileMode) (*os.File, error) {
|
|
|
|
if err := fs.EnsureMounted(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return os.OpenFile(filepath.Join(fs.RootFS, path), flag, perm)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadDir reads the directory named by dirname, relative to the Filesystem's root,
|
|
|
|
// and returns a list of sorted directory entries
|
|
|
|
func (fs *Filesystem) ReadDir(dirname string) ([]os.FileInfo, error) {
|
|
|
|
if err := fs.EnsureMounted(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ioutil.ReadDir(filepath.Join(fs.RootFS, dirname))
|
|
|
|
}
|
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
func newFilesystem(rootfs string, rwpath string, layers []string) *Filesystem {
|
|
|
|
return &Filesystem{
|
|
|
|
RootFS: rootfs,
|
|
|
|
RWPath: rwpath,
|
|
|
|
Layers: layers,
|
|
|
|
}
|
|
|
|
}
|