-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsymlink_test.go
More file actions
412 lines (331 loc) · 11.5 KB
/
Copy pathsymlink_test.go
File metadata and controls
412 lines (331 loc) · 11.5 KB
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
package xtractr_test
import (
"archive/zip"
"fmt"
"io/fs"
"os"
"path/filepath"
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golift.io/xtractr"
)
// TestZipSymlinks ensures ZIP symlink members become real symlinks, not text stubs.
func TestZipSymlinks(t *testing.T) {
t.Parallel()
tmp := t.TempDir()
err := os.Symlink("target", filepath.Join(tmp, "symlink-probe"))
if err != nil {
t.Skipf("symlinks unavailable on this platform: %v", err)
}
archivePath := filepath.Join(tmp, "libs.zip")
extractDir := filepath.Join(tmp, "out")
require.NoError(t, createSymlinkZip(archivePath))
_, files, _, err := xtractr.ExtractFile(&xtractr.XFile{
FilePath: archivePath,
OutputDir: extractDir,
FileMode: 0o755,
DirMode: 0o755,
})
require.NoError(t, err)
assert.Len(t, files, 3)
realFile := filepath.Join(extractDir, "libfoo.so.1.2.3")
info, err := os.Lstat(realFile)
require.NoError(t, err)
assert.Zero(t, info.Mode()&os.ModeSymlink)
assert.Positive(t, info.Size())
for linkName, wantTarget := range map[string]string{
"libfoo.so.1": "libfoo.so.1.2.3",
"libfoo.so": "libfoo.so.1",
} {
linkPath := filepath.Join(extractDir, linkName)
info, err = os.Lstat(linkPath)
require.NoError(t, err, linkName)
require.NotZero(t, info.Mode()&os.ModeSymlink, "%s should be a symlink", linkName)
got, err := os.Readlink(linkPath)
require.NoError(t, err, linkName)
assert.Equal(t, wantTarget, got, linkName)
}
}
// TestZipSymlinkEscape rejects symlink targets that leave OutputDir.
func TestZipSymlinkEscape(t *testing.T) {
t.Parallel()
tmp := t.TempDir()
err := os.Symlink("target", filepath.Join(tmp, "symlink-probe"))
if err != nil {
t.Skipf("symlinks unavailable on this platform: %v", err)
}
cases := []struct {
name string
linkName string
}{
{name: "absolute", linkName: filepath.Join(tmp, "outside")},
{name: "relative", linkName: "../outside"},
}
for _, testCase := range cases {
t.Run(testCase.name, func(t *testing.T) {
t.Parallel()
archivePath := filepath.Join(tmp, testCase.name+".zip")
extractDir := filepath.Join(tmp, testCase.name+"-out")
require.NoError(t, createLinkOnlyZip(archivePath, "escape.link", testCase.linkName))
_, _, err := xtractr.ExtractZIP(&xtractr.XFile{
FilePath: archivePath,
OutputDir: extractDir,
FileMode: 0o755,
DirMode: 0o755,
})
require.Error(t, err)
assert.ErrorIs(t, err, xtractr.ErrInvalidPath)
})
}
}
// TestSevenZipSymlinks covers the shared writeFile ModeSymlink path for 7z.
// Uses a committed fixture because some CI 7z builds follow symlinks when
// creating archives even with -snl.
func TestSevenZipSymlinks(t *testing.T) {
t.Parallel()
tmp := t.TempDir()
err := os.Symlink("target", filepath.Join(tmp, "symlink-probe"))
if err != nil {
t.Skipf("symlinks unavailable on this platform: %v", err)
}
extractDir := filepath.Join(tmp, "out")
_, files, _, err := xtractr.Extract7z(&xtractr.XFile{
FilePath: filepath.Join("test_data", "symlink.7z"),
OutputDir: extractDir,
FileMode: 0o644,
DirMode: 0o755,
})
require.NoError(t, err)
assert.Len(t, files, 2)
info, err := os.Lstat(filepath.Join(extractDir, "link.txt"))
require.NoError(t, err)
require.NotZero(t, info.Mode()&os.ModeSymlink)
got, err := os.Readlink(filepath.Join(extractDir, "link.txt"))
require.NoError(t, err)
assert.Equal(t, "target.txt", got)
data, err := os.ReadFile(filepath.Join(extractDir, "target.txt"))
require.NoError(t, err)
assert.Equal(t, "payload", string(data))
}
// TestRarSymlinks covers RAR5 unix symlinks (targets live in redirection records).
func TestRarSymlinks(t *testing.T) {
t.Parallel()
tmp := t.TempDir()
err := os.Symlink("target", filepath.Join(tmp, "symlink-probe"))
if err != nil {
t.Skipf("symlinks unavailable on this platform: %v", err)
}
extractDir := filepath.Join(tmp, "out")
_, files, _, err := xtractr.ExtractRAR(&xtractr.XFile{
FilePath: filepath.Join("test_data", "symlink.rar"),
OutputDir: extractDir,
FileMode: 0o644,
DirMode: 0o755,
})
require.NoError(t, err)
assert.Len(t, files, 2)
info, err := os.Lstat(filepath.Join(extractDir, "link.txt"))
require.NoError(t, err)
require.NotZero(t, info.Mode()&os.ModeSymlink, "RAR symlink should be restored as a symlink")
got, err := os.Readlink(filepath.Join(extractDir, "link.txt"))
require.NoError(t, err)
assert.Equal(t, "target.txt", got)
data, err := os.ReadFile(filepath.Join(extractDir, "target.txt"))
require.NoError(t, err)
assert.Equal(t, "payload", string(data))
}
// TestZipSymlinkTooLong rejects oversized symlink payloads.
func TestZipSymlinkTooLong(t *testing.T) {
t.Parallel()
tmp := t.TempDir()
err := os.Symlink("target", filepath.Join(tmp, "symlink-probe"))
if err != nil {
t.Skipf("symlinks unavailable on this platform: %v", err)
}
archivePath := filepath.Join(tmp, "huge-link.zip")
extractDir := filepath.Join(tmp, "out")
require.NoError(t, createLinkOnlyZip(archivePath, "huge.link", strings.Repeat("a", 8*1024+1)))
_, _, err = xtractr.ExtractZIP(&xtractr.XFile{
FilePath: archivePath,
OutputDir: extractDir,
FileMode: 0o755,
DirMode: 0o755,
})
require.Error(t, err)
assert.ErrorIs(t, err, xtractr.ErrSymlinkTooLong)
}
// TestPreExistingSymlinkDirEscape ensures a symlink already present in the
// output folder is not followed when an archive writes files beneath it.
// The lexical path (out/sub/file.txt) looks safe, but sub -> ../evil would
// land the payload outside the output folder.
func TestPreExistingSymlinkDirEscape(t *testing.T) {
t.Parallel()
tmp := t.TempDir()
err := os.Symlink("target", filepath.Join(tmp, "symlink-probe"))
if err != nil {
t.Skipf("symlinks unavailable on this platform: %v", err)
}
payload := []byte("escape attempt")
for _, archive := range []struct {
name string
path string
extract func(*xtractr.XFile) (uint64, []string, error)
}{
{name: "zip", path: filepath.Join(tmp, "escape.zip"), extract: xtractr.ExtractZIP},
{name: "tar", path: filepath.Join(tmp, "escape.tar"), extract: xtractr.ExtractTar},
} {
switch filepath.Ext(archive.path) {
case ".zip":
require.NoError(t, writeZipWithTraversal(archive.path, "sub/file.txt", string(payload)))
case ".tar":
require.NoError(t, writeTarWithTraversal(archive.path, "sub/file.txt", string(payload)))
}
outputDir := filepath.Join(tmp, archive.name+"-out")
evilDir := filepath.Join(tmp, archive.name+"-evil")
require.NoError(t, os.MkdirAll(outputDir, 0o750))
require.NoError(t, os.MkdirAll(evilDir, 0o750))
// The pre-existing symlink an attacker left in the output folder.
require.NoError(t, os.Symlink(evilDir, filepath.Join(outputDir, "sub")))
_, _, err := archive.extract(&xtractr.XFile{
FilePath: archive.path,
OutputDir: outputDir,
FileMode: 0o644,
DirMode: 0o755,
})
require.Error(t, err, archive.name)
require.ErrorIs(t, err, xtractr.ErrInvalidPath, archive.name)
_, statErr := os.Stat(filepath.Join(evilDir, "file.txt"))
require.ErrorIs(t, statErr, os.ErrNotExist, archive.name+": payload must not land outside the output folder")
entries, readErr := os.ReadDir(evilDir)
require.NoError(t, readErr, archive.name)
assert.Empty(t, entries, archive.name+": mkDir must not create directories through the output-folder symlink")
}
}
// TestFinalComponentSymlinkNotFollowed ensures a pre-existing symlink at the
// exact path an archive member writes to is replaced, not followed through.
func TestFinalComponentSymlinkNotFollowed(t *testing.T) {
t.Parallel()
tmp := t.TempDir()
err := os.Symlink("target", filepath.Join(tmp, "symlink-probe"))
if err != nil {
t.Skipf("symlinks unavailable on this platform: %v", err)
}
const payload = "archive payload"
victim := filepath.Join(tmp, "victim.txt")
require.NoError(t, os.WriteFile(victim, []byte("original"), 0o600))
archivePath := filepath.Join(tmp, "replace.zip")
require.NoError(t, writeZipWithTraversal(archivePath, "file.txt", payload))
outputDir := filepath.Join(tmp, "out")
require.NoError(t, os.MkdirAll(outputDir, 0o750))
require.NoError(t, os.Symlink(victim, filepath.Join(outputDir, "file.txt")))
_, _, err = xtractr.ExtractZIP(&xtractr.XFile{
FilePath: archivePath,
OutputDir: outputDir,
FileMode: 0o644,
DirMode: 0o755,
})
require.NoError(t, err)
// The victim file outside the output folder must be untouched.
data, err := os.ReadFile(victim)
require.NoError(t, err)
assert.Equal(t, "original", string(data))
// And the archive member must have replaced the link with a regular file.
info, err := os.Lstat(filepath.Join(outputDir, "file.txt"))
require.NoError(t, err)
assert.Zero(t, info.Mode()&os.ModeSymlink, "symlink must be replaced by a regular file")
data, err = os.ReadFile(filepath.Join(outputDir, "file.txt"))
require.NoError(t, err)
assert.Equal(t, payload, string(data))
}
// TestSymlinkThroughPlantedDirRejected ensures an archive symlink whose
// lexical target is inside OutputDir is still rejected when it would resolve
// through a pre-existing symlink that points outside.
func TestSymlinkThroughPlantedDirRejected(t *testing.T) {
t.Parallel()
tmp := t.TempDir()
err := os.Symlink("target", filepath.Join(tmp, "symlink-probe"))
if err != nil {
t.Skipf("symlinks unavailable on this platform: %v", err)
}
outputDir := filepath.Join(tmp, "out")
evilDir := filepath.Join(tmp, "evil")
require.NoError(t, os.MkdirAll(outputDir, 0o750))
require.NoError(t, os.MkdirAll(evilDir, 0o750))
require.NoError(t, os.Symlink(evilDir, filepath.Join(outputDir, "sub")))
archivePath := filepath.Join(tmp, "through.zip")
require.NoError(t, createLinkOnlyZip(archivePath, "mylink", "sub/pwned"))
_, _, err = xtractr.ExtractZIP(&xtractr.XFile{
FilePath: archivePath,
OutputDir: outputDir,
FileMode: 0o644,
DirMode: 0o755,
})
require.Error(t, err)
require.ErrorIs(t, err, xtractr.ErrInvalidPath)
_, statErr := os.Lstat(filepath.Join(evilDir, "pwned"))
require.ErrorIs(t, statErr, os.ErrNotExist)
}
func createSymlinkZip(dest string) error {
archiveFile, err := os.Create(dest)
if err != nil {
return fmt.Errorf("create zip: %w", err)
}
defer archiveFile.Close()
zipWriter := zip.NewWriter(archiveFile)
defer zipWriter.Close()
payload := []byte("shared-object-bytes")
header := &zip.FileHeader{
Name: "libfoo.so.1.2.3",
Method: zip.Deflate,
Modified: time.Now(),
}
header.SetMode(0o755)
writer, err := zipWriter.CreateHeader(header)
if err != nil {
return fmt.Errorf("create regular header: %w", err)
}
_, err = writer.Write(payload)
if err != nil {
return fmt.Errorf("write payload: %w", err)
}
for name, target := range map[string]string{
"libfoo.so.1": "libfoo.so.1.2.3",
"libfoo.so": "libfoo.so.1",
} {
err := writeZipSymlink(zipWriter, name, target)
if err != nil {
return err
}
}
return nil
}
func createLinkOnlyZip(dest, name, target string) error {
archiveFile, err := os.Create(dest)
if err != nil {
return fmt.Errorf("create zip: %w", err)
}
defer archiveFile.Close()
zipWriter := zip.NewWriter(archiveFile)
defer zipWriter.Close()
return writeZipSymlink(zipWriter, name, target)
}
func writeZipSymlink(zipWriter *zip.Writer, name, target string) error {
header := &zip.FileHeader{
Name: name,
Method: zip.Deflate,
Modified: time.Now(),
}
header.SetMode(0o755 | fs.ModeSymlink)
writer, err := zipWriter.CreateHeader(header)
if err != nil {
return fmt.Errorf("create symlink header: %w", err)
}
_, err = writer.Write([]byte(target))
if err != nil {
return fmt.Errorf("write symlink target: %w", err)
}
return nil
}