aboutsummaryrefslogtreecommitdiffhomepage
path: root/vfs/mangle.go
blob: af7a0463ee12cccaa9a8dc815dd74fdd1e8a6a3d (plain)
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
package vfs

import "strings"

// Unmangle reverses mangling of strings done by the kernel. Its behaviour is
// consistent with the equivalent function in util-linux.
func Unmangle(s string) string {
	if !strings.ContainsRune(s, '\\') {
		return s
	}

	v := make([]byte, len(s))
	var (
		j int
		c byte
	)
	for i := 0; i < len(s); i++ {
		c = s[i]
		if c == '\\' && len(s) > i+3 &&
			(s[i+1] == '0' || s[i+1] == '1') &&
			(s[i+2] >= '0' && s[i+2] <= '7') &&
			(s[i+3] >= '0' && s[i+3] <= '7') {
			c = ((s[i+1] - '0') << 6) |
				((s[i+2] - '0') << 3) |
				(s[i+3] - '0')
			i += 3
		}
		v[j] = c
		j++
	}
	return string(v[:j])
}