summaryrefslogtreecommitdiff
path: root/archivers/libarchive/files/cpio/test/test_pathmatch.c
blob: 177c2bcc4af45cf291e4e6e0cc8894f6537be75e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/*-
 * Copyright (c) 2003-2007 Tim Kientzle
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
#include "test.h"
__FBSDID("$FreeBSD$");

#include "pathmatch.h"

/*
 * Verify that the pattern matcher implements the wildcard logic specified
 * in SUSv2 for the cpio command.  This is essentially the
 * shell glob syntax:
 *   * - matches any sequence of chars, including '/'
 *   ? - matches any single char, including '/'
 *   [...] - matches any of a set of chars, '-' specifies a range,
 *        initial '!' is undefined
 *
 * The specification in SUSv2 is a bit incomplete, I assume the following:
 *   Trailing '-' in [...] is not special.
 *
 * TODO: Figure out if there's a good way to extend this to handle
 * Windows paths that use '\' as a path separator.  <sigh>
 */

DEFINE_TEST(test_pathmatch)
{
	assertEqualInt(1, lafe_pathmatch("a/b/c", "a/b/c", 0));
	assertEqualInt(0, lafe_pathmatch("a/b/", "a/b/c", 0));
	assertEqualInt(0, lafe_pathmatch("a/b", "a/b/c", 0));
	assertEqualInt(0, lafe_pathmatch("a/b/c", "a/b/", 0));
	assertEqualInt(0, lafe_pathmatch("a/b/c", "a/b", 0));

	/* Empty pattern only matches empty string. */
	assertEqualInt(1, lafe_pathmatch("","", 0));
	assertEqualInt(0, lafe_pathmatch("","a", 0));
	assertEqualInt(1, lafe_pathmatch("*","", 0));
	assertEqualInt(1, lafe_pathmatch("*","a", 0));
	assertEqualInt(1, lafe_pathmatch("*","abcd", 0));
	/* SUSv2: * matches / */
	assertEqualInt(1, lafe_pathmatch("*","abcd/efgh/ijkl", 0));
	assertEqualInt(1, lafe_pathmatch("abcd*efgh/ijkl","abcd/efgh/ijkl", 0));
	assertEqualInt(1, lafe_pathmatch("abcd***efgh/ijkl","abcd/efgh/ijkl", 0));
	assertEqualInt(1, lafe_pathmatch("abcd***/efgh/ijkl","abcd/efgh/ijkl", 0));
	assertEqualInt(0, lafe_pathmatch("?", "", 0));
	assertEqualInt(0, lafe_pathmatch("?", "\0", 0));
	assertEqualInt(1, lafe_pathmatch("?", "a", 0));
	assertEqualInt(0, lafe_pathmatch("?", "ab", 0));
	assertEqualInt(1, lafe_pathmatch("?", ".", 0));
	assertEqualInt(1, lafe_pathmatch("?", "?", 0));
	assertEqualInt(1, lafe_pathmatch("a", "a", 0));
	assertEqualInt(0, lafe_pathmatch("a", "ab", 0));
	assertEqualInt(0, lafe_pathmatch("a", "ab", 0));
	assertEqualInt(1, lafe_pathmatch("a?c", "abc", 0));
	/* SUSv2: ? matches / */
	assertEqualInt(1, lafe_pathmatch("a?c", "a/c", 0));
	assertEqualInt(1, lafe_pathmatch("a?*c*", "a/c", 0));
	assertEqualInt(1, lafe_pathmatch("*a*", "a/c", 0));
	assertEqualInt(1, lafe_pathmatch("*a*", "/a/c", 0));
	assertEqualInt(1, lafe_pathmatch("*a*", "defaaaaaaa", 0));
	assertEqualInt(0, lafe_pathmatch("a*", "defghi", 0));
	assertEqualInt(0, lafe_pathmatch("*a*", "defghi", 0));

	/* Character classes */
	assertEqualInt(1, lafe_pathmatch("abc[def", "abc[def", 0));
	assertEqualInt(0, lafe_pathmatch("abc[def]", "abc[def", 0));
	assertEqualInt(0, lafe_pathmatch("abc[def", "abcd", 0));
	assertEqualInt(1, lafe_pathmatch("abc[def]", "abcd", 0));
	assertEqualInt(1, lafe_pathmatch("abc[def]", "abce", 0));
	assertEqualInt(1, lafe_pathmatch("abc[def]", "abcf", 0));
	assertEqualInt(0, lafe_pathmatch("abc[def]", "abcg", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d*f]", "abcd", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d*f]", "abc*", 0));
	assertEqualInt(0, lafe_pathmatch("abc[d*f]", "abcdefghi", 0));
	assertEqualInt(0, lafe_pathmatch("abc[d*", "abcdefghi", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d*", "abc[defghi", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-f]", "abcd", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-f]", "abce", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-f]", "abcf", 0));
	assertEqualInt(0, lafe_pathmatch("abc[d-f]", "abcg", 0));
	assertEqualInt(0, lafe_pathmatch("abc[d-fh-k]", "abca", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-k]", "abcd", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-k]", "abce", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-k]", "abcf", 0));
	assertEqualInt(0, lafe_pathmatch("abc[d-fh-k]", "abcg", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-k]", "abch", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-k]", "abci", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-k]", "abcj", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-k]", "abck", 0));
	assertEqualInt(0, lafe_pathmatch("abc[d-fh-k]", "abcl", 0));
	assertEqualInt(0, lafe_pathmatch("abc[d-fh-k]", "abc-", 0));

	/* [] matches nothing, [!] is the same as ? */
	assertEqualInt(0, lafe_pathmatch("abc[]efg", "abcdefg", 0));
	assertEqualInt(0, lafe_pathmatch("abc[]efg", "abcqefg", 0));
	assertEqualInt(0, lafe_pathmatch("abc[]efg", "abcefg", 0));
	assertEqualInt(1, lafe_pathmatch("abc[!]efg", "abcdefg", 0));
	assertEqualInt(1, lafe_pathmatch("abc[!]efg", "abcqefg", 0));
	assertEqualInt(0, lafe_pathmatch("abc[!]efg", "abcefg", 0));

	/* I assume: Trailing '-' is non-special. */
	assertEqualInt(0, lafe_pathmatch("abc[d-fh-]", "abcl", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-]", "abch", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-]", "abc-", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-fh-]", "abc-", 0));

	/* ']' can be backslash-quoted within a character class. */
	assertEqualInt(1, lafe_pathmatch("abc[\\]]", "abc]", 0));
	assertEqualInt(1, lafe_pathmatch("abc[\\]d]", "abc]", 0));
	assertEqualInt(1, lafe_pathmatch("abc[\\]d]", "abcd", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d\\]]", "abc]", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d\\]]", "abcd", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d]e]", "abcde]", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d\\]e]", "abc]", 0));
	assertEqualInt(0, lafe_pathmatch("abc[d\\]e]", "abcd]e", 0));
	assertEqualInt(0, lafe_pathmatch("abc[d]e]", "abc]", 0));

	/* backslash-quoted chars can appear as either end of a range. */
	assertEqualInt(1, lafe_pathmatch("abc[\\d-f]gh", "abcegh", 0));
	assertEqualInt(0, lafe_pathmatch("abc[\\d-f]gh", "abcggh", 0));
	assertEqualInt(0, lafe_pathmatch("abc[\\d-f]gh", "abc\\gh", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d-\\f]gh", "abcegh", 0));
	assertEqualInt(1, lafe_pathmatch("abc[\\d-\\f]gh", "abcegh", 0));
	assertEqualInt(1, lafe_pathmatch("abc[\\d-\\f]gh", "abcegh", 0));
	/* backslash-quoted '-' isn't special. */
	assertEqualInt(0, lafe_pathmatch("abc[d\\-f]gh", "abcegh", 0));
	assertEqualInt(1, lafe_pathmatch("abc[d\\-f]gh", "abc-gh", 0));

	/* Leading '!' negates a character class. */
	assertEqualInt(0, lafe_pathmatch("abc[!d]", "abcd", 0));
	assertEqualInt(1, lafe_pathmatch("abc[!d]", "abce", 0));
	assertEqualInt(1, lafe_pathmatch("abc[!d]", "abcc", 0));
	assertEqualInt(0, lafe_pathmatch("abc[!d-z]", "abcq", 0));
	assertEqualInt(1, lafe_pathmatch("abc[!d-gi-z]", "abch", 0));
	assertEqualInt(1, lafe_pathmatch("abc[!fgijkl]", "abch", 0));
	assertEqualInt(0, lafe_pathmatch("abc[!fghijkl]", "abch", 0));

	/* Backslash quotes next character. */
	assertEqualInt(0, lafe_pathmatch("abc\\[def]", "abc\\d", 0));
	assertEqualInt(1, lafe_pathmatch("abc\\[def]", "abc[def]", 0));
	assertEqualInt(0, lafe_pathmatch("abc\\\\[def]", "abc[def]", 0));
	assertEqualInt(0, lafe_pathmatch("abc\\\\[def]", "abc\\[def]", 0));
	assertEqualInt(1, lafe_pathmatch("abc\\\\[def]", "abc\\d", 0));
	assertEqualInt(1, lafe_pathmatch("abcd\\", "abcd\\", 0));
	assertEqualInt(0, lafe_pathmatch("abcd\\", "abcd\\[", 0));
	assertEqualInt(0, lafe_pathmatch("abcd\\", "abcde", 0));
	assertEqualInt(0, lafe_pathmatch("abcd\\[", "abcd\\", 0));

	/*
	 * Because '.' and '/' have special meanings, we can
	 * identify many equivalent paths even if they're expressed
	 * differently.  (But quoting a character with '\\' suppresses
	 * special meanings!)
	 */
	assertEqualInt(0, lafe_pathmatch("a/b/", "a/bc", 0));
	assertEqualInt(1, lafe_pathmatch("a/./b", "a/b", 0));
	assertEqualInt(0, lafe_pathmatch("a\\/./b", "a/b", 0));
	assertEqualInt(0, lafe_pathmatch("a/\\./b", "a/b", 0));
	assertEqualInt(0, lafe_pathmatch("a/.\\/b", "a/b", 0));
	assertEqualInt(0, lafe_pathmatch("a\\/\\.\\/b", "a/b", 0));
	assertEqualInt(1, lafe_pathmatch("./abc/./def/", "abc/def/", 0));
	assertEqualInt(1, lafe_pathmatch("abc/def", "./././abc/./def", 0));
	assertEqualInt(1, lafe_pathmatch("abc/def/././//", "./././abc/./def/", 0));
	assertEqualInt(1, lafe_pathmatch(".////abc/.//def", "./././abc/./def", 0));
	assertEqualInt(1, lafe_pathmatch("./abc?def/", "abc/def/", 0));
	failure("\"?./\" is not the same as \"/./\"");
	assertEqualInt(0, lafe_pathmatch("./abc?./def/", "abc/def/", 0));
	failure("Trailing '/' should match no trailing '/'");
	assertEqualInt(1, lafe_pathmatch("./abc/./def/", "abc/def", 0));
	failure("Trailing '/./' is still the same directory.");
	assertEqualInt(1, lafe_pathmatch("./abc/./def/./", "abc/def", 0));
	failure("Trailing '/.' is still the same directory.");
	assertEqualInt(1, lafe_pathmatch("./abc/./def/.", "abc/def", 0));
	assertEqualInt(1, lafe_pathmatch("./abc/./def", "abc/def/", 0));
	failure("Trailing '/./' is still the same directory.");
	assertEqualInt(1, lafe_pathmatch("./abc/./def", "abc/def/./", 0));
	failure("Trailing '/.' is still the same directory.");
	assertEqualInt(1, lafe_pathmatch("./abc*/./def", "abc/def/.", 0));

	/* Matches not anchored at beginning. */
	assertEqualInt(0,
	    lafe_pathmatch("bcd", "abcd", PATHMATCH_NO_ANCHOR_START));
	assertEqualInt(1,
	    lafe_pathmatch("abcd", "abcd", PATHMATCH_NO_ANCHOR_START));
	assertEqualInt(0,
	    lafe_pathmatch("^bcd", "abcd", PATHMATCH_NO_ANCHOR_START));
	assertEqualInt(1,
	    lafe_pathmatch("b/c/d", "a/b/c/d", PATHMATCH_NO_ANCHOR_START));
	assertEqualInt(0,
	    lafe_pathmatch("b/c", "a/b/c/d", PATHMATCH_NO_ANCHOR_START));
	assertEqualInt(0,
	    lafe_pathmatch("^b/c", "a/b/c/d", PATHMATCH_NO_ANCHOR_START));

	/* Matches not anchored at end. */
	assertEqualInt(0,
	    lafe_pathmatch("bcd", "abcd", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(1,
	    lafe_pathmatch("abcd", "abcd", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(1,
	    lafe_pathmatch("abcd", "abcd/", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(1,
	    lafe_pathmatch("abcd", "abcd/.", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(0,
	    lafe_pathmatch("abc", "abcd", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(1,
	    lafe_pathmatch("a/b/c", "a/b/c/d", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(0,
	    lafe_pathmatch("a/b/c$", "a/b/c/d", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(1,
	    lafe_pathmatch("a/b/c$", "a/b/c", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(1,
	    lafe_pathmatch("a/b/c$", "a/b/c/", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(1,
	    lafe_pathmatch("a/b/c/", "a/b/c/d", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(0,
	    lafe_pathmatch("a/b/c/$", "a/b/c/d", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(1,
	    lafe_pathmatch("a/b/c/$", "a/b/c/", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(1,
	    lafe_pathmatch("a/b/c/$", "a/b/c", PATHMATCH_NO_ANCHOR_END));
	assertEqualInt(0,
	    lafe_pathmatch("b/c", "a/b/c/d", PATHMATCH_NO_ANCHOR_END));
}