2016-11-04 00:02:34 +00:00
|
|
|
package content
|
|
|
|
|
|
|
|
import (
|
2016-11-16 03:46:24 +00:00
|
|
|
"log"
|
2016-11-04 00:02:34 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/docker/distribution/digest"
|
2016-11-16 03:46:24 +00:00
|
|
|
"github.com/nightlyone/lockfile"
|
2016-11-04 00:02:34 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ContentWriter represents a write transaction against the blob store.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
type ContentWriter struct {
|
|
|
|
cs *ContentStore
|
|
|
|
fp *os.File // opened data file
|
2016-11-16 03:46:24 +00:00
|
|
|
lock lockfile.Lockfile
|
|
|
|
path string // path to writer dir
|
2016-11-04 00:02:34 +00:00
|
|
|
offset int64
|
|
|
|
digester digest.Digester
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write p to the transaction.
|
|
|
|
//
|
|
|
|
// Note that writes are unbuffered to the backing file. When writing, it is
|
2016-12-16 01:31:19 +00:00
|
|
|
// recommended to wrap in a bufio.Writer or, preferably, use io.CopyBuffer.
|
2016-11-04 00:02:34 +00:00
|
|
|
func (cw *ContentWriter) Write(p []byte) (n int, err error) {
|
|
|
|
n, err = cw.fp.Write(p)
|
|
|
|
cw.digester.Hash().Write(p[:n])
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cw *ContentWriter) Commit(size int64, expected digest.Digest) error {
|
|
|
|
if err := cw.fp.Sync(); err != nil {
|
|
|
|
return errors.Wrap(err, "sync failed")
|
|
|
|
}
|
|
|
|
|
|
|
|
fi, err := cw.fp.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "stat on ingest file failed")
|
|
|
|
}
|
|
|
|
|
|
|
|
// change to readonly, more important for read, but provides _some_
|
|
|
|
// protection from this point on. We use the existing perms with a mask
|
|
|
|
// only allowing reads honoring the umask on creation.
|
|
|
|
//
|
|
|
|
// This removes write and exec, only allowing read per the creation umask.
|
|
|
|
if err := cw.fp.Chmod((fi.Mode() & os.ModePerm) &^ 0333); err != nil {
|
|
|
|
return errors.Wrap(err, "failed to change ingest file permissions")
|
|
|
|
}
|
|
|
|
|
|
|
|
if size != fi.Size() {
|
|
|
|
return errors.Errorf("failed size validation: %v != %v", fi.Size(), size)
|
|
|
|
}
|
|
|
|
|
2016-11-16 03:46:24 +00:00
|
|
|
if err := cw.fp.Close(); err != nil {
|
|
|
|
return errors.Wrap(err, "failed closing ingest")
|
|
|
|
}
|
|
|
|
|
2016-11-04 00:02:34 +00:00
|
|
|
dgst := cw.digester.Digest()
|
2016-12-02 05:37:58 +00:00
|
|
|
// TODO(stevvooe): Correctly handle missing expected digest or allow no
|
|
|
|
// expected digest at commit time.
|
|
|
|
if expected != "" && expected != dgst {
|
2016-11-04 00:02:34 +00:00
|
|
|
return errors.Errorf("unexpected digest: %v != %v", dgst, expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
apath := filepath.Join(cw.cs.root, "blobs", dgst.Algorithm().String())
|
|
|
|
if err := os.MkdirAll(apath, 0755); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
ingest = filepath.Join(cw.path, "data")
|
|
|
|
target = filepath.Join(apath, dgst.Hex())
|
|
|
|
)
|
|
|
|
|
|
|
|
// clean up!!
|
|
|
|
defer os.RemoveAll(cw.path)
|
|
|
|
if err := os.Rename(ingest, target); err != nil {
|
|
|
|
if os.IsExist(err) {
|
|
|
|
// collision with the target file!
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-16 03:46:24 +00:00
|
|
|
unlock(cw.lock)
|
|
|
|
cw.fp = nil
|
2016-11-04 00:02:34 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the writer, flushing any unwritten data and leaving the progress in
|
|
|
|
// tact.
|
|
|
|
//
|
|
|
|
// If one needs to resume the transaction, a new writer can be obtained from
|
|
|
|
// `ContentStore.Resume` using the same key. The write can then be continued
|
|
|
|
// from it was left off.
|
|
|
|
func (cw *ContentWriter) Close() (err error) {
|
2016-11-16 03:46:24 +00:00
|
|
|
if err := unlock(cw.lock); err != nil {
|
|
|
|
log.Printf("unlock failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if cw.fp != nil {
|
|
|
|
cw.fp.Sync()
|
|
|
|
return cw.fp.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2016-11-04 00:02:34 +00:00
|
|
|
}
|