mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
// apparmor.d - Full set of apparmor profiles
|
|
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
package aa
|
|
|
|
const tokCHANGEPROFILE = "change_profile"
|
|
|
|
type ChangeProfile struct {
|
|
RuleBase
|
|
Qualifier
|
|
ExecMode string
|
|
Exec string
|
|
ProfileName string
|
|
}
|
|
|
|
func newChangeProfileFromLog(log map[string]string) Rule {
|
|
return &ChangeProfile{
|
|
RuleBase: newRuleFromLog(log),
|
|
Qualifier: newQualifierFromLog(log),
|
|
ExecMode: log["mode"],
|
|
Exec: log["exec"],
|
|
ProfileName: log["target"],
|
|
}
|
|
}
|
|
|
|
func (r *ChangeProfile) Less(other any) bool {
|
|
o, _ := other.(*ChangeProfile)
|
|
if r.ExecMode != o.ExecMode {
|
|
return r.ExecMode < o.ExecMode
|
|
}
|
|
if r.Exec != o.Exec {
|
|
return r.Exec < o.Exec
|
|
}
|
|
if r.ProfileName != o.ProfileName {
|
|
return r.ProfileName < o.ProfileName
|
|
}
|
|
return r.Qualifier.Less(o.Qualifier)
|
|
}
|
|
|
|
func (r *ChangeProfile) Equals(other any) bool {
|
|
o, _ := other.(*ChangeProfile)
|
|
return r.ExecMode == o.ExecMode && r.Exec == o.Exec &&
|
|
r.ProfileName == o.ProfileName && r.Qualifier.Equals(o.Qualifier)
|
|
}
|
|
|
|
func (r *ChangeProfile) String() string {
|
|
return renderTemplate(tokCHANGEPROFILE, r)
|
|
}
|
|
|
|
func (r *ChangeProfile) Constraint() constraint {
|
|
return blockKind
|
|
}
|
|
|
|
func (r *ChangeProfile) Kind() string {
|
|
return tokCHANGEPROFILE
|
|
}
|