apparmor.d/pkg/aa/rules.go

107 lines
1.9 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
import (
"strings"
)
// Rule generic interface for all AppArmor rules
type Rule interface {
Less(other any) bool
Equals(other any) bool
}
type Rules []Rule
type RuleBase struct {
2023-10-01 20:06:27 +02:00
Comment string
NoNewPrivs bool
FileInherit bool
Prefix string
Padding string
2024-04-15 00:58:34 +02:00
Optional bool
}
func newRuleFromLog(log map[string]string) RuleBase {
fileInherit := false
if log["operation"] == "file_inherit" {
fileInherit = true
}
noNewPrivs := false
optional := false
msg := ""
switch log["error"] {
case "-1":
if strings.Contains(log["info"], "optional:") {
optional = true
msg = strings.Replace(log["info"], "optional: ", "", 1)
} else {
noNewPrivs = true
}
case "-13":
ignoreProfileInfo := []string{"namespace", "disconnected path"}
for _, info := range ignoreProfileInfo {
if strings.Contains(log["info"], info) {
break
}
}
msg = log["info"]
default:
}
return RuleBase{
2024-04-15 00:58:34 +02:00
Comment: msg,
NoNewPrivs: noNewPrivs,
FileInherit: fileInherit,
Optional: optional,
}
}
func (r RuleBase) Less(other any) bool {
2024-04-15 00:58:34 +02:00
return false
}
func (r RuleBase) Equals(other any) bool {
2024-04-15 00:58:34 +02:00
return false
}
2024-04-15 00:58:34 +02:00
type Qualifier struct {
Audit bool
AccessType string
}
2024-04-15 00:58:34 +02:00
func newQualifierFromLog(log map[string]string) Qualifier {
audit := false
if log["apparmor"] == "AUDIT" {
audit = true
}
return Qualifier{Audit: audit}
}
2024-04-15 00:58:34 +02:00
func (r Qualifier) Less(other Qualifier) bool {
if r.Audit != other.Audit {
return r.Audit
}
2024-04-15 00:58:34 +02:00
return r.AccessType < other.AccessType
}
2024-04-15 00:58:34 +02:00
func (r Qualifier) Equals(other Qualifier) bool {
return r.Audit == other.Audit && r.AccessType == other.AccessType
}
2024-04-15 00:58:34 +02:00
type All struct {
RuleBase
}
2024-04-15 00:58:34 +02:00
func (r *All) Less(other any) bool {
return false
}
2024-04-15 00:58:34 +02:00
func (r *All) Equals(other any) bool {
return false
}