apparmor.d/pkg/aa/change_profile.go

67 lines
1.4 KiB
Go
Raw Normal View History

// 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
2024-05-26 19:05:15 +02:00
import "fmt"
const CHANGEPROFILE Kind = "change_profile"
2024-05-25 23:01:29 +02:00
func init() {
requirements[CHANGEPROFILE] = requirement{
2024-05-25 23:01:29 +02:00
"mode": []string{"safe", "unsafe"},
}
}
type ChangeProfile struct {
RuleBase
Qualifier
ExecMode string
Exec string
ProfileName string
}
func newChangeProfileFromLog(log map[string]string) Rule {
return &ChangeProfile{
RuleBase: newRuleFromLog(log),
2024-04-15 00:58:34 +02:00
Qualifier: newQualifierFromLog(log),
ExecMode: log["mode"],
Exec: log["exec"],
ProfileName: log["target"],
}
}
func (r *ChangeProfile) Validate() error {
if err := validateValues(r.Kind(), "mode", []string{r.ExecMode}); err != nil {
return fmt.Errorf("%s: %w", r, err)
}
return nil
}
func (r *ChangeProfile) Compare(other Rule) int {
o, _ := other.(*ChangeProfile)
if res := compare(r.ExecMode, o.ExecMode); res != 0 {
return res
2024-04-15 00:58:34 +02:00
}
if res := compare(r.Exec, o.Exec); res != 0 {
return res
}
if res := compare(r.ProfileName, o.ProfileName); res != 0 {
return res
2024-04-15 00:58:34 +02:00
}
return r.Qualifier.Compare(o.Qualifier)
}
func (r *ChangeProfile) String() string {
2024-05-25 23:26:51 +02:00
return renderTemplate(r.Kind(), r)
}
func (r *ChangeProfile) Constraint() constraint {
return blockKind
}
func (r *ChangeProfile) Kind() Kind {
return CHANGEPROFILE
}