1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
25 "git.arvados.org/arvados.git/sdk/go/arvados"
26 "github.com/prometheus/client_golang/prometheus"
27 "github.com/sirupsen/logrus"
31 driver["Directory"] = newDirectoryVolume
34 func newDirectoryVolume(cluster *arvados.Cluster, volume arvados.Volume, logger logrus.FieldLogger, metrics *volumeMetricsVecs) (Volume, error) {
35 v := &UnixVolume{cluster: cluster, volume: volume, logger: logger, metrics: metrics}
36 err := json.Unmarshal(volume.DriverParameters, &v)
40 v.logger = v.logger.WithField("Volume", v.String())
44 func (v *UnixVolume) check() error {
46 return errors.New("DriverParameters.Root was not provided")
49 v.locker = &sync.Mutex{}
51 if !strings.HasPrefix(v.Root, "/") {
52 return fmt.Errorf("DriverParameters.Root %q does not start with '/'", v.Root)
55 // Set up prometheus metrics
56 lbls := prometheus.Labels{"device_id": v.GetDeviceID()}
57 v.os.stats.opsCounters, v.os.stats.errCounters, v.os.stats.ioBytes = v.metrics.getCounterVecsFor(lbls)
59 _, err := v.os.Stat(v.Root)
63 // A UnixVolume stores and retrieves blocks in a local directory.
64 type UnixVolume struct {
65 Root string // path to the volume's root directory
68 cluster *arvados.Cluster
70 logger logrus.FieldLogger
71 metrics *volumeMetricsVecs
73 // something to lock during IO, typically a sync.Mutex (or nil
80 // GetDeviceID returns a globally unique ID for the volume's root
81 // directory, consisting of the filesystem's UUID and the path from
82 // filesystem root to storage directory, joined by "/". For example,
83 // the device ID for a local directory "/mnt/xvda1/keep" might be
84 // "fa0b6166-3b55-4994-bd3f-92f4e00a1bb0/keep".
85 func (v *UnixVolume) GetDeviceID() string {
86 giveup := func(f string, args ...interface{}) string {
87 v.logger.Infof(f+"; using blank DeviceID for volume %s", append(args, v)...)
90 buf, err := exec.Command("findmnt", "--noheadings", "--target", v.Root).CombinedOutput()
92 return giveup("findmnt: %s (%q)", err, buf)
94 findmnt := strings.Fields(string(buf))
96 return giveup("could not parse findmnt output: %q", buf)
98 fsRoot, dev := findmnt[0], findmnt[1]
100 absRoot, err := filepath.Abs(v.Root)
102 return giveup("resolving relative path %q: %s", v.Root, err)
104 realRoot, err := filepath.EvalSymlinks(absRoot)
106 return giveup("resolving symlinks in %q: %s", absRoot, err)
109 // Find path from filesystem root to realRoot
111 if strings.HasPrefix(realRoot, fsRoot+"/") {
112 fsPath = realRoot[len(fsRoot):]
113 } else if fsRoot == "/" {
115 } else if fsRoot == realRoot {
118 return giveup("findmnt reports mount point %q which is not a prefix of volume root %q", fsRoot, realRoot)
121 if !strings.HasPrefix(dev, "/") {
122 return giveup("mount %q device %q is not a path", fsRoot, dev)
125 fi, err := os.Stat(dev)
127 return giveup("stat %q: %s", dev, err)
129 ino := fi.Sys().(*syscall.Stat_t).Ino
131 // Find a symlink in /dev/disk/by-uuid/ whose target is (i.e.,
132 // has the same inode as) the mounted device
133 udir := "/dev/disk/by-uuid"
134 d, err := os.Open(udir)
136 return giveup("opening %q: %s", udir, err)
138 uuids, err := d.Readdirnames(0)
140 return giveup("reading %q: %s", udir, err)
142 for _, uuid := range uuids {
143 link := filepath.Join(udir, uuid)
144 fi, err = os.Stat(link)
146 v.logger.WithError(err).Errorf("stat(%q) failed", link)
149 if fi.Sys().(*syscall.Stat_t).Ino == ino {
153 return giveup("could not find entry in %q matching %q", udir, dev)
156 // Touch sets the timestamp for the given locator to the current time
157 func (v *UnixVolume) Touch(loc string) error {
158 if v.volume.ReadOnly {
159 return MethodDisabledError
161 p := v.blockPath(loc)
162 f, err := v.os.OpenFile(p, os.O_RDWR|os.O_APPEND, 0644)
167 if err := v.lock(context.TODO()); err != nil {
171 if e := v.lockfile(f); e != nil {
174 defer v.unlockfile(f)
175 ts := syscall.NsecToTimespec(time.Now().UnixNano())
176 v.os.stats.TickOps("utimes")
177 v.os.stats.Tick(&v.os.stats.UtimesOps)
178 err = syscall.UtimesNano(p, []syscall.Timespec{ts, ts})
179 v.os.stats.TickErr(err)
183 // Mtime returns the stored timestamp for the given locator.
184 func (v *UnixVolume) Mtime(loc string) (time.Time, error) {
185 p := v.blockPath(loc)
186 fi, err := v.os.Stat(p)
188 return time.Time{}, err
190 return fi.ModTime(), nil
193 // Lock the locker (if one is in use), open the file for reading, and
194 // call the given function if and when the file is ready to read.
195 func (v *UnixVolume) getFunc(ctx context.Context, path string, fn func(io.Reader) error) error {
196 if err := v.lock(ctx); err != nil {
200 f, err := v.os.Open(path)
205 return fn(NewCountingReader(ioutil.NopCloser(f), v.os.stats.TickInBytes))
208 // stat is os.Stat() with some extra sanity checks.
209 func (v *UnixVolume) stat(path string) (os.FileInfo, error) {
210 stat, err := v.os.Stat(path)
214 } else if stat.Size() > BlockSize {
221 // Get retrieves a block, copies it to the given slice, and returns
222 // the number of bytes copied.
223 func (v *UnixVolume) Get(ctx context.Context, loc string, buf []byte) (int, error) {
224 return getWithPipe(ctx, loc, buf, v)
227 // ReadBlock implements BlockReader.
228 func (v *UnixVolume) ReadBlock(ctx context.Context, loc string, w io.Writer) error {
229 path := v.blockPath(loc)
230 stat, err := v.stat(path)
232 return v.translateError(err)
234 return v.getFunc(ctx, path, func(rdr io.Reader) error {
235 n, err := io.Copy(w, rdr)
236 if err == nil && n != stat.Size() {
237 err = io.ErrUnexpectedEOF
243 // Compare returns nil if Get(loc) would return the same content as
244 // expect. It is functionally equivalent to Get() followed by
245 // bytes.Compare(), but uses less memory.
246 func (v *UnixVolume) Compare(ctx context.Context, loc string, expect []byte) error {
247 path := v.blockPath(loc)
248 if _, err := v.stat(path); err != nil {
249 return v.translateError(err)
251 return v.getFunc(ctx, path, func(rdr io.Reader) error {
252 return compareReaderWithBuf(ctx, rdr, expect, loc[:32])
256 // Put stores a block of data identified by the locator string
257 // "loc". It returns nil on success. If the volume is full, it
258 // returns a FullError. If the write fails due to some other error,
259 // that error is returned.
260 func (v *UnixVolume) Put(ctx context.Context, loc string, block []byte) error {
261 return putWithPipe(ctx, loc, block, v)
264 // WriteBlock implements BlockWriter.
265 func (v *UnixVolume) WriteBlock(ctx context.Context, loc string, rdr io.Reader) error {
266 if v.volume.ReadOnly {
267 return MethodDisabledError
272 bdir := v.blockDir(loc)
273 if err := os.MkdirAll(bdir, 0755); err != nil {
274 return fmt.Errorf("error creating directory %s: %s", bdir, err)
277 tmpfile, tmperr := v.os.TempFile(bdir, "tmp"+loc)
279 return fmt.Errorf("TempFile(%s, tmp%s) failed: %s", bdir, loc, tmperr)
282 bpath := v.blockPath(loc)
284 if err := v.lock(ctx); err != nil {
288 n, err := io.Copy(tmpfile, rdr)
289 v.os.stats.TickOutBytes(uint64(n))
291 err = fmt.Errorf("error writing %s: %s", bpath, err)
293 v.os.Remove(tmpfile.Name())
296 if err := tmpfile.Close(); err != nil {
297 err = fmt.Errorf("error closing %s: %s", tmpfile.Name(), err)
298 v.os.Remove(tmpfile.Name())
301 if err := v.os.Rename(tmpfile.Name(), bpath); err != nil {
302 err = fmt.Errorf("error renaming %s to %s: %s", tmpfile.Name(), bpath, err)
303 v.os.Remove(tmpfile.Name())
309 // Status returns a VolumeStatus struct describing the volume's
310 // current state, or nil if an error occurs.
312 func (v *UnixVolume) Status() *VolumeStatus {
313 fi, err := v.os.Stat(v.Root)
315 v.logger.WithError(err).Error("stat failed")
318 devnum := fi.Sys().(*syscall.Stat_t).Dev
320 var fs syscall.Statfs_t
321 if err := syscall.Statfs(v.Root, &fs); err != nil {
322 v.logger.WithError(err).Error("statfs failed")
325 // These calculations match the way df calculates disk usage:
326 // "free" space is measured by fs.Bavail, but "used" space
327 // uses fs.Blocks - fs.Bfree.
328 free := fs.Bavail * uint64(fs.Bsize)
329 used := (fs.Blocks - fs.Bfree) * uint64(fs.Bsize)
330 return &VolumeStatus{
338 var blockDirRe = regexp.MustCompile(`^[0-9a-f]+$`)
339 var blockFileRe = regexp.MustCompile(`^[0-9a-f]{32}$`)
341 // IndexTo writes (to the given Writer) a list of blocks found on this
342 // volume which begin with the specified prefix. If the prefix is an
343 // empty string, IndexTo writes a complete list of blocks.
345 // Each block is given in the format
347 // locator+size modification-time {newline}
351 // e4df392f86be161ca6ed3773a962b8f3+67108864 1388894303
352 // e4d41e6fd68460e0e3fc18cc746959d2+67108864 1377796043
353 // e4de7a2810f5554cd39b36d8ddb132ff+67108864 1388701136
355 func (v *UnixVolume) IndexTo(prefix string, w io.Writer) error {
357 rootdir, err := v.os.Open(v.Root)
361 defer rootdir.Close()
362 v.os.stats.TickOps("readdir")
363 v.os.stats.Tick(&v.os.stats.ReaddirOps)
365 names, err := rootdir.Readdirnames(1)
368 } else if err != nil {
371 if !strings.HasPrefix(names[0], prefix) && !strings.HasPrefix(prefix, names[0]) {
372 // prefix excludes all blocks stored in this dir
375 if !blockDirRe.MatchString(names[0]) {
378 blockdirpath := filepath.Join(v.Root, names[0])
379 blockdir, err := v.os.Open(blockdirpath)
381 v.logger.WithError(err).Errorf("error reading %q", blockdirpath)
382 lastErr = fmt.Errorf("error reading %q: %s", blockdirpath, err)
385 v.os.stats.TickOps("readdir")
386 v.os.stats.Tick(&v.os.stats.ReaddirOps)
388 fileInfo, err := blockdir.Readdir(1)
391 } else if err != nil {
392 v.logger.WithError(err).Errorf("error reading %q", blockdirpath)
393 lastErr = fmt.Errorf("error reading %q: %s", blockdirpath, err)
396 name := fileInfo[0].Name()
397 if !strings.HasPrefix(name, prefix) {
400 if !blockFileRe.MatchString(name) {
403 _, err = fmt.Fprint(w,
405 "+", fileInfo[0].Size(),
406 " ", fileInfo[0].ModTime().UnixNano(),
410 return fmt.Errorf("error writing: %s", err)
417 // Trash trashes the block data from the unix storage
418 // If BlobTrashLifetime == 0, the block is deleted
419 // Else, the block is renamed as path/{loc}.trash.{deadline},
420 // where deadline = now + BlobTrashLifetime
421 func (v *UnixVolume) Trash(loc string) error {
422 // Touch() must be called before calling Write() on a block. Touch()
423 // also uses lockfile(). This avoids a race condition between Write()
424 // and Trash() because either (a) the file will be trashed and Touch()
425 // will signal to the caller that the file is not present (and needs to
426 // be re-written), or (b) Touch() will update the file's timestamp and
427 // Trash() will read the correct up-to-date timestamp and choose not to
430 if v.volume.ReadOnly || !v.cluster.Collections.BlobTrash {
431 return MethodDisabledError
433 if err := v.lock(context.TODO()); err != nil {
437 p := v.blockPath(loc)
438 f, err := v.os.OpenFile(p, os.O_RDWR|os.O_APPEND, 0644)
443 if e := v.lockfile(f); e != nil {
446 defer v.unlockfile(f)
448 // If the block has been PUT in the last blobSignatureTTL
449 // seconds, return success without removing the block. This
450 // protects data from garbage collection until it is no longer
451 // possible for clients to retrieve the unreferenced blocks
452 // anyway (because the permission signatures have expired).
453 if fi, err := v.os.Stat(p); err != nil {
455 } else if time.Since(fi.ModTime()) < v.cluster.Collections.BlobSigningTTL.Duration() {
459 if v.cluster.Collections.BlobTrashLifetime == 0 {
460 return v.os.Remove(p)
462 return v.os.Rename(p, fmt.Sprintf("%v.trash.%d", p, time.Now().Add(v.cluster.Collections.BlobTrashLifetime.Duration()).Unix()))
465 // Untrash moves block from trash back into store
466 // Look for path/{loc}.trash.{deadline} in storage,
467 // and rename the first such file as path/{loc}
468 func (v *UnixVolume) Untrash(loc string) (err error) {
469 if v.volume.ReadOnly {
470 return MethodDisabledError
473 v.os.stats.TickOps("readdir")
474 v.os.stats.Tick(&v.os.stats.ReaddirOps)
475 files, err := ioutil.ReadDir(v.blockDir(loc))
481 return os.ErrNotExist
485 prefix := fmt.Sprintf("%v.trash.", loc)
486 for _, f := range files {
487 if strings.HasPrefix(f.Name(), prefix) {
489 err = v.os.Rename(v.blockPath(f.Name()), v.blockPath(loc))
496 if foundTrash == false {
497 return os.ErrNotExist
503 // blockDir returns the fully qualified directory name for the directory
504 // where loc is (or would be) stored on this volume.
505 func (v *UnixVolume) blockDir(loc string) string {
506 return filepath.Join(v.Root, loc[0:3])
509 // blockPath returns the fully qualified pathname for the path to loc
511 func (v *UnixVolume) blockPath(loc string) string {
512 return filepath.Join(v.blockDir(loc), loc)
515 // IsFull returns true if the free space on the volume is less than
518 func (v *UnixVolume) IsFull() (isFull bool) {
519 fullSymlink := v.Root + "/full"
521 // Check if the volume has been marked as full in the last hour.
522 if link, err := os.Readlink(fullSymlink); err == nil {
523 if ts, err := strconv.Atoi(link); err == nil {
524 fulltime := time.Unix(int64(ts), 0)
525 if time.Since(fulltime).Hours() < 1.0 {
531 if avail, err := v.FreeDiskSpace(); err == nil {
532 isFull = avail < MinFreeKilobytes
534 v.logger.WithError(err).Errorf("%s: FreeDiskSpace failed", v)
538 // If the volume is full, timestamp it.
540 now := fmt.Sprintf("%d", time.Now().Unix())
541 os.Symlink(now, fullSymlink)
546 // FreeDiskSpace returns the number of unused 1k blocks available on
549 func (v *UnixVolume) FreeDiskSpace() (free uint64, err error) {
550 var fs syscall.Statfs_t
551 err = syscall.Statfs(v.Root, &fs)
553 // Statfs output is not guaranteed to measure free
554 // space in terms of 1K blocks.
555 free = fs.Bavail * uint64(fs.Bsize) / 1024
560 func (v *UnixVolume) String() string {
561 return fmt.Sprintf("[UnixVolume %s]", v.Root)
564 // InternalStats returns I/O and filesystem ops counters.
565 func (v *UnixVolume) InternalStats() interface{} {
569 // lock acquires the serialize lock, if one is in use. If ctx is done
570 // before the lock is acquired, lock returns ctx.Err() instead of
571 // acquiring the lock.
572 func (v *UnixVolume) lock(ctx context.Context) error {
577 locked := make(chan struct{})
584 v.logger.Infof("client hung up while waiting for Serialize lock (%s)", time.Since(t0))
595 // unlock releases the serialize lock, if one is in use.
596 func (v *UnixVolume) unlock() {
603 // lockfile and unlockfile use flock(2) to manage kernel file locks.
604 func (v *UnixVolume) lockfile(f *os.File) error {
605 v.os.stats.TickOps("flock")
606 v.os.stats.Tick(&v.os.stats.FlockOps)
607 err := syscall.Flock(int(f.Fd()), syscall.LOCK_EX)
608 v.os.stats.TickErr(err)
612 func (v *UnixVolume) unlockfile(f *os.File) error {
613 err := syscall.Flock(int(f.Fd()), syscall.LOCK_UN)
614 v.os.stats.TickErr(err)
618 // Where appropriate, translate a more specific filesystem error to an
619 // error recognized by handlers, like os.ErrNotExist.
620 func (v *UnixVolume) translateError(err error) error {
623 // stat() returns a PathError if the parent directory
624 // (not just the file itself) is missing
625 return os.ErrNotExist
631 var unixTrashLocRegexp = regexp.MustCompile(`/([0-9a-f]{32})\.trash\.(\d+)$`)
633 // EmptyTrash walks hierarchy looking for {hash}.trash.*
634 // and deletes those with deadline < now.
635 func (v *UnixVolume) EmptyTrash() {
636 if v.cluster.Collections.BlobDeleteConcurrency < 1 {
640 var bytesDeleted, bytesInTrash int64
641 var blocksDeleted, blocksInTrash int64
643 doFile := func(path string, info os.FileInfo) {
644 if info.Mode().IsDir() {
647 matches := unixTrashLocRegexp.FindStringSubmatch(path)
648 if len(matches) != 3 {
651 deadline, err := strconv.ParseInt(matches[2], 10, 64)
653 v.logger.WithError(err).Errorf("EmptyTrash: %v: ParseInt(%q) failed", path, matches[2])
656 atomic.AddInt64(&bytesInTrash, info.Size())
657 atomic.AddInt64(&blocksInTrash, 1)
658 if deadline > time.Now().Unix() {
661 err = v.os.Remove(path)
663 v.logger.WithError(err).Errorf("EmptyTrash: Remove(%q) failed", path)
666 atomic.AddInt64(&bytesDeleted, info.Size())
667 atomic.AddInt64(&blocksDeleted, 1)
674 var wg sync.WaitGroup
675 todo := make(chan dirent, v.cluster.Collections.BlobDeleteConcurrency)
676 for i := 0; i < v.cluster.Collections.BlobDeleteConcurrency; i++ {
680 for e := range todo {
681 doFile(e.path, e.info)
686 err := filepath.Walk(v.Root, func(path string, info os.FileInfo, err error) error {
688 v.logger.WithError(err).Errorf("EmptyTrash: filepath.Walk(%q) failed", path)
691 todo <- dirent{path, info}
698 v.logger.WithError(err).Error("EmptyTrash failed")
701 v.logger.Infof("EmptyTrash stats: Deleted %v bytes in %v blocks. Remaining in trash: %v bytes in %v blocks.", bytesDeleted, blocksDeleted, bytesInTrash-bytesDeleted, blocksInTrash-blocksDeleted)
704 type unixStats struct {
716 func (s *unixStats) TickErr(err error) {
720 s.statsTicker.TickErr(err, fmt.Sprintf("%T", err))
723 type osWithStats struct {
727 func (o *osWithStats) Open(name string) (*os.File, error) {
728 o.stats.TickOps("open")
729 o.stats.Tick(&o.stats.OpenOps)
730 f, err := os.Open(name)
735 func (o *osWithStats) OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) {
736 o.stats.TickOps("open")
737 o.stats.Tick(&o.stats.OpenOps)
738 f, err := os.OpenFile(name, flag, perm)
743 func (o *osWithStats) Remove(path string) error {
744 o.stats.TickOps("unlink")
745 o.stats.Tick(&o.stats.UnlinkOps)
746 err := os.Remove(path)
751 func (o *osWithStats) Rename(a, b string) error {
752 o.stats.TickOps("rename")
753 o.stats.Tick(&o.stats.RenameOps)
754 err := os.Rename(a, b)
759 func (o *osWithStats) Stat(path string) (os.FileInfo, error) {
760 o.stats.TickOps("stat")
761 o.stats.Tick(&o.stats.StatOps)
762 fi, err := os.Stat(path)
767 func (o *osWithStats) TempFile(dir, base string) (*os.File, error) {
768 o.stats.TickOps("create")
769 o.stats.Tick(&o.stats.CreateOps)
770 f, err := ioutil.TempFile(dir, base)