mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +01:00
25 lines
463 B
Go
25 lines
463 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os/user"
|
||
|
|
||
|
"github.com/shirou/gopsutil/v3/process"
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func isProcessOwnedByCurrentUser(p *process.Process) bool {
|
||
|
processUsername, err := p.Username()
|
||
|
if err != nil {
|
||
|
log.Errorf("get process username error: %v", err)
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
currUser, err := user.Current()
|
||
|
if err != nil {
|
||
|
log.Errorf("get current user error: %v", err)
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
return processUsername == currUser.Username
|
||
|
}
|