2020-10-08 01:34:36 -07:00
|
|
|
package home
|
|
|
|
|
|
|
|
import (
|
2020-11-25 08:09:41 -07:00
|
|
|
"encoding/json"
|
2020-10-08 01:34:36 -07:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2020-11-25 08:09:41 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2020-10-08 01:34:36 -07:00
|
|
|
uuid "github.com/satori/go.uuid"
|
|
|
|
"howett.net/plist"
|
|
|
|
)
|
|
|
|
|
2020-12-07 06:04:53 -07:00
|
|
|
type dnsSettings struct {
|
2020-10-08 01:34:36 -07:00
|
|
|
DNSProtocol string
|
|
|
|
ServerURL string `plist:",omitempty"`
|
|
|
|
ServerName string `plist:",omitempty"`
|
|
|
|
}
|
|
|
|
|
2020-12-07 06:04:53 -07:00
|
|
|
type payloadContent struct {
|
2020-10-08 01:34:36 -07:00
|
|
|
Name string
|
|
|
|
PayloadDescription string
|
|
|
|
PayloadDisplayName string
|
|
|
|
PayloadIdentifier string
|
|
|
|
PayloadType string
|
|
|
|
PayloadUUID string
|
|
|
|
PayloadVersion int
|
2020-12-07 06:04:53 -07:00
|
|
|
DNSSettings dnsSettings
|
2020-10-08 01:34:36 -07:00
|
|
|
}
|
|
|
|
|
2020-12-07 06:04:53 -07:00
|
|
|
type mobileConfig struct {
|
|
|
|
PayloadContent []payloadContent
|
2020-10-08 01:34:36 -07:00
|
|
|
PayloadDescription string
|
|
|
|
PayloadDisplayName string
|
|
|
|
PayloadIdentifier string
|
|
|
|
PayloadRemovalDisallowed bool
|
|
|
|
PayloadType string
|
|
|
|
PayloadUUID string
|
|
|
|
PayloadVersion int
|
|
|
|
}
|
|
|
|
|
|
|
|
func genUUIDv4() string {
|
|
|
|
return uuid.NewV4().String()
|
|
|
|
}
|
|
|
|
|
2020-10-29 09:39:11 -07:00
|
|
|
const (
|
|
|
|
dnsProtoHTTPS = "HTTPS"
|
|
|
|
dnsProtoTLS = "TLS"
|
|
|
|
)
|
|
|
|
|
2020-12-07 06:04:53 -07:00
|
|
|
func getMobileConfig(d dnsSettings) ([]byte, error) {
|
2020-10-29 09:39:11 -07:00
|
|
|
var name string
|
|
|
|
switch d.DNSProtocol {
|
|
|
|
case dnsProtoHTTPS:
|
|
|
|
name = fmt.Sprintf("%s DoH", d.ServerName)
|
2020-11-25 08:09:41 -07:00
|
|
|
d.ServerURL = fmt.Sprintf("https://%s/dns-query", d.ServerName)
|
2020-10-29 09:39:11 -07:00
|
|
|
case dnsProtoTLS:
|
|
|
|
name = fmt.Sprintf("%s DoT", d.ServerName)
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("bad dns protocol %q", d.DNSProtocol)
|
|
|
|
}
|
2020-10-08 01:34:36 -07:00
|
|
|
|
2020-12-07 06:04:53 -07:00
|
|
|
data := mobileConfig{
|
|
|
|
PayloadContent: []payloadContent{{
|
2020-10-08 01:34:36 -07:00
|
|
|
Name: name,
|
|
|
|
PayloadDescription: "Configures device to use AdGuard Home",
|
|
|
|
PayloadDisplayName: name,
|
|
|
|
PayloadIdentifier: fmt.Sprintf("com.apple.dnsSettings.managed.%s", genUUIDv4()),
|
|
|
|
PayloadType: "com.apple.dnsSettings.managed",
|
|
|
|
PayloadUUID: genUUIDv4(),
|
|
|
|
PayloadVersion: 1,
|
|
|
|
DNSSettings: d,
|
|
|
|
}},
|
|
|
|
PayloadDescription: "Adds AdGuard Home to Big Sur and iOS 14 or newer systems",
|
|
|
|
PayloadDisplayName: name,
|
|
|
|
PayloadIdentifier: genUUIDv4(),
|
|
|
|
PayloadRemovalDisallowed: false,
|
|
|
|
PayloadType: "Configuration",
|
|
|
|
PayloadUUID: genUUIDv4(),
|
|
|
|
PayloadVersion: 1,
|
|
|
|
}
|
|
|
|
|
|
|
|
return plist.MarshalIndent(data, plist.XMLFormat, "\t")
|
|
|
|
}
|
|
|
|
|
2020-11-25 08:09:41 -07:00
|
|
|
func handleMobileConfig(w http.ResponseWriter, r *http.Request, dnsp string) {
|
|
|
|
host := r.URL.Query().Get("host")
|
|
|
|
if host == "" {
|
|
|
|
host = Context.tls.conf.ServerName
|
|
|
|
}
|
|
|
|
|
|
|
|
if host == "" {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
|
|
|
|
const msg = "no host in query parameters and no server_name"
|
|
|
|
err := json.NewEncoder(w).Encode(&jsonError{
|
|
|
|
Message: msg,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.Debug("writing 500 json response: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-07 06:04:53 -07:00
|
|
|
d := dnsSettings{
|
2020-11-25 08:09:41 -07:00
|
|
|
DNSProtocol: dnsp,
|
|
|
|
ServerName: host,
|
|
|
|
}
|
|
|
|
|
2020-10-29 09:39:11 -07:00
|
|
|
mobileconfig, err := getMobileConfig(d)
|
2020-10-08 01:34:36 -07:00
|
|
|
if err != nil {
|
|
|
|
httpError(w, http.StatusInternalServerError, "plist.MarshalIndent: %s", err)
|
2020-11-25 08:09:41 -07:00
|
|
|
|
|
|
|
return
|
2020-10-08 01:34:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/xml")
|
|
|
|
_, _ = w.Write(mobileconfig)
|
|
|
|
}
|
|
|
|
|
2020-11-25 08:09:41 -07:00
|
|
|
func handleMobileConfigDOH(w http.ResponseWriter, r *http.Request) {
|
|
|
|
handleMobileConfig(w, r, dnsProtoHTTPS)
|
2020-10-08 01:34:36 -07:00
|
|
|
}
|
|
|
|
|
2020-11-25 08:09:41 -07:00
|
|
|
func handleMobileConfigDOT(w http.ResponseWriter, r *http.Request) {
|
|
|
|
handleMobileConfig(w, r, dnsProtoTLS)
|
2020-10-08 01:34:36 -07:00
|
|
|
}
|