mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 10:28:29 -07:00
7a3eda02ce
Squashed commit of the following: commit57466233cb
Merge:2df5f281
867bf545
Author: Andrey Meshkov <am@adguard.com> Date: Thu Feb 13 18:39:15 2020 +0300 Merge branch 'master' into 1069-install-static-ip commit2df5f281c4
Author: Andrey Meshkov <am@adguard.com> Date: Thu Feb 13 18:35:54 2020 +0300 *: lang fix commitb4649a6b27
Merge:c2785253
f61d5f0f
Author: Andrey Meshkov <am@adguard.com> Date: Thu Feb 13 16:47:30 2020 +0300 *(home): fixed issues with setting static IP on Mac commitc27852537d
Author: Andrey Meshkov <am@adguard.com> Date: Thu Feb 13 14:14:30 2020 +0300 +(dhcpd): added static IP for MacOS commitf61d5f0f85
Author: Ildar Kamalov <i.kamalov@adguard.com> Date: Thu Feb 13 14:13:35 2020 +0300 + client: show confirm before setting static IP commit7afa16fbe7
Author: Ildar Kamalov <i.kamalov@adguard.com> Date: Thu Feb 13 13:51:52 2020 +0300 - client: fix text commit019bff0851
Author: Ildar Kamalov <i.kamalov@adguard.com> Date: Thu Feb 13 13:49:16 2020 +0300 - client: pass all params to the check_config request commit194bed72f5
Author: Andrey Meshkov <am@adguard.com> Date: Wed Feb 12 17:12:16 2020 +0300 *: fix home_test commit9359f6b55f
Merge:ae299058
c5ca2a77
Author: Andrey Meshkov <am@adguard.com> Date: Wed Feb 12 15:54:54 2020 +0300 Merge with master commitae2990582d
Author: Andrey Meshkov <am@adguard.com> Date: Wed Feb 12 15:53:36 2020 +0300 *(global): refactoring - moved runtime properties to Context commitd8d48c5386
Author: Andrey Meshkov <am@adguard.com> Date: Wed Feb 12 15:04:25 2020 +0300 *(dhcpd): refactoring, use dhcpd/network_utils where possible commit8d039c572f
Author: Ildar Kamalov <i.kamalov@adguard.com> Date: Fri Feb 7 18:37:39 2020 +0300 - client: fix button position commit26c47e59dd
Author: Ildar Kamalov <i.kamalov@adguard.com> Date: Fri Feb 7 18:08:56 2020 +0300 - client: fix static ip description commitcb12babc46
Author: Andrey Meshkov <am@adguard.com> Date: Fri Feb 7 17:08:39 2020 +0300 *: lower log level for some commands commitd9001ff848
Author: Andrey Meshkov <am@adguard.com> Date: Fri Feb 7 16:17:59 2020 +0300 *(documentation): updated openapi commit1d213d53c8
Merge:8406d7d2
80861860
Author: Andrey Meshkov <am@adguard.com> Date: Fri Feb 7 15:16:46 2020 +0300 *: merge with master commit8406d7d288
Author: Ildar Kamalov <i.kamalov@adguard.com> Date: Fri Jan 31 16:52:22 2020 +0300 - client: fix locales commitfb476b0117
Author: Simon Zolin <s.zolin@adguard.com> Date: Fri Jan 31 13:29:03 2020 +0300 linter commit84b5708e71
Author: Simon Zolin <s.zolin@adguard.com> Date: Fri Jan 31 13:27:53 2020 +0300 linter commit143a86a28a
Author: Simon Zolin <s.zolin@adguard.com> Date: Fri Jan 31 13:26:47 2020 +0300 linter ... and 7 more commits
514 lines
11 KiB
Go
514 lines
11 KiB
Go
package home
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"encoding/binary"
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"fmt"
|
|
"math/rand"
|
|
"net/http"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/golibs/log"
|
|
"github.com/etcd-io/bbolt"
|
|
"golang.org/x/crypto/bcrypt"
|
|
)
|
|
|
|
const cookieTTL = 365 * 24 // in hours
|
|
const sessionCookieName = "agh_session"
|
|
|
|
type session struct {
|
|
userName string
|
|
expire uint32 // expiration time (in seconds)
|
|
}
|
|
|
|
/*
|
|
expire byte[4]
|
|
name_len byte[2]
|
|
name byte[]
|
|
*/
|
|
func (s *session) serialize() []byte {
|
|
var data []byte
|
|
data = make([]byte, 4+2+len(s.userName))
|
|
binary.BigEndian.PutUint32(data[0:4], s.expire)
|
|
binary.BigEndian.PutUint16(data[4:6], uint16(len(s.userName)))
|
|
copy(data[6:], []byte(s.userName))
|
|
return data
|
|
}
|
|
|
|
func (s *session) deserialize(data []byte) bool {
|
|
if len(data) < 4+2 {
|
|
return false
|
|
}
|
|
s.expire = binary.BigEndian.Uint32(data[0:4])
|
|
nameLen := binary.BigEndian.Uint16(data[4:6])
|
|
data = data[6:]
|
|
|
|
if len(data) < int(nameLen) {
|
|
return false
|
|
}
|
|
s.userName = string(data)
|
|
return true
|
|
}
|
|
|
|
// Auth - global object
|
|
type Auth struct {
|
|
db *bbolt.DB
|
|
sessions map[string]*session // session name -> session data
|
|
lock sync.Mutex
|
|
users []User
|
|
sessionTTL uint32 // in seconds
|
|
}
|
|
|
|
// User object
|
|
type User struct {
|
|
Name string `yaml:"name"`
|
|
PasswordHash string `yaml:"password"` // bcrypt hash
|
|
}
|
|
|
|
// InitAuth - create a global object
|
|
func InitAuth(dbFilename string, users []User, sessionTTL uint32) *Auth {
|
|
a := Auth{}
|
|
a.sessionTTL = sessionTTL
|
|
a.sessions = make(map[string]*session)
|
|
rand.Seed(time.Now().UTC().Unix())
|
|
var err error
|
|
a.db, err = bbolt.Open(dbFilename, 0644, nil)
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.Open: %s", err)
|
|
return nil
|
|
}
|
|
a.loadSessions()
|
|
a.users = users
|
|
log.Debug("Auth: initialized. users:%d sessions:%d", len(a.users), len(a.sessions))
|
|
return &a
|
|
}
|
|
|
|
// Close - close module
|
|
func (a *Auth) Close() {
|
|
_ = a.db.Close()
|
|
}
|
|
|
|
func bucketName() []byte {
|
|
return []byte("sessions-2")
|
|
}
|
|
|
|
// load sessions from file, remove expired sessions
|
|
func (a *Auth) loadSessions() {
|
|
tx, err := a.db.Begin(true)
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.Begin: %s", err)
|
|
return
|
|
}
|
|
defer func() {
|
|
_ = tx.Rollback()
|
|
}()
|
|
|
|
bkt := tx.Bucket(bucketName())
|
|
if bkt == nil {
|
|
return
|
|
}
|
|
|
|
removed := 0
|
|
|
|
if tx.Bucket([]byte("sessions")) != nil {
|
|
_ = tx.DeleteBucket([]byte("sessions"))
|
|
removed = 1
|
|
}
|
|
|
|
now := uint32(time.Now().UTC().Unix())
|
|
forEach := func(k, v []byte) error {
|
|
s := session{}
|
|
if !s.deserialize(v) || s.expire <= now {
|
|
err = bkt.Delete(k)
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.Delete: %s", err)
|
|
} else {
|
|
removed++
|
|
}
|
|
return nil
|
|
}
|
|
|
|
a.sessions[hex.EncodeToString(k)] = &s
|
|
return nil
|
|
}
|
|
_ = bkt.ForEach(forEach)
|
|
if removed != 0 {
|
|
err = tx.Commit()
|
|
if err != nil {
|
|
log.Error("bolt.Commit(): %s", err)
|
|
}
|
|
}
|
|
log.Debug("Auth: loaded %d sessions from DB (removed %d expired)", len(a.sessions), removed)
|
|
}
|
|
|
|
// store session data in file
|
|
func (a *Auth) addSession(data []byte, s *session) {
|
|
name := hex.EncodeToString(data)
|
|
a.lock.Lock()
|
|
a.sessions[name] = s
|
|
a.lock.Unlock()
|
|
if a.storeSession(data, s) {
|
|
log.Debug("Auth: created session %s: expire=%d", name, s.expire)
|
|
}
|
|
}
|
|
|
|
// store session data in file
|
|
func (a *Auth) storeSession(data []byte, s *session) bool {
|
|
tx, err := a.db.Begin(true)
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.Begin: %s", err)
|
|
return false
|
|
}
|
|
defer func() {
|
|
_ = tx.Rollback()
|
|
}()
|
|
|
|
bkt, err := tx.CreateBucketIfNotExists(bucketName())
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.CreateBucketIfNotExists: %s", err)
|
|
return false
|
|
}
|
|
err = bkt.Put(data, s.serialize())
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.Put: %s", err)
|
|
return false
|
|
}
|
|
|
|
err = tx.Commit()
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.Commit: %s", err)
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
// remove session from file
|
|
func (a *Auth) removeSession(sess []byte) {
|
|
tx, err := a.db.Begin(true)
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.Begin: %s", err)
|
|
return
|
|
}
|
|
defer func() {
|
|
_ = tx.Rollback()
|
|
}()
|
|
|
|
bkt := tx.Bucket(bucketName())
|
|
if bkt == nil {
|
|
log.Error("Auth: bbolt.Bucket")
|
|
return
|
|
}
|
|
err = bkt.Delete(sess)
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.Put: %s", err)
|
|
return
|
|
}
|
|
|
|
err = tx.Commit()
|
|
if err != nil {
|
|
log.Error("Auth: bbolt.Commit: %s", err)
|
|
return
|
|
}
|
|
|
|
log.Debug("Auth: removed session from DB")
|
|
}
|
|
|
|
// CheckSession - check if session is valid
|
|
// Return 0 if OK; -1 if session doesn't exist; 1 if session has expired
|
|
func (a *Auth) CheckSession(sess string) int {
|
|
now := uint32(time.Now().UTC().Unix())
|
|
update := false
|
|
|
|
a.lock.Lock()
|
|
s, ok := a.sessions[sess]
|
|
if !ok {
|
|
a.lock.Unlock()
|
|
return -1
|
|
}
|
|
if s.expire <= now {
|
|
delete(a.sessions, sess)
|
|
key, _ := hex.DecodeString(sess)
|
|
a.removeSession(key)
|
|
a.lock.Unlock()
|
|
return 1
|
|
}
|
|
|
|
newExpire := now + a.sessionTTL
|
|
if s.expire/(24*60*60) != newExpire/(24*60*60) {
|
|
// update expiration time once a day
|
|
update = true
|
|
s.expire = newExpire
|
|
}
|
|
|
|
a.lock.Unlock()
|
|
|
|
if update {
|
|
key, _ := hex.DecodeString(sess)
|
|
if a.storeSession(key, s) {
|
|
log.Debug("Auth: updated session %s: expire=%d", sess, s.expire)
|
|
}
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
// RemoveSession - remove session
|
|
func (a *Auth) RemoveSession(sess string) {
|
|
key, _ := hex.DecodeString(sess)
|
|
a.lock.Lock()
|
|
delete(a.sessions, sess)
|
|
a.lock.Unlock()
|
|
a.removeSession(key)
|
|
}
|
|
|
|
type loginJSON struct {
|
|
Name string `json:"name"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
func getSession(u *User) []byte {
|
|
d := []byte(fmt.Sprintf("%d%s%s", rand.Uint32(), u.Name, u.PasswordHash))
|
|
hash := sha256.Sum256(d)
|
|
return hash[:]
|
|
}
|
|
|
|
func (a *Auth) httpCookie(req loginJSON) string {
|
|
u := a.UserFind(req.Name, req.Password)
|
|
if len(u.Name) == 0 {
|
|
return ""
|
|
}
|
|
|
|
sess := getSession(&u)
|
|
|
|
now := time.Now().UTC()
|
|
expire := now.Add(cookieTTL * time.Hour)
|
|
expstr := expire.Format(time.RFC1123)
|
|
expstr = expstr[:len(expstr)-len("UTC")] // "UTC" -> "GMT"
|
|
expstr += "GMT"
|
|
|
|
s := session{}
|
|
s.userName = u.Name
|
|
s.expire = uint32(now.Unix()) + a.sessionTTL
|
|
a.addSession(sess, &s)
|
|
|
|
return fmt.Sprintf("%s=%s; Path=/; HttpOnly; Expires=%s",
|
|
sessionCookieName, hex.EncodeToString(sess), expstr)
|
|
}
|
|
|
|
func handleLogin(w http.ResponseWriter, r *http.Request) {
|
|
req := loginJSON{}
|
|
err := json.NewDecoder(r.Body).Decode(&req)
|
|
if err != nil {
|
|
httpError(w, http.StatusBadRequest, "json decode: %s", err)
|
|
return
|
|
}
|
|
|
|
cookie := Context.auth.httpCookie(req)
|
|
if len(cookie) == 0 {
|
|
log.Info("Auth: invalid user name or password: name='%s'", req.Name)
|
|
time.Sleep(1 * time.Second)
|
|
http.Error(w, "invalid user name or password", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Set-Cookie", cookie)
|
|
|
|
w.Header().Set("Cache-Control", "no-store, no-cache, must-revalidate, proxy-revalidate")
|
|
w.Header().Set("Pragma", "no-cache")
|
|
w.Header().Set("Expires", "0")
|
|
|
|
returnOK(w)
|
|
}
|
|
|
|
func handleLogout(w http.ResponseWriter, r *http.Request) {
|
|
cookie := r.Header.Get("Cookie")
|
|
sess := parseCookie(cookie)
|
|
|
|
Context.auth.RemoveSession(sess)
|
|
|
|
w.Header().Set("Location", "/login.html")
|
|
|
|
s := fmt.Sprintf("%s=; Path=/; HttpOnly; Expires=Thu, 01 Jan 1970 00:00:00 GMT",
|
|
sessionCookieName)
|
|
w.Header().Set("Set-Cookie", s)
|
|
|
|
w.WriteHeader(http.StatusFound)
|
|
}
|
|
|
|
// RegisterAuthHandlers - register handlers
|
|
func RegisterAuthHandlers() {
|
|
http.Handle("/control/login", postInstallHandler(ensureHandler("POST", handleLogin)))
|
|
httpRegister("GET", "/control/logout", handleLogout)
|
|
}
|
|
|
|
func parseCookie(cookie string) string {
|
|
pairs := strings.Split(cookie, ";")
|
|
for _, pair := range pairs {
|
|
pair = strings.TrimSpace(pair)
|
|
kv := strings.SplitN(pair, "=", 2)
|
|
if len(kv) != 2 {
|
|
continue
|
|
}
|
|
if kv[0] == sessionCookieName {
|
|
return kv[1]
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func optionalAuth(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.URL.Path == "/login.html" {
|
|
// redirect to dashboard if already authenticated
|
|
authRequired := Context.auth != nil && Context.auth.AuthRequired()
|
|
cookie, err := r.Cookie(sessionCookieName)
|
|
if authRequired && err == nil {
|
|
r := Context.auth.CheckSession(cookie.Value)
|
|
if r == 0 {
|
|
w.Header().Set("Location", "/")
|
|
w.WriteHeader(http.StatusFound)
|
|
return
|
|
} else if r < 0 {
|
|
log.Info("Auth: invalid cookie value: %s", cookie)
|
|
}
|
|
}
|
|
|
|
} else if r.URL.Path == "/favicon.png" ||
|
|
strings.HasPrefix(r.URL.Path, "/login.") ||
|
|
strings.HasPrefix(r.URL.Path, "/__locales/") {
|
|
// process as usual
|
|
|
|
} else if Context.auth != nil && Context.auth.AuthRequired() {
|
|
// redirect to login page if not authenticated
|
|
ok := false
|
|
cookie, err := r.Cookie(sessionCookieName)
|
|
if err == nil {
|
|
r := Context.auth.CheckSession(cookie.Value)
|
|
if r == 0 {
|
|
ok = true
|
|
} else if r < 0 {
|
|
log.Info("Auth: invalid cookie value: %s", cookie)
|
|
}
|
|
} else {
|
|
// there's no Cookie, check Basic authentication
|
|
user, pass, ok2 := r.BasicAuth()
|
|
if ok2 {
|
|
u := Context.auth.UserFind(user, pass)
|
|
if len(u.Name) != 0 {
|
|
ok = true
|
|
} else {
|
|
log.Info("Auth: invalid Basic Authorization value")
|
|
}
|
|
}
|
|
}
|
|
if !ok {
|
|
if r.URL.Path == "/" || r.URL.Path == "/index.html" {
|
|
w.Header().Set("Location", "/login.html")
|
|
w.WriteHeader(http.StatusFound)
|
|
} else {
|
|
w.WriteHeader(http.StatusForbidden)
|
|
_, _ = w.Write([]byte("Forbidden"))
|
|
}
|
|
return
|
|
}
|
|
}
|
|
|
|
handler(w, r)
|
|
}
|
|
}
|
|
|
|
type authHandler struct {
|
|
handler http.Handler
|
|
}
|
|
|
|
func (a *authHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
optionalAuth(a.handler.ServeHTTP)(w, r)
|
|
}
|
|
|
|
func optionalAuthHandler(handler http.Handler) http.Handler {
|
|
return &authHandler{handler}
|
|
}
|
|
|
|
// UserAdd - add new user
|
|
func (a *Auth) UserAdd(u *User, password string) {
|
|
if len(password) == 0 {
|
|
return
|
|
}
|
|
|
|
hash, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
|
|
if err != nil {
|
|
log.Error("bcrypt.GenerateFromPassword: %s", err)
|
|
return
|
|
}
|
|
u.PasswordHash = string(hash)
|
|
|
|
a.lock.Lock()
|
|
a.users = append(a.users, *u)
|
|
a.lock.Unlock()
|
|
|
|
log.Debug("Auth: added user: %s", u.Name)
|
|
}
|
|
|
|
// UserFind - find a user
|
|
func (a *Auth) UserFind(login string, password string) User {
|
|
a.lock.Lock()
|
|
defer a.lock.Unlock()
|
|
for _, u := range a.users {
|
|
if u.Name == login &&
|
|
bcrypt.CompareHashAndPassword([]byte(u.PasswordHash), []byte(password)) == nil {
|
|
return u
|
|
}
|
|
}
|
|
return User{}
|
|
}
|
|
|
|
// GetCurrentUser - get the current user
|
|
func (a *Auth) GetCurrentUser(r *http.Request) User {
|
|
cookie, err := r.Cookie(sessionCookieName)
|
|
if err != nil {
|
|
// there's no Cookie, check Basic authentication
|
|
user, pass, ok := r.BasicAuth()
|
|
if ok {
|
|
u := Context.auth.UserFind(user, pass)
|
|
return u
|
|
}
|
|
return User{}
|
|
}
|
|
|
|
a.lock.Lock()
|
|
s, ok := a.sessions[cookie.Value]
|
|
if !ok {
|
|
a.lock.Unlock()
|
|
return User{}
|
|
}
|
|
for _, u := range a.users {
|
|
if u.Name == s.userName {
|
|
a.lock.Unlock()
|
|
return u
|
|
}
|
|
}
|
|
a.lock.Unlock()
|
|
return User{}
|
|
}
|
|
|
|
// GetUsers - get users
|
|
func (a *Auth) GetUsers() []User {
|
|
a.lock.Lock()
|
|
users := a.users
|
|
a.lock.Unlock()
|
|
return users
|
|
}
|
|
|
|
// AuthRequired - if authentication is required
|
|
func (a *Auth) AuthRequired() bool {
|
|
a.lock.Lock()
|
|
r := (len(a.users) != 0)
|
|
a.lock.Unlock()
|
|
return r
|
|
}
|