-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathreader.go
280 lines (244 loc) · 7.71 KB
/
reader.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
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
package iso9660
import (
"encoding/binary"
"errors"
"fmt"
"io"
"os"
"path/filepath"
"github.com/c4milo/gotoolkit"
)
var (
// ErrInvalidImage is returned when an attempt to unpack the image Primary Volume Descriptor failed or
// when the end of the image was reached without finding a primary volume descriptor
ErrInvalidImage = func(err error) error { return fmt.Errorf("invalid-iso9660-image: %s", err) }
// ErrCorruptedImage is returned when a seek operation, on the image, failed.
ErrCorruptedImage = func(err error) error { return fmt.Errorf("corrupted-image: %s", err) }
)
type imageReader struct {
io.ReadSeeker
}
func (ir *imageReader) ReadAt(p []byte, off int64) (n int, err error) {
// If the underlying ReadSeeker happen to implement ReadAt, let's use it.
if readerAt, ok := ir.ReadSeeker.(io.ReaderAt); ok {
return readerAt.ReadAt(p, off)
}
// If not we are going to emulate it with Seeking and Reading.
// ReadAt should not affect the Seeker's position,
// thus we need to get the current position first, and Seek back to it after we're done.
// 1 means io.SeekCurrent. Not using constant for backwards compatibility.
// 0 means io.SeekStart.
if curPos, err := ir.Seek(0, 1); err == nil {
// We can only Seek back later if we could get the current position
defer ir.Seek(curPos, 0)
}
if _, err = ir.Seek(off, 0); err == nil {
// ReadAt should fill the buffer if there are no errors in the stream, so let's use ReadFull.
n, err = io.ReadFull(ir, p)
if err == io.ErrUnexpectedEOF {
// ReadAt should return EOF instead of ErrUnexpectedEOF
err = io.EOF
}
}
return
}
// Reader defines the state of the ISO9660 image reader. It needs to be instantiated
// from its constructor.
type Reader struct {
// File descriptor to the opened ISO image
image *imageReader
// Copy of unencoded Primary Volume Descriptor
pvd PrimaryVolume
// Queue used to walk through file system iteratively
queue gotoolkit.Queue
// Current sector
sector uint32
// Current bytes read from current sector.
read uint32
}
// NewReader creates a new ISO 9660 image reader.
func NewReader(rs io.ReadSeeker) (*Reader, error) {
// Starts reading from image data area
sector := dataAreaSector
// Iterates over volume descriptors until it finds the primary volume descriptor
// or an error condition.
for {
offset, err := rs.Seek(int64(sector*sectorSize), os.SEEK_SET)
if err != nil {
return nil, ErrCorruptedImage(err)
}
var volDesc VolumeDescriptor
if err := binary.Read(rs, binary.BigEndian, &volDesc); err != nil {
return nil, ErrCorruptedImage(err)
}
if volDesc.Type == primaryVol {
// backs up to the beginning of the sector again in order to unpack
// the entire primary volume descriptor more easily.
if _, err := rs.Seek(offset, os.SEEK_SET); err != nil {
return nil, ErrCorruptedImage(err)
}
reader := new(Reader)
reader.image = &imageReader{rs}
reader.queue = new(gotoolkit.SliceQueue)
if err := reader.unpackPVD(); err != nil {
return nil, ErrCorruptedImage(err)
}
return reader, nil
}
if volDesc.Type == volSetTerminator {
return nil, ErrInvalidImage(errors.New("Volume Set Terminator reached. A Primary Volume Descriptor was not found."))
}
sector++
}
}
// Skip skips the given number of directory records.
func (r *Reader) Skip(n int) error {
var drecord File
var len byte
var err error
for i := 0; i < n; i++ {
if len, err = r.unpackDRecord(&drecord); err != nil {
return err
}
r.read += uint32(len)
}
return nil
}
// Next moves onto the next directory record present in the image.
// It does not use the Path Table since the goal is to read everything
// from the ISO image.
func (r *Reader) Next() (os.FileInfo, error) {
if r.queue.IsEmpty() {
return nil, io.EOF
}
// We only dequeue the directory when it does not contain more children
// or when it is empty and there is no children to iterate over.
item, err := r.queue.Peek()
if err != nil {
panic(err)
}
f := item.(File)
if r.sector == 0 {
r.sector = f.ExtentLocationBE
_, err := r.image.Seek(int64(r.sector*sectorSize), os.SEEK_SET)
if err != nil {
return nil, ErrCorruptedImage(err)
}
// Skips . and .. directories
if err = r.Skip(2); err != nil {
return nil, ErrCorruptedImage(err)
}
}
var drecord File
var len byte
if (r.read % sectorSize) == 0 {
r.sector++
_, err := r.image.Seek(int64(r.sector*sectorSize), os.SEEK_SET)
if err != nil {
return nil, ErrCorruptedImage(err)
}
}
if len, err = r.unpackDRecord(&drecord); err != nil && err != io.EOF {
return nil, ErrCorruptedImage(err)
}
r.read += uint32(len)
if err == io.EOF {
// directory record is empty, sector space wasted, move onto next sector.
rsize := (sectorSize - (r.read % sectorSize))
buf := make([]byte, rsize)
if err := binary.Read(r.image, binary.BigEndian, buf); err != nil {
return nil, ErrCorruptedImage(err)
}
r.read += rsize
}
// If there is no more entries in the current directory, dequeue it.
if r.read >= f.ExtentLengthBE {
r.read = 0
r.sector = 0
r.queue.Dequeue()
}
// End of directory listing, drecord is empty so we don't bother
// to return it and keep iterating to look for the next actual
// directory or file.
if drecord.fileID == "" {
return r.Next()
}
parent := f.Name()
if parent == "\x00" {
parent = "/"
}
drecord.fileID = filepath.Join(parent, drecord.fileID)
if drecord.IsDir() {
r.queue.Enqueue(drecord)
} else {
drecord.image = r.image
}
return &drecord, nil
}
// unpackDRecord unpacks directory record bits into Go's struct
func (r *Reader) unpackDRecord(f *File) (byte, error) {
// Gets the directory record length
var len byte
if err := binary.Read(r.image, binary.BigEndian, &len); err != nil {
return len, ErrCorruptedImage(err)
}
if len == 0 {
return len + 1, io.EOF
}
// Reads directory record into Go struct
var drecord DirectoryRecord
if err := binary.Read(r.image, binary.BigEndian, &drecord); err != nil {
return len, ErrCorruptedImage(err)
}
f.DirectoryRecord = drecord
// Gets the name
name := make([]byte, drecord.FileIDLength)
if err := binary.Read(r.image, binary.BigEndian, name); err != nil {
return len, ErrCorruptedImage(err)
}
f.fileID = string(name)
// Padding field as per section 9.1.12 in ECMA-119
if (drecord.FileIDLength % 2) == 0 {
var zero byte
if err := binary.Read(r.image, binary.BigEndian, &zero); err != nil {
return len, ErrCorruptedImage(err)
}
}
// System use field as per section 9.1.13 in ECMA-119
// Directory record has 34 bytes in addition to the name's
// variable length and the padding field mentioned in section 9.1.12
totalLen := 34 + drecord.FileIDLength - (drecord.FileIDLength % 2)
sysUseLen := int64(len - totalLen)
if sysUseLen > 0 {
sysData := make([]byte, sysUseLen)
if err := binary.Read(r.image, binary.BigEndian, sysData); err != nil {
return len, ErrCorruptedImage(err)
}
}
return len, nil
}
// unpackPVD unpacks Primary Volume Descriptor in three phases. This is
// because the root directory record is a variable-length record and Go's binary
// package doesn't support unpacking variable-length structs easily.
func (r *Reader) unpackPVD() error {
// Unpack first half
var pvd1 PrimaryVolumePart1
if err := binary.Read(r.image, binary.BigEndian, &pvd1); err != nil {
return ErrCorruptedImage(err)
}
r.pvd.PrimaryVolumePart1 = pvd1
// Unpack root directory record
var drecord File
if _, err := r.unpackDRecord(&drecord); err != nil {
return ErrCorruptedImage(err)
}
r.pvd.DirectoryRecord = drecord.DirectoryRecord
r.queue.Enqueue(drecord)
// Unpack second half
var pvd2 PrimaryVolumePart2
if err := binary.Read(r.image, binary.BigEndian, &pvd2); err != nil {
return ErrCorruptedImage(err)
}
r.pvd.PrimaryVolumePart2 = pvd2
return nil
}