forked from golift/xtractr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
7z.go
112 lines (91 loc) · 2.9 KB
/
7z.go
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
package xtractr
import (
"fmt"
"os"
"path/filepath"
"strings"
"github.com/bodgit/sevenzip"
)
// Extract7z extracts a 7zip archive.
// Volumes: https://github.com/bodgit/sevenzip/issues/54
func Extract7z(xFile *XFile) (int64, []string, []string, error) {
if len(xFile.Passwords) == 0 && xFile.Password == "" {
return extract7z(xFile)
}
// Try all the passwords.
passwords := xFile.Passwords
if xFile.Password != "" { // If a single password is provided, try it first.
passwords = append([]string{xFile.Password}, xFile.Passwords...)
}
for idx, password := range passwords {
size, files, archives, err := extract7z(&XFile{
FilePath: xFile.FilePath,
OutputDir: xFile.OutputDir,
FileMode: xFile.FileMode,
DirMode: xFile.DirMode,
Password: password,
})
if err != nil && idx == len(passwords)-1 {
return size, files, archives, fmt.Errorf("used password %d of %d: %w", idx+1, len(passwords), err)
} else if err == nil {
return size, files, archives, nil
}
}
// unreachable code
return 0, nil, nil, nil
}
func extract7z(xFile *XFile) (int64, []string, []string, error) {
var (
sevenZip *sevenzip.ReadCloser
err error
)
if xFile.Password != "" {
sevenZip, err = sevenzip.OpenReaderWithPassword(xFile.FilePath, xFile.Password)
} else {
sevenZip, err = sevenzip.OpenReader(xFile.FilePath)
}
if err != nil {
return 0, nil, nil, fmt.Errorf("%s: os.Open: %w", xFile.FilePath, err)
}
defer sevenZip.Close()
files := []string{}
size := int64(0)
for _, zipFile := range sevenZip.File {
fSize, err := xFile.un7zip(zipFile)
if err != nil {
lastFile := xFile.FilePath
/* // https://github.com/bodgit/sevenzip/issues/54
// We can probably never get the file with the error.
if volumes := sevenZip.Volumes(); len(volumes) > 0 {
lastFile = volumes[len(volumes)-1]
} */
return size, files, sevenZip.Volumes(), fmt.Errorf("%s: %w", lastFile, err)
}
files = append(files, filepath.Join(xFile.OutputDir, zipFile.Name))
size += fSize
}
return size, files, sevenZip.Volumes(), nil
}
func (x *XFile) un7zip(zipFile *sevenzip.File) (int64, error) { //nolint:dupl
wfile := x.clean(zipFile.Name)
if !strings.HasPrefix(wfile, x.OutputDir) {
// The file being written is trying to write outside of our base path. Malicious archive?
return 0, fmt.Errorf("%s: %w: %s (from: %s)", zipFile.FileInfo().Name(), ErrInvalidPath, wfile, zipFile.Name)
}
if strings.HasSuffix(wfile, "/") || zipFile.FileInfo().IsDir() {
if err := os.MkdirAll(wfile, x.DirMode); err != nil {
return 0, fmt.Errorf("making zipFile dir: %w", err)
}
return 0, nil
}
zFile, err := zipFile.Open()
if err != nil {
return 0, fmt.Errorf("zipFile.Open: %w", err)
}
defer zFile.Close()
s, err := writeFile(wfile, zFile, x.FileMode, x.DirMode)
if err != nil {
return s, fmt.Errorf("%s: %w: %s (from: %s)", zipFile.FileInfo().Name(), err, wfile, zipFile.Name)
}
return s, nil
}