1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-11-22 08:25:38 +00:00

parse: do not allow FullType entries to affect the current directory

As per the spec[1], Full entries must not affect the current directory.
Handling this incorrectly caused us issues with certain manifests (ones
with mixed Relative and Full entries, which is something casync does by
accident).

This is a partial fix for the issues with verifying casync-mtree's
output but there are a few other issues to iron out (including one
within casync).

[1]: https://man.netbsd.org/mtree.5

Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
This commit is contained in:
Aleksa Sarai 2023-06-04 20:00:33 +10:00
parent 98ebe1868e
commit 63dc31a80a
No known key found for this signature in database
GPG key ID: 2897FAD2B7E9446F

View file

@ -72,27 +72,30 @@ func ParseSpec(r io.Reader) (*DirectoryHierarchy, error) {
break break
} }
} }
// parse the options // parse the options
f := strings.Fields(str) f := strings.Fields(str)
e.Name = filepath.Clean(f[0]) e.Name = filepath.Clean(f[0])
e.Keywords = StringToKeyVals(f[1:])
// TODO: gather keywords if using tar stream
var isDir bool
for _, kv := range e.Keywords {
if kv.Keyword() == "type" {
isDir = kv.Value() == "dir"
}
}
if strings.Contains(e.Name, "/") { if strings.Contains(e.Name, "/") {
e.Type = FullType e.Type = FullType
} else { } else {
e.Type = RelativeType e.Type = RelativeType
} e.Parent = creator.curDir
e.Keywords = StringToKeyVals(f[1:]) if isDir {
// TODO: gather keywords if using tar stream creator.curDir = &e
e.Parent = creator.curDir
for i := range e.Keywords {
kv := KeyVal(e.Keywords[i])
if kv.Keyword() == "type" {
if kv.Value() == "dir" {
creator.curDir = &e
} else {
creator.curEnt = &e
}
} }
} }
if !isDir {
creator.curEnt = &e
}
e.Set = creator.curSet e.Set = creator.curSet
default: default:
// TODO(vbatts) log a warning? // TODO(vbatts) log a warning?