This file is indexed.

/usr/share/gocode/src/bazil.org/fuse/fs/fstestutil/mountinfo_darwin.go is in golang-bazil-fuse-dev 0.0~git20160811.0.371fbbd-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
package fstestutil

import (
	"regexp"
	"syscall"
)

var re = regexp.MustCompile(`\\(.)`)

// unescape removes backslash-escaping. The escaped characters are not
// mapped in any way; that is, unescape(`\n` ) == `n`.
func unescape(s string) string {
	return re.ReplaceAllString(s, `$1`)
}

func getMountInfo(mnt string) (*MountInfo, error) {
	var st syscall.Statfs_t
	err := syscall.Statfs(mnt, &st)
	if err != nil {
		return nil, err
	}
	i := &MountInfo{
		// osx getmntent(3) fails to un-escape the data, so we do it..
		// this might lead to double-unescaping in the future. fun.
		// TestMountOptionFSNameEvilBackslashDouble checks for that.
		FSName: unescape(cstr(st.Mntfromname[:])),
	}
	return i, nil
}