mirror of
https://github.com/openziti/ziti.git
synced 2026-09-21 01:53:22 +00:00
308d7f3a10
- add mfa read endpoints - add mfa enroll enpoints - fix mfa library timing issues - adds mfa at tests - adds admin mfa management endpoints - adds admin mfa at tests - improve at tests - fix auth check vs auth query - fix swagger for auth queryies - fix swagger doc - adds more api tests for validation - redo auth query structure - redo mfa endpoints - move mfa verify to authenticate router:wq - add recovery code support and tests - add partial session authentication status
120 lines
3.0 KiB
Go
120 lines
3.0 KiB
Go
/*
|
|
Copyright NetFoundry, Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package model
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/openziti/edge/controller/persistence"
|
|
"go.etcd.io/bbolt"
|
|
"strings"
|
|
)
|
|
|
|
type PostureCheckProcess struct {
|
|
PostureCheckId string
|
|
OperatingSystem string
|
|
Path string
|
|
Hashes []string
|
|
Fingerprint string
|
|
}
|
|
|
|
func (p *PostureCheckProcess) Evaluate(_ string, pd *PostureData) bool {
|
|
for _, process := range pd.Processes {
|
|
if process.PostureCheckId == p.PostureCheckId {
|
|
if process.TimedOut {
|
|
return false
|
|
}
|
|
|
|
if !process.IsRunning {
|
|
return false
|
|
}
|
|
|
|
if p.Fingerprint != "" {
|
|
isFingerprintValid := false
|
|
|
|
for _, fingerprint := range process.SignerFingerprints {
|
|
if strings.EqualFold(p.Fingerprint, fingerprint) {
|
|
isFingerprintValid = true
|
|
break
|
|
}
|
|
}
|
|
|
|
if !isFingerprintValid {
|
|
return false
|
|
}
|
|
}
|
|
|
|
if len(p.Hashes) > 0 {
|
|
for _, hash := range p.Hashes {
|
|
if strings.EqualFold(hash, process.BinaryHash) {
|
|
return true
|
|
}
|
|
}
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func newPostureCheckProcess() PostureCheckSubType {
|
|
return &PostureCheckProcess{}
|
|
}
|
|
|
|
func (p *PostureCheckProcess) fillFrom(handler Handler, tx *bbolt.Tx, check *persistence.PostureCheck, subType persistence.PostureCheckSubType) error {
|
|
subCheck := subType.(*persistence.PostureCheckProcess)
|
|
|
|
if subCheck == nil {
|
|
return fmt.Errorf("could not covert process check to bolt type")
|
|
}
|
|
|
|
p.PostureCheckId = check.Id
|
|
p.OperatingSystem = subCheck.OperatingSystem
|
|
p.Path = subCheck.Path
|
|
p.Hashes = subCheck.Hashes
|
|
p.Fingerprint = subCheck.Fingerprint
|
|
return nil
|
|
}
|
|
|
|
func (p *PostureCheckProcess) toBoltEntityForCreate(tx *bbolt.Tx, handler Handler) (persistence.PostureCheckSubType, error) {
|
|
return &persistence.PostureCheckProcess{
|
|
OperatingSystem: p.OperatingSystem,
|
|
Path: p.Path,
|
|
Hashes: p.Hashes,
|
|
Fingerprint: p.Fingerprint,
|
|
}, nil
|
|
}
|
|
|
|
func (p *PostureCheckProcess) toBoltEntityForUpdate(tx *bbolt.Tx, handler Handler) (persistence.PostureCheckSubType, error) {
|
|
return &persistence.PostureCheckProcess{
|
|
OperatingSystem: p.OperatingSystem,
|
|
Path: p.Path,
|
|
Hashes: p.Hashes,
|
|
Fingerprint: p.Fingerprint,
|
|
}, nil
|
|
}
|
|
|
|
func (p *PostureCheckProcess) toBoltEntityForPatch(tx *bbolt.Tx, handler Handler) (persistence.PostureCheckSubType, error) {
|
|
return &persistence.PostureCheckProcess{
|
|
OperatingSystem: p.OperatingSystem,
|
|
Path: p.Path,
|
|
Hashes: p.Hashes,
|
|
Fingerprint: p.Fingerprint,
|
|
}, nil
|
|
}
|