2015-07-13 20:05:21 +00:00
|
|
|
package filter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2016-08-21 15:46:23 +00:00
|
|
|
|
2017-07-23 12:21:03 +00:00
|
|
|
"github.com/restic/restic/internal/errors"
|
2015-07-13 20:05:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ErrBadString is returned when Match is called with the empty string as the
|
|
|
|
// second argument.
|
|
|
|
var ErrBadString = errors.New("filter.Match: string is empty")
|
|
|
|
|
2020-10-07 18:55:43 +00:00
|
|
|
type patternPart struct {
|
2020-10-08 09:00:25 +00:00
|
|
|
pattern string // First is "/" for absolute pattern; "" for "**".
|
2020-10-07 18:55:43 +00:00
|
|
|
isSimple bool
|
|
|
|
}
|
|
|
|
|
2020-10-07 12:39:51 +00:00
|
|
|
// Pattern represents a preparsed filter pattern
|
2020-10-07 18:55:43 +00:00
|
|
|
type Pattern []patternPart
|
2020-10-07 12:27:59 +00:00
|
|
|
|
|
|
|
func prepareStr(str string) ([]string, error) {
|
|
|
|
if str == "" {
|
|
|
|
return nil, ErrBadString
|
|
|
|
}
|
2020-10-08 09:00:25 +00:00
|
|
|
return splitPath(str), nil
|
2020-10-07 12:27:59 +00:00
|
|
|
}
|
|
|
|
|
2020-10-07 12:39:51 +00:00
|
|
|
func preparePattern(pattern string) Pattern {
|
2020-10-08 09:00:25 +00:00
|
|
|
parts := splitPath(filepath.Clean(pattern))
|
2020-10-07 18:55:43 +00:00
|
|
|
patterns := make([]patternPart, len(parts))
|
|
|
|
for i, part := range parts {
|
|
|
|
isSimple := !strings.ContainsAny(part, "\\[]*?")
|
2020-10-08 09:00:25 +00:00
|
|
|
// Replace "**" with the empty string to get faster comparisons
|
|
|
|
// (length-check only) in hasDoubleWildcard.
|
|
|
|
if part == "**" {
|
|
|
|
part = ""
|
|
|
|
}
|
2020-10-07 18:55:43 +00:00
|
|
|
patterns[i] = patternPart{part, isSimple}
|
|
|
|
}
|
|
|
|
|
|
|
|
return patterns
|
2020-10-07 12:27:59 +00:00
|
|
|
}
|
|
|
|
|
2020-10-08 09:00:25 +00:00
|
|
|
// Split p into path components. Assuming p has been Cleaned, no component
|
|
|
|
// will be empty. For absolute paths, the first component is "/".
|
|
|
|
func splitPath(p string) []string {
|
|
|
|
parts := strings.Split(filepath.ToSlash(p), "/")
|
|
|
|
if parts[0] == "" {
|
|
|
|
parts[0] = "/"
|
|
|
|
}
|
|
|
|
return parts
|
|
|
|
}
|
|
|
|
|
2015-07-13 20:05:21 +00:00
|
|
|
// Match returns true if str matches the pattern. When the pattern is
|
|
|
|
// malformed, filepath.ErrBadPattern is returned. The empty pattern matches
|
|
|
|
// everything, when str is the empty string ErrBadString is returned.
|
|
|
|
//
|
|
|
|
// Pattern can be a combination of patterns suitable for filepath.Match, joined
|
|
|
|
// by filepath.Separator.
|
2017-09-04 21:38:48 +00:00
|
|
|
//
|
|
|
|
// In addition patterns suitable for filepath.Match, pattern accepts a
|
|
|
|
// recursive wildcard '**', which greedily matches an arbitrary number of
|
|
|
|
// intermediate directories.
|
2015-07-13 20:05:21 +00:00
|
|
|
func Match(pattern, str string) (matched bool, err error) {
|
|
|
|
if pattern == "" {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2020-10-07 12:27:59 +00:00
|
|
|
patterns := preparePattern(pattern)
|
|
|
|
strs, err := prepareStr(str)
|
2016-04-17 19:54:12 +00:00
|
|
|
|
2020-10-07 12:27:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
2015-08-17 09:48:24 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 20:05:21 +00:00
|
|
|
return match(patterns, strs)
|
|
|
|
}
|
|
|
|
|
2017-06-16 14:46:16 +00:00
|
|
|
// ChildMatch returns true if children of str can match the pattern. When the pattern is
|
|
|
|
// malformed, filepath.ErrBadPattern is returned. The empty pattern matches
|
|
|
|
// everything, when str is the empty string ErrBadString is returned.
|
|
|
|
//
|
|
|
|
// Pattern can be a combination of patterns suitable for filepath.Match, joined
|
|
|
|
// by filepath.Separator.
|
2017-09-04 21:38:48 +00:00
|
|
|
//
|
|
|
|
// In addition patterns suitable for filepath.Match, pattern accepts a
|
|
|
|
// recursive wildcard '**', which greedily matches an arbitrary number of
|
|
|
|
// intermediate directories.
|
2017-06-16 14:46:16 +00:00
|
|
|
func ChildMatch(pattern, str string) (matched bool, err error) {
|
|
|
|
if pattern == "" {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2020-10-07 12:27:59 +00:00
|
|
|
patterns := preparePattern(pattern)
|
|
|
|
strs, err := prepareStr(str)
|
2017-06-16 14:46:16 +00:00
|
|
|
|
2020-10-07 12:27:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
2017-06-16 14:46:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return childMatch(patterns, strs)
|
|
|
|
}
|
|
|
|
|
2020-10-07 12:39:51 +00:00
|
|
|
func childMatch(patterns Pattern, strs []string) (matched bool, err error) {
|
2020-10-08 09:00:25 +00:00
|
|
|
if patterns[0].pattern != "/" {
|
2017-06-16 14:46:16 +00:00
|
|
|
// relative pattern can always be nested down
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2018-06-09 21:12:51 +00:00
|
|
|
ok, pos := hasDoubleWildcard(patterns)
|
|
|
|
if ok && len(strs) >= pos {
|
|
|
|
// cut off at the double wildcard
|
|
|
|
strs = strs[:pos]
|
|
|
|
}
|
|
|
|
|
2017-06-16 14:46:16 +00:00
|
|
|
// match path against absolute pattern prefix
|
|
|
|
l := 0
|
|
|
|
if len(strs) > len(patterns) {
|
|
|
|
l = len(patterns)
|
|
|
|
} else {
|
|
|
|
l = len(strs)
|
|
|
|
}
|
|
|
|
return match(patterns[0:l], strs)
|
|
|
|
}
|
|
|
|
|
2020-10-07 12:39:51 +00:00
|
|
|
func hasDoubleWildcard(list Pattern) (ok bool, pos int) {
|
2015-07-13 20:51:35 +00:00
|
|
|
for i, item := range list {
|
2020-10-08 09:00:25 +00:00
|
|
|
if item.pattern == "" {
|
2015-07-13 20:51:35 +00:00
|
|
|
return true, i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, 0
|
|
|
|
}
|
|
|
|
|
2020-10-07 12:39:51 +00:00
|
|
|
func match(patterns Pattern, strs []string) (matched bool, err error) {
|
2015-07-13 20:51:35 +00:00
|
|
|
if ok, pos := hasDoubleWildcard(patterns); ok {
|
|
|
|
// gradually expand '**' into separate wildcards
|
2020-10-07 13:51:17 +00:00
|
|
|
newPat := make(Pattern, len(strs))
|
|
|
|
// copy static prefix once
|
|
|
|
copy(newPat, patterns[:pos])
|
2015-07-13 20:51:35 +00:00
|
|
|
for i := 0; i <= len(strs)-len(patterns)+1; i++ {
|
2020-10-07 13:51:17 +00:00
|
|
|
// limit to static prefix and already appended '*'
|
|
|
|
newPat := newPat[:pos+i]
|
|
|
|
// in the first iteration the wildcard expands to nothing
|
|
|
|
if i > 0 {
|
2020-10-07 18:55:43 +00:00
|
|
|
newPat[pos+i-1] = patternPart{"*", false}
|
2015-07-13 20:51:35 +00:00
|
|
|
}
|
|
|
|
newPat = append(newPat, patterns[pos+1:]...)
|
|
|
|
|
|
|
|
matched, err := match(newPat, strs)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if matched {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2015-07-13 20:05:21 +00:00
|
|
|
if len(patterns) == 0 && len(strs) == 0 {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2021-05-14 20:14:05 +00:00
|
|
|
// an empty pattern never matches a non-empty path
|
|
|
|
if len(patterns) == 0 {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2015-07-13 20:05:21 +00:00
|
|
|
if len(patterns) <= len(strs) {
|
2020-10-09 14:11:05 +00:00
|
|
|
minOffset := 0
|
2019-07-06 20:12:24 +00:00
|
|
|
maxOffset := len(strs) - len(patterns)
|
|
|
|
// special case absolute patterns
|
2020-10-08 09:00:25 +00:00
|
|
|
if patterns[0].pattern == "/" {
|
2019-07-06 20:12:24 +00:00
|
|
|
maxOffset = 0
|
2020-10-09 14:11:05 +00:00
|
|
|
} else if strs[0] == "/" {
|
|
|
|
// skip absolute path marker if pattern is not rooted
|
|
|
|
minOffset = 1
|
2019-07-06 20:12:24 +00:00
|
|
|
}
|
2015-07-13 20:05:21 +00:00
|
|
|
outer:
|
2020-10-09 14:11:05 +00:00
|
|
|
for offset := maxOffset; offset >= minOffset; offset-- {
|
2015-07-13 20:05:21 +00:00
|
|
|
|
|
|
|
for i := len(patterns) - 1; i >= 0; i-- {
|
2020-10-07 18:55:43 +00:00
|
|
|
var ok bool
|
|
|
|
if patterns[i].isSimple {
|
|
|
|
ok = patterns[i].pattern == strs[offset+i]
|
|
|
|
} else {
|
|
|
|
ok, err = filepath.Match(patterns[i].pattern, strs[offset+i])
|
|
|
|
if err != nil {
|
|
|
|
return false, errors.Wrap(err, "Match")
|
|
|
|
}
|
2015-07-13 20:05:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
continue outer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2020-10-07 12:39:51 +00:00
|
|
|
// ParsePatterns prepares a list of patterns for use with List.
|
|
|
|
func ParsePatterns(patterns []string) []Pattern {
|
|
|
|
patpat := make([]Pattern, 0)
|
|
|
|
for _, pat := range patterns {
|
|
|
|
if pat == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
pats := preparePattern(pat)
|
|
|
|
patpat = append(patpat, pats)
|
|
|
|
}
|
|
|
|
return patpat
|
|
|
|
}
|
|
|
|
|
|
|
|
// List returns true if str matches one of the patterns. Empty patterns are ignored.
|
2020-10-07 17:46:41 +00:00
|
|
|
func List(patterns []Pattern, str string) (matched bool, err error) {
|
|
|
|
matched, _, err = list(patterns, false, str)
|
|
|
|
return matched, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListWithChild returns true if str matches one of the patterns. Empty patterns are ignored.
|
|
|
|
func ListWithChild(patterns []Pattern, str string) (matched bool, childMayMatch bool, err error) {
|
|
|
|
return list(patterns, true, str)
|
|
|
|
}
|
|
|
|
|
|
|
|
// List returns true if str matches one of the patterns. Empty patterns are ignored.
|
|
|
|
func list(patterns []Pattern, checkChildMatches bool, str string) (matched bool, childMayMatch bool, err error) {
|
2020-10-07 12:27:59 +00:00
|
|
|
if len(patterns) == 0 {
|
|
|
|
return false, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
strs, err := prepareStr(str)
|
|
|
|
if err != nil {
|
|
|
|
return false, false, err
|
|
|
|
}
|
2015-07-13 20:05:21 +00:00
|
|
|
for _, pat := range patterns {
|
2020-10-07 12:39:51 +00:00
|
|
|
m, err := match(pat, strs)
|
2015-07-13 20:05:21 +00:00
|
|
|
if err != nil {
|
2017-06-16 14:46:16 +00:00
|
|
|
return false, false, err
|
2015-07-13 20:05:21 +00:00
|
|
|
}
|
|
|
|
|
2020-10-07 17:46:41 +00:00
|
|
|
var c bool
|
|
|
|
if checkChildMatches {
|
|
|
|
c, err = childMatch(pat, strs)
|
|
|
|
if err != nil {
|
|
|
|
return false, false, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
c = true
|
2017-06-16 14:46:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
matched = matched || m
|
|
|
|
childMayMatch = childMayMatch || c
|
|
|
|
|
|
|
|
if matched && childMayMatch {
|
|
|
|
return true, true, nil
|
2015-07-13 20:05:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-16 14:46:16 +00:00
|
|
|
return matched, childMayMatch, nil
|
2015-07-13 20:05:21 +00:00
|
|
|
}
|