2014-11-16 13:13:20 -07:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 12:43:32 -07:00
|
|
|
//
|
2015-03-07 13:36:35 -07:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at http://mozilla.org/MPL/2.0/.
|
2014-09-03 23:31:38 -07:00
|
|
|
|
2014-06-04 12:20:07 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
2014-07-06 06:00:44 -07:00
|
|
|
"strings"
|
2014-06-04 12:20:07 -07:00
|
|
|
"time"
|
|
|
|
|
2014-09-22 12:42:11 -07:00
|
|
|
"github.com/syncthing/syncthing/internal/osutil"
|
2015-04-22 15:54:31 -07:00
|
|
|
"github.com/syncthing/syncthing/internal/sync"
|
2014-06-04 12:20:07 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
var csrfTokens []string
|
2015-04-28 13:32:10 -07:00
|
|
|
var csrfMut = sync.NewMutex()
|
2014-06-04 12:20:07 -07:00
|
|
|
|
|
|
|
// Check for CSRF token on /rest/ URLs. If a correct one is not given, reject
|
|
|
|
// the request with 403. For / and /index.html, set a new CSRF cookie if none
|
|
|
|
// is currently set.
|
2014-09-01 13:51:44 -07:00
|
|
|
func csrfMiddleware(prefix, apiKey string, next http.Handler) http.Handler {
|
|
|
|
loadCsrfTokens()
|
2014-07-05 12:40:29 -07:00
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// Allow requests carrying a valid API key
|
2014-09-01 13:51:44 -07:00
|
|
|
if apiKey != "" && r.Header.Get("X-API-Key") == apiKey {
|
2014-07-05 12:40:29 -07:00
|
|
|
next.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow requests for the front page, and set a CSRF cookie if there isn't already a valid one.
|
2014-07-06 06:00:44 -07:00
|
|
|
if !strings.HasPrefix(r.URL.Path, prefix) {
|
2014-07-05 12:40:29 -07:00
|
|
|
cookie, err := r.Cookie("CSRF-Token")
|
|
|
|
if err != nil || !validCsrfToken(cookie.Value) {
|
|
|
|
cookie = &http.Cookie{
|
|
|
|
Name: "CSRF-Token",
|
|
|
|
Value: newCsrfToken(),
|
|
|
|
}
|
|
|
|
http.SetCookie(w, cookie)
|
|
|
|
}
|
|
|
|
next.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
}
|
2014-06-05 00:16:12 -07:00
|
|
|
|
2014-08-01 23:19:10 -07:00
|
|
|
if r.Method == "GET" {
|
|
|
|
// Allow GET requests unconditionally
|
|
|
|
next.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-07-05 12:40:29 -07:00
|
|
|
// Verify the CSRF token
|
2014-06-04 12:20:07 -07:00
|
|
|
token := r.Header.Get("X-CSRF-Token")
|
|
|
|
if !validCsrfToken(token) {
|
|
|
|
http.Error(w, "CSRF Error", 403)
|
2014-07-05 12:40:29 -07:00
|
|
|
return
|
2014-06-04 12:20:07 -07:00
|
|
|
}
|
2014-07-05 12:40:29 -07:00
|
|
|
|
|
|
|
next.ServeHTTP(w, r)
|
|
|
|
})
|
2014-06-04 12:20:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func validCsrfToken(token string) bool {
|
|
|
|
csrfMut.Lock()
|
|
|
|
defer csrfMut.Unlock()
|
|
|
|
for _, t := range csrfTokens {
|
|
|
|
if t == token {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func newCsrfToken() string {
|
2014-12-07 08:41:24 -07:00
|
|
|
token := randomString(32)
|
2014-06-04 12:20:07 -07:00
|
|
|
|
|
|
|
csrfMut.Lock()
|
|
|
|
csrfTokens = append(csrfTokens, token)
|
|
|
|
if len(csrfTokens) > 10 {
|
|
|
|
csrfTokens = csrfTokens[len(csrfTokens)-10:]
|
|
|
|
}
|
|
|
|
defer csrfMut.Unlock()
|
|
|
|
|
|
|
|
saveCsrfTokens()
|
|
|
|
|
|
|
|
return token
|
|
|
|
}
|
|
|
|
|
|
|
|
func saveCsrfTokens() {
|
2015-03-29 03:55:27 -07:00
|
|
|
name := locations[locCsrfTokens]
|
2014-06-04 12:20:07 -07:00
|
|
|
tmp := fmt.Sprintf("%s.tmp.%d", name, time.Now().UnixNano())
|
|
|
|
|
|
|
|
f, err := os.OpenFile(tmp, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0644)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer os.Remove(tmp)
|
|
|
|
|
|
|
|
for _, t := range csrfTokens {
|
|
|
|
_, err := fmt.Fprintln(f, t)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err = f.Close()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
osutil.Rename(tmp, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadCsrfTokens() {
|
2015-03-29 03:55:27 -07:00
|
|
|
f, err := os.Open(locations[locCsrfTokens])
|
2014-06-04 12:20:07 -07:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
s := bufio.NewScanner(f)
|
|
|
|
for s.Scan() {
|
|
|
|
csrfTokens = append(csrfTokens, s.Text())
|
|
|
|
}
|
|
|
|
}
|