mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* update vendor directory, add go.opencensus.io * update imports * oops * s/opentracing/opencensus/ & remove prometheus / zipkin stuff & remove old stats * the dep train rides again * fix gin build * deps from last guy * start in on the agent metrics * she builds * remove tags for now, cardinality error is fussing. subscribe instead of register * update to patched version of opencensus to proceed for now TODO switch to a release * meh fix imports * println debug the bad boys * lace it with the tags * update deps again * fix all inconsistent cardinality errors * add our own logger * fix init * fix oom measure * remove bugged removal code * fix s3 measures * fix prom handler nil
81 lines
2.0 KiB
Go
81 lines
2.0 KiB
Go
// +build solaris darwin freebsd
|
|
|
|
package fs
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"syscall"
|
|
|
|
"github.com/containerd/continuity/sysx"
|
|
"github.com/pkg/errors"
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func copyFileInfo(fi os.FileInfo, name string) error {
|
|
st := fi.Sys().(*syscall.Stat_t)
|
|
if err := os.Lchown(name, int(st.Uid), int(st.Gid)); err != nil {
|
|
if os.IsPermission(err) {
|
|
// Normally if uid/gid are the same this would be a no-op, but some
|
|
// filesystems may still return EPERM... for instance NFS does this.
|
|
// In such a case, this is not an error.
|
|
if dstStat, err2 := os.Lstat(name); err2 == nil {
|
|
st2 := dstStat.Sys().(*syscall.Stat_t)
|
|
if st.Uid == st2.Uid && st.Gid == st2.Gid {
|
|
err = nil
|
|
}
|
|
}
|
|
}
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to chown %s", name)
|
|
}
|
|
}
|
|
|
|
if (fi.Mode() & os.ModeSymlink) != os.ModeSymlink {
|
|
if err := os.Chmod(name, fi.Mode()); err != nil {
|
|
return errors.Wrapf(err, "failed to chmod %s", name)
|
|
}
|
|
}
|
|
|
|
timespec := []syscall.Timespec{StatAtime(st), StatMtime(st)}
|
|
if err := syscall.UtimesNano(name, timespec); err != nil {
|
|
return errors.Wrapf(err, "failed to utime %s", name)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func copyFileContent(dst, src *os.File) error {
|
|
buf := bufferPool.Get().(*[]byte)
|
|
_, err := io.CopyBuffer(dst, src, *buf)
|
|
bufferPool.Put(buf)
|
|
|
|
return err
|
|
}
|
|
|
|
func copyXAttrs(dst, src string) error {
|
|
xattrKeys, err := sysx.LListxattr(src)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to list xattrs on %s", src)
|
|
}
|
|
for _, xattr := range xattrKeys {
|
|
data, err := sysx.LGetxattr(src, xattr)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to get xattr %q on %s", xattr, src)
|
|
}
|
|
if err := sysx.LSetxattr(dst, xattr, data, 0); err != nil {
|
|
return errors.Wrapf(err, "failed to set xattr %q on %s", xattr, dst)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func copyDevice(dst string, fi os.FileInfo) error {
|
|
st, ok := fi.Sys().(*syscall.Stat_t)
|
|
if !ok {
|
|
return errors.New("unsupported stat type")
|
|
}
|
|
return unix.Mknod(dst, uint32(fi.Mode()), int(st.Rdev))
|
|
}
|