mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
101 lines
2.2 KiB
Go
101 lines
2.2 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
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
type RuleBase struct {
|
|
IsLineRule bool
|
|
Comment string
|
|
NoNewPrivs bool
|
|
FileInherit bool
|
|
Prefix string
|
|
Padding string
|
|
Suffix string
|
|
Optional bool
|
|
}
|
|
|
|
func newBase(rule rule) RuleBase {
|
|
comment := ""
|
|
fileInherit, noNewPrivs, optional := false, false, false
|
|
|
|
if len(rule) > 0 {
|
|
if len(rule.Get(0)) > 0 && rule.Get(0)[0] == '#' {
|
|
// Line rule is a comment
|
|
rule = rule[1:]
|
|
comment = rule.GetString()
|
|
} else {
|
|
// Comma rule, with comment at the end
|
|
comment = rule[len(rule)-1].comment
|
|
}
|
|
}
|
|
switch {
|
|
case strings.Contains(comment, "file_inherit"):
|
|
fileInherit = true
|
|
comment = strings.Replace(comment, "file_inherit ", "", 1)
|
|
case strings.HasPrefix(comment, "no new privs"):
|
|
noNewPrivs = true
|
|
comment = strings.Replace(comment, "no new privs ", "", 1)
|
|
case strings.Contains(comment, "optional:"):
|
|
optional = true
|
|
comment = strings.Replace(comment, "optional: ", "", 1)
|
|
}
|
|
return RuleBase{
|
|
Comment: comment,
|
|
NoNewPrivs: noNewPrivs,
|
|
FileInherit: fileInherit,
|
|
Optional: optional,
|
|
}
|
|
}
|
|
|
|
func newBaseFromLog(log map[string]string) RuleBase {
|
|
comment := ""
|
|
fileInherit, noNewPrivs, optional := false, false, false
|
|
|
|
if log["operation"] == "file_inherit" {
|
|
fileInherit = true
|
|
}
|
|
if log["error"] == "-1" {
|
|
if strings.Contains(log["info"], "optional:") {
|
|
optional = true
|
|
comment = strings.Replace(log["info"], "optional: ", "", 1)
|
|
} else {
|
|
noNewPrivs = true
|
|
}
|
|
}
|
|
if log["info"] != "" {
|
|
comment += " " + log["info"]
|
|
}
|
|
return RuleBase{
|
|
IsLineRule: false,
|
|
Comment: comment,
|
|
NoNewPrivs: noNewPrivs,
|
|
FileInherit: fileInherit,
|
|
Optional: optional,
|
|
}
|
|
}
|
|
|
|
type Qualifier struct {
|
|
Audit bool
|
|
AccessType string
|
|
}
|
|
|
|
func newQualifierFromLog(log map[string]string) Qualifier {
|
|
audit := false
|
|
if log["apparmor"] == "AUDIT" {
|
|
audit = true
|
|
}
|
|
return Qualifier{Audit: audit}
|
|
}
|
|
|
|
func (r Qualifier) Compare(o Qualifier) int {
|
|
if r := compare(r.Audit, o.Audit); r != 0 {
|
|
return r
|
|
}
|
|
return compare(r.AccessType, o.AccessType)
|
|
}
|