mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
c71729dfc4
Package internal/dump has been reworked so its API consists of a single type Dumper that handles tar and zip formats. Tree loading and node writing happen concurrently.
118 lines
2.5 KiB
Go
118 lines
2.5 KiB
Go
package dump
|
|
|
|
import (
|
|
"archive/tar"
|
|
"context"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/restic/restic/internal/errors"
|
|
"github.com/restic/restic/internal/restic"
|
|
)
|
|
|
|
func (d *Dumper) dumpTar(ctx context.Context, ch <-chan *restic.Node) (err error) {
|
|
w := tar.NewWriter(d.w)
|
|
|
|
defer func() {
|
|
if err == nil {
|
|
err = w.Close()
|
|
err = errors.Wrap(err, "Close")
|
|
}
|
|
}()
|
|
|
|
for node := range ch {
|
|
if err := d.dumpNodeTar(ctx, node, w); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// copied from archive/tar.FileInfoHeader
|
|
const (
|
|
// Mode constants from the USTAR spec:
|
|
// See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
|
|
cISUID = 0o4000 // Set uid
|
|
cISGID = 0o2000 // Set gid
|
|
cISVTX = 0o1000 // Save text (sticky bit)
|
|
)
|
|
|
|
func (d *Dumper) dumpNodeTar(ctx context.Context, node *restic.Node, w *tar.Writer) error {
|
|
relPath, err := filepath.Rel("/", node.Path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
header := &tar.Header{
|
|
Name: filepath.ToSlash(relPath),
|
|
Size: int64(node.Size),
|
|
Mode: int64(node.Mode.Perm()), // cIS* constants are added later
|
|
Uid: int(node.UID),
|
|
Gid: int(node.GID),
|
|
Uname: node.User,
|
|
Gname: node.Group,
|
|
ModTime: node.ModTime,
|
|
AccessTime: node.AccessTime,
|
|
ChangeTime: node.ChangeTime,
|
|
PAXRecords: parseXattrs(node.ExtendedAttributes),
|
|
}
|
|
|
|
// adapted from archive/tar.FileInfoHeader
|
|
if node.Mode&os.ModeSetuid != 0 {
|
|
header.Mode |= cISUID
|
|
}
|
|
if node.Mode&os.ModeSetgid != 0 {
|
|
header.Mode |= cISGID
|
|
}
|
|
if node.Mode&os.ModeSticky != 0 {
|
|
header.Mode |= cISVTX
|
|
}
|
|
|
|
if IsFile(node) {
|
|
header.Typeflag = tar.TypeReg
|
|
}
|
|
|
|
if IsLink(node) {
|
|
header.Typeflag = tar.TypeSymlink
|
|
header.Linkname = node.LinkTarget
|
|
}
|
|
|
|
if IsDir(node) {
|
|
header.Typeflag = tar.TypeDir
|
|
header.Name += "/"
|
|
}
|
|
|
|
err = w.WriteHeader(header)
|
|
if err != nil {
|
|
return errors.Wrap(err, "TarHeader")
|
|
}
|
|
|
|
return d.writeNode(ctx, w, node)
|
|
}
|
|
|
|
func parseXattrs(xattrs []restic.ExtendedAttribute) map[string]string {
|
|
tmpMap := make(map[string]string)
|
|
|
|
for _, attr := range xattrs {
|
|
attrString := string(attr.Value)
|
|
|
|
if strings.HasPrefix(attr.Name, "system.posix_acl_") {
|
|
na := acl{}
|
|
na.decode(attr.Value)
|
|
|
|
if na.String() != "" {
|
|
if strings.Contains(attr.Name, "system.posix_acl_access") {
|
|
tmpMap["SCHILY.acl.access"] = na.String()
|
|
} else if strings.Contains(attr.Name, "system.posix_acl_default") {
|
|
tmpMap["SCHILY.acl.default"] = na.String()
|
|
}
|
|
}
|
|
} else {
|
|
tmpMap["SCHILY.xattr."+attr.Name] = attrString
|
|
}
|
|
}
|
|
|
|
return tmpMap
|
|
}
|