mirror of
https://github.com/netbirdio/netbird.git
synced 2025-07-14 21:35:23 +02:00
* Add method to retrieve peer's applied posture checks * Add posture checks in server response and update proto messages * Refactor * Extends peer metadata synchronization through SyncRequest and propagate posture changes on syncResponse * Remove account lock * Pass system info on sync * Fix tests * Refactor * resolve merge * Evaluate process check on client (#1749) * implement server and client sync peer meta alongside mocks * wip: add check file and process * Add files to peer metadata for process check * wip: update peer meta on first sync * Add files to peer's metadata * Evaluate process check using files from peer metadata * Fix panic and append windows path to files * Fix check network address and files equality * Evaluate active process on darwin * Evaluate active process on linux * Skip processing processes if no paths are set * Return network map on peer meta-sync and update account peer's * Update client network map on meta sync * Get system info with applied checks * Add windows package * Remove a network map from sync meta-response * Update checks proto message * Keep client checks state and sync meta on checks change * Evaluate a running process * skip build for android and ios * skip check file and process for android and ios * bump gopsutil version * fix tests * move process check to separate os file * refactor * evaluate info with checks on receiving management events * skip meta-update for an old client with no meta-sync support * Check if peer meta is empty without reflection
306 lines
6.5 KiB
Go
306 lines
6.5 KiB
Go
package posture
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/netbirdio/netbird/management/server/peer"
|
|
)
|
|
|
|
func TestProcessCheck_Check(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
input peer.Peer
|
|
check ProcessCheck
|
|
wantErr bool
|
|
isValid bool
|
|
}{
|
|
{
|
|
name: "darwin with matching running processes",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "darwin",
|
|
Files: []peer.File{
|
|
{Path: "/Applications/process1.app", ProcessIsRunning: true},
|
|
{Path: "/Applications/process2.app", ProcessIsRunning: true},
|
|
},
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{Path: "/Applications/process1.app"},
|
|
{Path: "/Applications/process2.app"},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
isValid: true,
|
|
},
|
|
{
|
|
name: "darwin with windows process paths",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "darwin",
|
|
Files: []peer.File{
|
|
{Path: "/Applications/process1.app", ProcessIsRunning: true},
|
|
{Path: "/Applications/process2.app", ProcessIsRunning: true},
|
|
},
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{WindowsPath: "C:\\Program Files\\process1.exe"},
|
|
{WindowsPath: "C:\\Program Files\\process2.exe"},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
isValid: false,
|
|
},
|
|
{
|
|
name: "linux with matching running processes",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "linux",
|
|
Files: []peer.File{
|
|
{Path: "/usr/bin/process1", ProcessIsRunning: true},
|
|
{Path: "/usr/bin/process2", ProcessIsRunning: true},
|
|
},
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{Path: "/usr/bin/process1"},
|
|
{Path: "/usr/bin/process2"},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
isValid: true,
|
|
},
|
|
{
|
|
name: "linux with matching no running processes",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "linux",
|
|
Files: []peer.File{
|
|
{Path: "/usr/bin/process1", ProcessIsRunning: true},
|
|
{Path: "/usr/bin/process2", ProcessIsRunning: false},
|
|
},
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{Path: "/usr/bin/process1"},
|
|
{Path: "/usr/bin/process2"},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
isValid: false,
|
|
},
|
|
{
|
|
name: "linux with windows process paths",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "linux",
|
|
Files: []peer.File{
|
|
{Path: "/usr/bin/process1", ProcessIsRunning: true},
|
|
{Path: "/usr/bin/process2"},
|
|
},
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{WindowsPath: "C:\\Program Files\\process1.exe"},
|
|
{WindowsPath: "C:\\Program Files\\process2.exe"},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
isValid: false,
|
|
},
|
|
{
|
|
name: "linux with non-matching processes",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "linux",
|
|
Files: []peer.File{
|
|
{Path: "/usr/bin/process3"},
|
|
{Path: "/usr/bin/process4"},
|
|
},
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{Path: "/usr/bin/process1"},
|
|
{Path: "/usr/bin/process2"},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
isValid: false,
|
|
},
|
|
{
|
|
name: "windows with matching running processes",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "windows",
|
|
Files: []peer.File{
|
|
{Path: "C:\\Program Files\\process1.exe", ProcessIsRunning: true},
|
|
{Path: "C:\\Program Files\\process1.exe", ProcessIsRunning: true},
|
|
},
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{WindowsPath: "C:\\Program Files\\process1.exe"},
|
|
{WindowsPath: "C:\\Program Files\\process1.exe"},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
isValid: true,
|
|
},
|
|
{
|
|
name: "windows with darwin process paths",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "windows",
|
|
Files: []peer.File{
|
|
{Path: "C:\\Program Files\\process1.exe"},
|
|
{Path: "C:\\Program Files\\process1.exe"},
|
|
},
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{Path: "/Applications/process1.app"},
|
|
{Path: "/Applications/process2.app"},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
isValid: false,
|
|
},
|
|
{
|
|
name: "windows with non-matching processes",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "windows",
|
|
Files: []peer.File{
|
|
{Path: "C:\\Program Files\\process3.exe"},
|
|
{Path: "C:\\Program Files\\process4.exe"},
|
|
},
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{WindowsPath: "C:\\Program Files\\process1.exe"},
|
|
{WindowsPath: "C:\\Program Files\\process2.exe"},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
isValid: false,
|
|
},
|
|
{
|
|
name: "unsupported ios operating system",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "ios",
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{Path: "C:\\Program Files\\process1.exe"},
|
|
{Path: "C:\\Program Files\\process2.exe"},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
isValid: false,
|
|
},
|
|
{
|
|
name: "unsupported android operating system with matching processes",
|
|
input: peer.Peer{
|
|
Meta: peer.PeerSystemMeta{
|
|
GoOS: "android",
|
|
},
|
|
},
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{Path: "/usr/bin/process1"},
|
|
{Path: "/usr/bin/process2"},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
isValid: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
isValid, err := tt.check.Check(tt.input)
|
|
if tt.wantErr {
|
|
assert.Error(t, err)
|
|
} else {
|
|
assert.NoError(t, err)
|
|
}
|
|
assert.Equal(t, tt.isValid, isValid)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestProcessCheck_Validate(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
check ProcessCheck
|
|
expectedError bool
|
|
}{
|
|
{
|
|
name: "Valid unix and windows processes",
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{
|
|
Path: "/usr/local/bin/netbird",
|
|
WindowsPath: "C:\\ProgramData\\NetBird\\netbird.exe",
|
|
},
|
|
},
|
|
},
|
|
expectedError: false,
|
|
},
|
|
{
|
|
name: "Valid unix process",
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{
|
|
Path: "/usr/local/bin/netbird",
|
|
},
|
|
},
|
|
},
|
|
expectedError: false,
|
|
},
|
|
{
|
|
name: "Valid windows process",
|
|
check: ProcessCheck{
|
|
Processes: []Process{
|
|
{
|
|
WindowsPath: "C:\\ProgramData\\NetBird\\netbird.exe",
|
|
},
|
|
},
|
|
},
|
|
expectedError: false,
|
|
},
|
|
{
|
|
name: "Invalid empty processes",
|
|
check: ProcessCheck{
|
|
Processes: []Process{},
|
|
},
|
|
expectedError: true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
err := tc.check.Validate()
|
|
if tc.expectedError {
|
|
assert.Error(t, err)
|
|
} else {
|
|
assert.NoError(t, err)
|
|
}
|
|
})
|
|
}
|
|
}
|