import (
"fmt"
+ "os"
"github.com/BurntSushi/toml"
)
Url string
Path string
CA string
+ Username string
+ Password string
body []byte // internally used by handleFiles()
}
return nil, fmt.Errorf("invalid fields used: %q", undecoded)
}
+ f, err := os.Stat(path)
+ if err != nil {
+ return nil, err
+ }
+ perms := f.Mode().Perm()
+ unsafe := (perms & 0077) != 0 // readable by others
+
if cfg.StatePath == "" {
return nil, fmt.Errorf("statepath must not be empty")
}
return nil, fmt.Errorf(
"file[%d].path must not be empty", i)
}
+ if (f.Username != "" || f.Password != "") && unsafe {
+ return nil, fmt.Errorf(
+ "file[%d].username/passsword in use and "+
+ "unsafe permissions %v on %q",
+ i, perms, path)
+ }
}
return &cfg, nil
clients[""] = &http.Client{}
}
-func fetchIfModified(url, ca string, lastModified *time.Time) (int, []byte, error) {
+func fetchIfModified(url, user, pass, ca string, lastModified *time.Time) (int, []byte, error) {
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return 0, nil, err
}
+ if user != "" || pass != "" {
+ req.SetBasicAuth(user, pass)
+ }
if !lastModified.IsZero() {
req.Header.Add("If-Modified-Since",
lastModified.UTC().Format(http.TimeFormat))
}
}
+func hashAsHex(x []byte) string {
+ h := sha1.New()
+ h.Write(x)
+ return hex.EncodeToString(h.Sum(nil))
+}
+
// mustHaveHash checks if the given path content has the given SHA-1 string
// (in hex).
func mustHaveHash(t *testing.T, path string, hash string) {
t.Fatal(err)
}
- h := sha1.New()
- h.Write(x)
- y := hex.EncodeToString(h.Sum(nil))
-
+ y := hashAsHex(x)
if y != hash {
t.Errorf("%q has unexpected hash %q", path, y)
}
fetchStateCannotWrite,
fetchCannotDeploy,
fetchSecondFetchFails,
+ fetchBasicAuth,
}
// HTTP tests
mustBeOld(t, passwdPath, groupPath)
}
+func fetchBasicAuth(a args) {
+ t := a.t
+ mustWritePasswdConfig(t, a.url)
+ mustCreate(t, passwdPath)
+ mustHaveHash(t, passwdPath, "da39a3ee5e6b4b0d3255bfef95601890afd80709")
+
+ validUser := "username"
+ validPass := "password"
+
+ *a.handler = func(w http.ResponseWriter, r *http.Request) {
+ if r.URL.Path != "/passwd" {
+ return
+ }
+
+ user, pass, ok := r.BasicAuth()
+ // NOTE: Do not use this in production because it permits
+ // attackers to determine the length of user/pass. Instead use
+ // hashes and subtle.ConstantTimeCompare().
+ if !ok || user != validUser || pass != validPass {
+ w.Header().Set("WWW-Authenticate", `Basic realm="Test"`)
+ w.WriteHeader(http.StatusUnauthorized)
+ return
+ }
+
+ fmt.Fprintln(w, "root:x:0:0:root:/root:/bin/bash")
+ fmt.Fprintln(w, "daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin")
+ }
+
+ t.Log("Missing authentication")
+
+ err := mainFetch(configPath)
+ mustBeErrorWithSubstring(t, err,
+ "status code 401")
+
+ mustNotExist(t, statePath, groupPath, plainPath)
+ mustBeOld(t, passwdPath)
+
+ t.Log("Unsafe config permissions")
+
+ mustWriteConfig(t, fmt.Sprintf(`
+statepath = "%[1]s"
+
+[[file]]
+type = "passwd"
+url = "%[2]s/passwd"
+path = "%[3]s"
+ca = "%[4]s"
+username = "%[5]s"
+password = "%[6]s"
+`, statePath, a.url, passwdPath, tlsCAPath, validUser, validPass))
+
+ err = os.Chmod(configPath, 0644)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ err = mainFetch(configPath)
+ mustBeErrorWithSubstring(t, err,
+ "file[0].username/passsword in use and unsafe permissions "+
+ "-rw-r--r-- on \"testdata/config.toml\"")
+
+ mustNotExist(t, statePath, groupPath, plainPath)
+ mustBeOld(t, passwdPath)
+
+ t.Log("Working authentication")
+
+ err = os.Chmod(configPath, 0600)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ err = mainFetch(configPath)
+ if err != nil {
+ t.Error(err)
+ }
+
+ mustNotExist(t, plainPath, groupPath)
+ mustBeNew(t, passwdPath, statePath)
+ mustHaveHash(t, passwdPath, "bbb7db67469b111200400e2470346d5515d64c23")
+}
+
func fetchInvalidCA(a args) {
t := a.t