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
413
414
415
416
|
/*
* mountpoint_test.go - Tests for reading information about all mountpoints.
*
* Copyright 2017 Google Inc.
* Author: Joe Richey (joerichey@google.com)
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
// Note: these tests assume the existence of some well-known directories and
// devices: /mnt, /home, /tmp, and /dev/loop0. This is because the mountpoint
// loading code only retains mountpoints on valid directories, and only retains
// device names for valid device nodes.
package filesystem
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"testing"
)
func TestLoadMountInfo(t *testing.T) {
if err := UpdateMountInfo(); err != nil {
t.Error(err)
}
}
// Lock the mount maps so that concurrent tests don't interfere with each other.
func beginLoadMountInfoTest() {
mountMutex.Lock()
}
func endLoadMountInfoTest() {
// Invalidate the fake mount information in case a test runs later which
// needs the real mount information.
mountsInitialized = false
mountMutex.Unlock()
}
func loadMountInfoFromString(str string) {
readMountInfo(strings.NewReader(str))
}
func mountForDevice(deviceNumberStr string) *Mount {
deviceNumber, _ := newDeviceNumberFromString(deviceNumberStr)
return mountsByDevice[deviceNumber]
}
// Test basic loading of a single mountpoint.
func TestLoadMountInfoBasic(t *testing.T) {
var mountinfo = `
15 0 259:3 / / rw,relatime shared:1 - ext4 /dev/root rw,data=ordered
`
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
if len(mountsByDevice) != 1 {
t.Error("Loaded wrong number of mounts")
}
mnt := mountForDevice("259:3")
if mnt == nil {
t.Fatal("Failed to load mount")
}
if mnt.Path != "/" {
t.Error("Wrong path")
}
if mnt.FilesystemType != "ext4" {
t.Error("Wrong filesystem type")
}
if mnt.DeviceNumber.String() != "259:3" {
t.Error("Wrong device number")
}
if mnt.Subtree != "/" {
t.Error("Wrong subtree")
}
if mnt.ReadOnly {
t.Error("Wrong readonly flag")
}
}
// Test that Mount.Device is set to the mountpoint's source device if
// applicable, otherwise it is set to the empty string.
func TestLoadSourceDevice(t *testing.T) {
var mountinfo = `
15 0 7:0 / / rw shared:1 - foo /dev/loop0 rw,data=ordered
31 15 0:27 / /tmp rw,nosuid,nodev shared:17 - tmpfs tmpfs rw
`
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
mnt := mountForDevice("7:0")
if mnt.Device != "/dev/loop0" {
t.Error("mnt.Device wasn't set to source device")
}
mnt = mountForDevice("0:27")
if mnt.Device != "" {
t.Error("mnt.Device wasn't set to empty string for an invalid device")
}
}
// Test that non-directory mounts are ignored.
func TestNondirectoryMountsIgnored(t *testing.T) {
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
file, err := ioutil.TempFile("", "fscrypt_regfile")
if err != nil {
t.Fatal(err)
}
file.Close()
defer os.Remove(file.Name())
mountinfo := fmt.Sprintf("15 0 259:3 /foo %s rw,relatime shared:1 - ext4 /dev/root rw", file.Name())
loadMountInfoFromString(mountinfo)
if len(mountsByDevice) != 0 {
t.Error("Non-directory mount wasn't ignored")
}
}
// Test that when multiple mounts are on one directory, the last is the one
// which is kept.
func TestNonLatestMountsIgnored(t *testing.T) {
mountinfo := `
15 0 259:3 / / rw shared:1 - ext4 /dev/root rw
15 0 259:3 / / rw shared:1 - f2fs /dev/root rw
15 0 259:3 / / rw shared:1 - ubifs /dev/root rw
`
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
mnt := mountForDevice("259:3")
if mnt.FilesystemType != "ubifs" {
t.Error("Last mount didn't supersede previous ones")
}
}
// Test that escape sequences in the mountinfo file are unescaped correctly.
func TestLoadMountWithSpecialCharacters(t *testing.T) {
tempDir, err := ioutil.TempDir("", "fscrypt")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tempDir)
tempDir, err = filepath.Abs(tempDir)
if err != nil {
t.Fatal(err)
}
mountpoint := filepath.Join(tempDir, "/My Directory\t\n\\")
if err := os.Mkdir(mountpoint, 0700); err != nil {
t.Fatal(err)
}
mountinfo := fmt.Sprintf("15 0 259:3 / %s/My\\040Directory\\011\\012\\134 rw shared:1 - ext4 /dev/root rw", tempDir)
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
mnt := mountForDevice("259:3")
if mnt.Path != mountpoint {
t.Fatal("Wrong mountpoint")
}
}
// Test parsing some invalid mountinfo lines.
func TestLoadBadMountInfo(t *testing.T) {
mountinfos := []string{"a",
"a a a a a a a a a a a a a a a",
"a a a a a a a a a a a a - a a",
"15 0 BAD:3 / / rw,relatime shared:1 - ext4 /dev/root rw,data=ordered"}
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
for _, mountinfo := range mountinfos {
loadMountInfoFromString(mountinfo)
if len(mountsByDevice) != 0 {
t.Error("Loaded mount from invalid mountinfo line")
}
}
}
// Test that the ReadOnly flag is set if the mount is readonly, even if the
// filesystem is read-write.
func TestLoadReadOnlyMount(t *testing.T) {
mountinfo := `
222 15 259:3 / /mnt ro,relatime shared:1 - ext4 /dev/root rw,data=ordered
`
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
mnt := mountForDevice("259:3")
if !mnt.ReadOnly {
t.Error("Wrong readonly flag")
}
}
// Test that a read-write mount is preferred over a read-only mount.
func TestReadWriteMountIsPreferredOverReadOnlyMount(t *testing.T) {
mountinfo := `
222 15 259:3 / /home ro shared:1 - ext4 /dev/root rw
222 15 259:3 / /mnt rw shared:1 - ext4 /dev/root rw
222 15 259:3 / /tmp ro shared:1 - ext4 /dev/root rw
`
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
mnt := mountForDevice("259:3")
if mnt.Path != "/mnt" {
t.Error("Wrong mount was chosen")
}
}
// Test that a mount of the full filesystem is preferred over mounts of non-root
// subtrees, given independent mountpoints.
func TestRootSubtreeIsPreferred(t *testing.T) {
mountinfo := `
222 15 259:3 /subtree1 /home rw shared:1 - ext4 /dev/root rw
222 15 259:3 / /mnt rw shared:1 - ext4 /dev/root rw
222 15 259:3 /subtree2 /tmp rw shared:1 - ext4 /dev/root rw
`
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
mnt := mountForDevice("259:3")
if mnt.Subtree != "/" {
t.Error("Wrong mount was chosen")
}
}
// Test that a mount that is not of the full filesystem but still contains all
// other mounted subtrees is preferred, given independent mountpoints.
func TestHighestSubtreeIsPreferred(t *testing.T) {
mountinfo := `
222 15 259:3 /foo/bar /mnt rw shared:1 - ext4 /dev/root rw
222 15 259:3 /foo /tmp rw shared:1 - ext4 /dev/root rw
222 15 259:3 /foo/baz /home rw shared:1 - ext4 /dev/root rw
`
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
deviceNumber, _ := newDeviceNumberFromString("259:3")
mnt := mountsByDevice[deviceNumber]
if mnt.Subtree != "/foo" {
t.Error("Wrong mount was chosen")
}
}
// Test that mountpoint "/" is preferred, given independent subtrees.
func TestRootMountpointIsPreferred(t *testing.T) {
mountinfo := `
222 15 259:3 /var/cache/pacman/pkg /mnt rw shared:1 - ext4 /dev/root rw
222 15 259:3 /var/lib/lxc/base/rootfs / rw shared:1 - ext4 /dev/root rw
222 15 259:3 /srv/repo/x86_64 /home rw shared:1 - ext4 /dev/root rw
`
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
deviceNumber, _ := newDeviceNumberFromString("259:3")
mnt := mountsByDevice[deviceNumber]
if mnt.Subtree != "/var/lib/lxc/base/rootfs" {
t.Error("Wrong mount was chosen")
}
}
// Test that a mountpoint that is not "/" but still contains all other
// mountpoints is preferred, given independent subtrees.
func TestHighestMountpointIsPreferred(t *testing.T) {
tempDir, err := ioutil.TempDir("", "fscrypt")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tempDir)
tempDir, err = filepath.Abs(tempDir)
if err != nil {
t.Fatal(err)
}
if err := os.MkdirAll(tempDir+"/a/b", 0700); err != nil {
t.Fatal(err)
}
if err := os.Mkdir(tempDir+"/a/c", 0700); err != nil {
t.Fatal(err)
}
mountinfo := fmt.Sprintf(`
222 15 259:3 /0 %s rw shared:1 - ext4 /dev/root rw
222 15 259:3 /1 %s rw shared:1 - ext4 /dev/root rw
222 15 259:3 /2 %s rw shared:1 - ext4 /dev/root rw
`, tempDir+"/a/b", tempDir+"/a", tempDir+"/a/c")
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
deviceNumber, _ := newDeviceNumberFromString("259:3")
mnt := mountsByDevice[deviceNumber]
if mnt.Subtree != "/1" {
t.Error("Wrong mount was chosen")
}
}
// Test that if some subtrees are contained in other subtrees, *and* some
// mountpoints are contained in other mountpoints, the chosen Mount is the root
// of a tree of mountpoints whose mounted subtrees contain all mounted subtrees.
func TestLoadContainedSubtreesAndMountpoints(t *testing.T) {
tempDir, err := ioutil.TempDir("", "fscrypt")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tempDir)
tempDir, err = filepath.Abs(tempDir)
if err != nil {
t.Fatal(err)
}
if err := os.MkdirAll(tempDir+"/a/b", 0700); err != nil {
t.Fatal(err)
}
if err := os.Mkdir(tempDir+"/a/c", 0700); err != nil {
t.Fatal(err)
}
if err := os.Mkdir(tempDir+"/d", 0700); err != nil {
t.Fatal(err)
}
if err := os.Mkdir(tempDir+"/e", 0700); err != nil {
t.Fatal(err)
}
// The first three mounts form a tree of mountpoints. The rest have
// independent mountpoints but have mounted subtrees contained in the
// mounted subtrees of the first mountpoint tree.
mountinfo := fmt.Sprintf(`
222 15 259:3 /0 %s rw shared:1 - ext4 /dev/root rw
222 15 259:3 /1 %s rw shared:1 - ext4 /dev/root rw
222 15 259:3 /2 %s rw shared:1 - ext4 /dev/root rw
222 15 259:3 /1/3 %s rw shared:1 - ext4 /dev/root rw
222 15 259:3 /2/4 %s rw shared:1 - ext4 /dev/root rw
`, tempDir+"/a/b", tempDir+"/a", tempDir+"/a/c",
tempDir+"/d", tempDir+"/e")
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
deviceNumber, _ := newDeviceNumberFromString("259:3")
mnt := mountsByDevice[deviceNumber]
if mnt.Subtree != "/1" {
t.Error("Wrong mount was chosen")
}
}
// Test loading mounts with independent subtrees *and* independent mountpoints.
// This case is ambiguous, so an explicit nil entry should be stored.
func TestLoadAmbiguousMounts(t *testing.T) {
mountinfo := `
222 15 259:3 /foo /mnt rw shared:1 - ext4 /dev/root rw
222 15 259:3 /bar /tmp rw shared:1 - ext4 /dev/root rw
`
beginLoadMountInfoTest()
defer endLoadMountInfoTest()
loadMountInfoFromString(mountinfo)
deviceNumber, _ := newDeviceNumberFromString("259:3")
mnt, ok := mountsByDevice[deviceNumber]
if !ok {
t.Error("Entry should exist")
}
if mnt != nil {
t.Error("Entry should be nil")
}
}
// Test making a filesystem link (i.e. "UUID=...") and following it, and test
// that leading and trailing whitespace in the link is ignored.
func TestGetMountFromLink(t *testing.T) {
mnt, err := getTestMount(t)
if err != nil {
t.Skip(err)
}
link, err := makeLink(mnt, uuidToken)
if err != nil {
t.Fatal(err)
}
linkedMnt, err := getMountFromLink(link)
if err != nil {
t.Fatal(err)
}
if linkedMnt != mnt {
t.Fatal("Link doesn't point to the same Mount")
}
if linkedMnt, err = getMountFromLink(link + "\n"); err != nil {
t.Fatal(err)
}
if linkedMnt != mnt {
t.Fatal("Link doesn't point to the same Mount")
}
if linkedMnt, err = getMountFromLink(" " + link + " \r\n"); err != nil {
t.Fatal(err)
}
if linkedMnt != mnt {
t.Fatal("Link doesn't point to the same Mount")
}
}
// Benchmarks how long it takes to update the mountpoint data
func BenchmarkLoadFirst(b *testing.B) {
for n := 0; n < b.N; n++ {
err := UpdateMountInfo()
if err != nil {
b.Fatal(err)
}
}
}
|