mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 16:03:51 +01:00
36 lines
874 B
Go
36 lines
874 B
Go
// apparmor.d - Full set of apparmor profiles
|
|
// Copyright (C) 2021-2023 Alexandre Pujol <alexandre@pujol.io>
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
package aa
|
|
|
|
type ChangeProfile struct {
|
|
ExecMode string
|
|
Exec string
|
|
ProfileName string
|
|
}
|
|
|
|
func ChangeProfileFromLog(log map[string]string, noNewPrivs, fileInherit bool) ApparmorRule {
|
|
return &ChangeProfile{
|
|
ExecMode: log["mode"],
|
|
Exec: log["exec"],
|
|
ProfileName: log["name"],
|
|
}
|
|
}
|
|
|
|
func (r *ChangeProfile) Less(other any) bool {
|
|
o, _ := other.(*ChangeProfile)
|
|
if r.ExecMode == o.ExecMode {
|
|
if r.Exec == o.Exec {
|
|
return r.ProfileName < o.ProfileName
|
|
}
|
|
return r.Exec < o.Exec
|
|
}
|
|
return r.ExecMode < o.ExecMode
|
|
}
|
|
|
|
func (r *ChangeProfile) Equals(other any) bool {
|
|
o, _ := other.(*ChangeProfile)
|
|
return r.ExecMode == o.ExecMode && r.Exec == o.Exec && r.ProfileName == o.ProfileName
|
|
}
|