forked from direnv/direnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrc.go
253 lines (208 loc) · 4.78 KB
/
rc.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
package main
import (
"crypto/sha256"
"fmt"
"io"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"strings"
"time"
)
type RC struct {
path string
allowPath string
times FileTimes
config *Config
}
func FindRC(wd string, config *Config) *RC {
rcPath := findUp(wd, ".envrc")
if rcPath == "" {
return nil
}
return RCFromPath(rcPath, config)
}
func RCFromPath(path string, config *Config) *RC {
hash, err := fileHash(path)
if err != nil {
return nil
}
allowPath := filepath.Join(config.AllowDir(), hash)
times := NewFileTimes()
times.Update(path)
times.Update(allowPath)
return &RC{path, allowPath, times, config}
}
func RCFromEnv(path, marshalled_times string, config *Config) *RC {
times := NewFileTimes()
times.Unmarshal(marshalled_times)
return &RC{path, "", times, config}
}
func (self *RC) Allow() (err error) {
if self.allowPath == "" {
return fmt.Errorf("Cannot allow empty path")
}
if err = os.MkdirAll(filepath.Dir(self.allowPath), 0755); err != nil {
return
}
if err = allow(self.path, self.allowPath); err != nil {
return
}
self.times.Update(self.allowPath)
return
}
func (self *RC) Deny() error {
return os.Remove(self.allowPath)
}
func (self *RC) Allowed() bool {
// happy path is if this envrc has been explicitly allowed, O(1)ish common case
_, err := os.Stat(self.allowPath)
if err == nil {
return true
}
// when whitelisting we want to be (path) absolutely sure we've not been duped with a symlink
path, err := filepath.Abs(self.path)
// seems unlikely that we'd hit this, but have to handle it
if err != nil {
return false
}
// exact whitelists are O(1)ish to check, so look there first
if self.config.WhitelistExact[path] {
return true
}
// finally we check if any of our whitelist prefixes match
for _, prefix := range self.config.WhitelistPrefix {
if strings.HasPrefix(path, prefix) {
return true
}
}
return false
}
// Makes the path relative to the current directory. Except when both paths
// are completely different.
// Eg: /home/foo and /home/bar => ../foo
// But: /home/foo and /tmp/bar => /home/foo
func (self *RC) RelTo(wd string) string {
if rootDir(wd) != rootDir(self.path) {
return self.path
}
x, err := filepath.Rel(wd, self.path)
if err != nil {
panic(err)
}
return x
}
func (self *RC) Touch() error {
return touch(self.path)
}
const NOT_ALLOWED = "%s is blocked. Run `direnv allow` to approve its content."
func (self *RC) Load(config *Config, env Env) (newEnv Env, err error) {
wd := config.WorkDir
direnv := config.SelfPath
newEnv = env.Copy()
newEnv[DIRENV_WATCHES] = self.times.Marshal()
defer func() {
self.RecordState(env, newEnv)
}()
if !self.Allowed() {
err = fmt.Errorf(NOT_ALLOWED, self.RelTo(wd))
return
}
argtmpl := `eval "$("%s" stdlib)" >&2 && source_env "%s" >&2 && "%s" dump`
arg := fmt.Sprintf(argtmpl, direnv, self.RelTo(wd), direnv)
cmd := exec.Command(config.BashPath, "--noprofile", "--norc", "-c", arg)
if config.DisableStdin {
cmd.Stdin, err = os.Open(os.DevNull)
if err != nil {
return
}
} else {
cmd.Stdin = os.Stdin
}
cmd.Stderr = os.Stderr
cmd.Env = newEnv.ToGoEnv()
cmd.Dir = wd
out, err := cmd.Output()
if err != nil {
return
}
newEnv2, err := LoadEnv(string(out))
if err != nil {
return
}
newEnv = newEnv2
return
}
func (self *RC) RecordState(env Env, newEnv Env) {
newEnv[DIRENV_DIR] = "-" + filepath.Dir(self.path)
newEnv[DIRENV_DIFF] = env.Diff(newEnv).Serialize()
}
/// Utils
func rootDir(path string) string {
path, err := filepath.Abs(path)
if err != nil {
panic(err)
}
i := strings.Index(path[1:], "/")
if i < 0 {
return path
}
return path[:i+1]
}
func eachDir(path string) (paths []string) {
path, err := filepath.Abs(path)
if err != nil {
return
}
paths = []string{path}
if path == "/" {
return
}
for i := len(path) - 1; i >= 0; i-- {
if path[i] == os.PathSeparator {
path = path[:i]
if path == "" {
path = "/"
}
paths = append(paths, path)
}
}
return
}
func fileExists(path string) bool {
_, err := os.Stat(path)
return err == nil
}
func fileHash(path string) (hash string, err error) {
if path, err = filepath.Abs(path); err != nil {
return
}
fd, err := os.Open(path)
if err != nil {
return
}
hasher := sha256.New()
hasher.Write([]byte(path + "\n"))
if _, err = io.Copy(hasher, fd); err != nil {
return
}
return fmt.Sprintf("%x", hasher.Sum(nil)), nil
}
// Creates a file
func touch(path string) (err error) {
t := time.Now()
return os.Chtimes(path, t, t)
}
func allow(path string, allowPath string) (err error) {
return ioutil.WriteFile(allowPath, []byte(path+"\n"), 0644)
}
func findUp(searchDir string, fileName string) (path string) {
for _, dir := range eachDir(searchDir) {
path = filepath.Join(dir, fileName)
if fileExists(path) {
return
}
}
return ""
}