2023-09-25 01:06:07 +02:00
|
|
|
// apparmor.d - Full set of apparmor profiles
|
2024-02-07 00:16:21 +01:00
|
|
|
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
2023-09-25 01:06:07 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
|
|
|
package aa
|
|
|
|
|
2024-04-23 22:26:09 +02:00
|
|
|
const tokCHANGEPROFILE = "change_profile"
|
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
type ChangeProfile struct {
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase
|
2023-11-27 20:21:43 +01:00
|
|
|
Qualifier
|
2023-09-25 01:06:07 +02:00
|
|
|
ExecMode string
|
|
|
|
Exec string
|
|
|
|
ProfileName string
|
|
|
|
}
|
|
|
|
|
2024-04-19 23:43:02 +02:00
|
|
|
func newChangeProfileFromLog(log map[string]string) Rule {
|
2023-09-25 01:06:07 +02:00
|
|
|
return &ChangeProfile{
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase: newRuleFromLog(log),
|
2024-04-15 00:58:34 +02:00
|
|
|
Qualifier: newQualifierFromLog(log),
|
2023-09-25 01:06:07 +02:00
|
|
|
ExecMode: log["mode"],
|
|
|
|
Exec: log["exec"],
|
2023-11-27 20:21:43 +01:00
|
|
|
ProfileName: log["target"],
|
2023-09-25 01:06:07 +02:00
|
|
|
}
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
|
|
|
|
func (r *ChangeProfile) Less(other any) bool {
|
|
|
|
o, _ := other.(*ChangeProfile)
|
2024-04-15 00:58:34 +02:00
|
|
|
if r.ExecMode != o.ExecMode {
|
|
|
|
return r.ExecMode < o.ExecMode
|
|
|
|
}
|
|
|
|
if r.Exec != o.Exec {
|
2023-09-25 01:09:11 +02:00
|
|
|
return r.Exec < o.Exec
|
|
|
|
}
|
2024-04-15 00:58:34 +02:00
|
|
|
if r.ProfileName != o.ProfileName {
|
|
|
|
return r.ProfileName < o.ProfileName
|
|
|
|
}
|
|
|
|
return r.Qualifier.Less(o.Qualifier)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ChangeProfile) Equals(other any) bool {
|
|
|
|
o, _ := other.(*ChangeProfile)
|
2024-04-15 00:58:34 +02:00
|
|
|
return r.ExecMode == o.ExecMode && r.Exec == o.Exec &&
|
|
|
|
r.ProfileName == o.ProfileName && r.Qualifier.Equals(o.Qualifier)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-04-23 22:26:09 +02:00
|
|
|
|
|
|
|
func (r *ChangeProfile) String() string {
|
|
|
|
return renderTemplate(tokCHANGEPROFILE, r)
|
|
|
|
}
|
2024-05-05 00:41:47 +02:00
|
|
|
|
|
|
|
func (r *ChangeProfile) Constraint() constraint {
|
|
|
|
return blockKind
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ChangeProfile) Kind() string {
|
|
|
|
return tokCHANGEPROFILE
|
|
|
|
}
|