2019-06-10 01:33:19 -07:00
|
|
|
package home
|
2018-08-30 07:25:33 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2020-02-13 08:42:07 -07:00
|
|
|
"net"
|
2018-08-30 07:25:33 -07:00
|
|
|
"net/http"
|
2020-02-13 08:42:07 -07:00
|
|
|
"net/url"
|
2020-11-16 09:01:12 -07:00
|
|
|
"runtime"
|
2020-02-13 08:42:07 -07:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
2020-10-30 03:32:02 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dnsforward"
|
2019-02-27 08:28:09 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2019-04-15 06:21:12 -07:00
|
|
|
"github.com/NYTimes/gziphandler"
|
2018-08-30 07:25:33 -07:00
|
|
|
)
|
|
|
|
|
2019-02-10 10:47:43 -07:00
|
|
|
// ----------------
|
|
|
|
// helper functions
|
|
|
|
// ----------------
|
|
|
|
|
|
|
|
func returnOK(w http.ResponseWriter) {
|
|
|
|
_, err := fmt.Fprintf(w, "OK\n")
|
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Couldn't write body: %s", err)
|
2019-02-10 10:47:43 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func httpError(w http.ResponseWriter, code int, format string, args ...interface{}) {
|
|
|
|
text := fmt.Sprintf(format, args...)
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Info(text)
|
2019-02-10 10:47:43 -07:00
|
|
|
http.Error(w, text, code)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------
|
2018-12-05 10:29:00 -07:00
|
|
|
// dns run control
|
2019-02-10 10:47:43 -07:00
|
|
|
// ---------------
|
2019-07-02 02:19:36 -07:00
|
|
|
func addDNSAddress(dnsAddresses *[]string, addr string) {
|
|
|
|
if config.DNS.Port != 53 {
|
|
|
|
addr = fmt.Sprintf("%s:%d", addr, config.DNS.Port)
|
|
|
|
}
|
|
|
|
*dnsAddresses = append(*dnsAddresses, addr)
|
|
|
|
}
|
2019-03-19 04:14:58 -07:00
|
|
|
|
2019-07-02 02:19:36 -07:00
|
|
|
func handleStatus(w http.ResponseWriter, r *http.Request) {
|
2019-10-30 01:52:58 -07:00
|
|
|
c := dnsforward.FilteringConfig{}
|
2019-12-11 02:38:58 -07:00
|
|
|
if Context.dnsServer != nil {
|
|
|
|
Context.dnsServer.WriteDiskConfig(&c)
|
2019-10-30 01:52:58 -07:00
|
|
|
}
|
2020-11-16 09:01:12 -07:00
|
|
|
|
2018-08-30 07:25:33 -07:00
|
|
|
data := map[string]interface{}{
|
2019-10-30 01:52:58 -07:00
|
|
|
"dns_addresses": getDNSAddresses(),
|
|
|
|
"http_port": config.BindPort,
|
|
|
|
"dns_port": config.DNS.Port,
|
|
|
|
"running": isRunning(),
|
|
|
|
"version": versionString,
|
|
|
|
"language": config.Language,
|
|
|
|
|
|
|
|
"protection_enabled": c.ProtectionEnabled,
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2020-11-16 09:01:12 -07:00
|
|
|
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
// Set the DHCP to false explicitly, because Context.dhcpServer
|
|
|
|
// is probably not nil, despite the fact that there is no
|
|
|
|
// support for DHCP on Windows in AdGuardHome.
|
|
|
|
//
|
|
|
|
// See also the TODO in dhcpd.Create.
|
|
|
|
data["dhcp_available"] = false
|
|
|
|
} else {
|
|
|
|
data["dhcp_available"] = (Context.dhcpServer != nil)
|
|
|
|
}
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2018-10-20 09:58:39 -07:00
|
|
|
jsonVal, err := json.Marshal(data)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to marshal status json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2018-10-20 09:58:39 -07:00
|
|
|
_, err = w.Write(jsonVal)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to write response json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-21 07:44:07 -07:00
|
|
|
type profileJSON struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleGetProfile(w http.ResponseWriter, r *http.Request) {
|
|
|
|
pj := profileJSON{}
|
2020-02-13 08:42:07 -07:00
|
|
|
u := Context.auth.GetCurrentUser(r)
|
2019-10-21 07:44:07 -07:00
|
|
|
pj.Name = u.Name
|
|
|
|
|
|
|
|
data, err := json.Marshal(pj)
|
|
|
|
if err != nil {
|
|
|
|
httpError(w, http.StatusInternalServerError, "json.Marshal: %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_, _ = w.Write(data)
|
|
|
|
}
|
|
|
|
|
2019-02-12 10:02:52 -07:00
|
|
|
// ------------------------
|
|
|
|
// registration of handlers
|
|
|
|
// ------------------------
|
2018-08-30 07:25:33 -07:00
|
|
|
func registerControlHandlers() {
|
2019-08-21 04:39:37 -07:00
|
|
|
httpRegister(http.MethodGet, "/control/status", handleStatus)
|
|
|
|
httpRegister(http.MethodPost, "/control/i18n/change_language", handleI18nChangeLanguage)
|
|
|
|
httpRegister(http.MethodGet, "/control/i18n/current_language", handleI18nCurrentLanguage)
|
2019-01-29 10:41:57 -07:00
|
|
|
http.HandleFunc("/control/version.json", postInstall(optionalAuth(handleGetVersionJSON)))
|
2019-08-21 04:39:37 -07:00
|
|
|
httpRegister(http.MethodPost, "/control/update", handleUpdate)
|
2020-10-08 01:34:36 -07:00
|
|
|
httpRegister(http.MethodGet, "/control/profile", handleGetProfile)
|
2019-08-21 04:39:37 -07:00
|
|
|
|
2020-10-08 01:34:36 -07:00
|
|
|
// No auth is necessary for DOH/DOT configurations
|
|
|
|
http.HandleFunc("/apple/doh.mobileconfig", postInstall(handleMobileConfigDoh))
|
|
|
|
http.HandleFunc("/apple/dot.mobileconfig", postInstall(handleMobileConfigDot))
|
2019-08-29 02:34:07 -07:00
|
|
|
RegisterAuthHandlers()
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2019-08-21 04:39:37 -07:00
|
|
|
|
2019-09-25 05:36:09 -07:00
|
|
|
func httpRegister(method string, url string, handler func(http.ResponseWriter, *http.Request)) {
|
2020-02-27 01:48:59 -07:00
|
|
|
if len(method) == 0 {
|
|
|
|
// "/dns-query" handler doesn't need auth, gzip and isn't restricted by 1 HTTP method
|
|
|
|
http.HandleFunc(url, postInstall(handler))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-08-21 04:39:37 -07:00
|
|
|
http.Handle(url, postInstallHandler(optionalAuthHandler(gziphandler.GzipHandler(ensureHandler(method, handler)))))
|
|
|
|
}
|
2020-02-13 08:42:07 -07:00
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// helper functions for HTTP handlers
|
|
|
|
// ----------------------------------
|
|
|
|
func ensure(method string, handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
log.Debug("%s %v", r.Method, r.URL)
|
|
|
|
|
|
|
|
if r.Method != method {
|
|
|
|
http.Error(w, "This request must be "+method, http.StatusMethodNotAllowed)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if method == "POST" || method == "PUT" || method == "DELETE" {
|
|
|
|
Context.controlLock.Lock()
|
|
|
|
defer Context.controlLock.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
handler(w, r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func ensurePOST(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
|
|
|
return ensure("POST", handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ensureGET(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
|
|
|
return ensure("GET", handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bridge between http.Handler object and Go function
|
|
|
|
type httpHandler struct {
|
|
|
|
handler func(http.ResponseWriter, *http.Request)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *httpHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
h.handler(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ensureHandler(method string, handler func(http.ResponseWriter, *http.Request)) http.Handler {
|
|
|
|
h := httpHandler{}
|
|
|
|
h.handler = ensure(method, handler)
|
|
|
|
return &h
|
|
|
|
}
|
|
|
|
|
|
|
|
// preInstall lets the handler run only if firstRun is true, no redirects
|
|
|
|
func preInstall(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if !Context.firstRun {
|
|
|
|
// if it's not first run, don't let users access it (for example /install.html when configuration is done)
|
|
|
|
http.Error(w, http.StatusText(http.StatusForbidden), http.StatusForbidden)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
handler(w, r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// preInstallStruct wraps preInstall into a struct that can be returned as an interface where necessary
|
|
|
|
type preInstallHandlerStruct struct {
|
|
|
|
handler http.Handler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *preInstallHandlerStruct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
preInstall(p.handler.ServeHTTP)(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
// preInstallHandler returns http.Handler interface for preInstall wrapper
|
|
|
|
func preInstallHandler(handler http.Handler) http.Handler {
|
|
|
|
return &preInstallHandlerStruct{handler}
|
|
|
|
}
|
|
|
|
|
|
|
|
// postInstall lets the handler run only if firstRun is false, and redirects to /install.html otherwise
|
|
|
|
// it also enforces HTTPS if it is enabled and configured
|
|
|
|
func postInstall(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2020-02-18 09:27:09 -07:00
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
if Context.firstRun &&
|
|
|
|
!strings.HasPrefix(r.URL.Path, "/install.") &&
|
2020-05-14 08:37:25 -07:00
|
|
|
!strings.HasPrefix(r.URL.Path, "/assets/") {
|
2020-02-18 09:27:09 -07:00
|
|
|
http.Redirect(w, r, "/install.html", http.StatusFound)
|
2020-02-13 08:42:07 -07:00
|
|
|
return
|
|
|
|
}
|
2020-02-18 09:27:09 -07:00
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
// enforce https?
|
2020-02-19 05:28:06 -07:00
|
|
|
if r.TLS == nil && Context.web.forceHTTPS && Context.web.httpsServer.server != nil {
|
2020-02-13 08:42:07 -07:00
|
|
|
// yes, and we want host from host:port
|
|
|
|
host, _, err := net.SplitHostPort(r.Host)
|
|
|
|
if err != nil {
|
|
|
|
// no port in host
|
|
|
|
host = r.Host
|
|
|
|
}
|
|
|
|
// construct new URL to redirect to
|
|
|
|
newURL := url.URL{
|
|
|
|
Scheme: "https",
|
2020-02-19 05:28:06 -07:00
|
|
|
Host: net.JoinHostPort(host, strconv.Itoa(Context.web.portHTTPS)),
|
2020-02-13 08:42:07 -07:00
|
|
|
Path: r.URL.Path,
|
|
|
|
RawQuery: r.URL.RawQuery,
|
|
|
|
}
|
|
|
|
http.Redirect(w, r, newURL.String(), http.StatusTemporaryRedirect)
|
|
|
|
return
|
|
|
|
}
|
2020-02-18 09:27:09 -07:00
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
|
|
|
handler(w, r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type postInstallHandlerStruct struct {
|
|
|
|
handler http.Handler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *postInstallHandlerStruct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
postInstall(p.handler.ServeHTTP)(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func postInstallHandler(handler http.Handler) http.Handler {
|
|
|
|
return &postInstallHandlerStruct{handler}
|
|
|
|
}
|