mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 16:03:51 +01:00
92 lines
2.0 KiB
Go
92 lines
2.0 KiB
Go
// apparmor.d - Full set of apparmor profiles
|
|
// Copyright (C) 2021-2023 Alexandre Pujol <alexandre@pujol.io>
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
package aa
|
|
|
|
// Qualifier to apply extra settings to a rule
|
|
type Qualifier struct {
|
|
Audit bool
|
|
AccessType string
|
|
Owner bool
|
|
NoNewPrivs bool
|
|
FileInherit bool
|
|
}
|
|
|
|
func NewQualifierFromLog(log map[string]string) Qualifier {
|
|
owner := false
|
|
fsuid, hasFsUID := log["fsuid"]
|
|
ouid, hasOuUID := log["ouid"]
|
|
OUID, hasOUID := log["OUID"]
|
|
isDbus := strings.Contains(log["operation"], "dbus")
|
|
if hasFsUID && hasOuUID && hasOUID && fsuid == ouid && OUID != "root" && !isDbus {
|
|
owner = true
|
|
}
|
|
|
|
fileInherit := false
|
|
if log["operation"] == "file_inherit" {
|
|
fileInherit = true
|
|
}
|
|
noNewPrivs := false
|
|
if log["error"] == "-1" {
|
|
noNewPrivs = true
|
|
}
|
|
return Qualifier{
|
|
Audit: false,
|
|
AccessType: "",
|
|
Owner: owner,
|
|
NoNewPrivs: noNewPrivs,
|
|
FileInherit: fileInherit,
|
|
}
|
|
}
|
|
|
|
func (r Qualifier) Less(other Qualifier) bool {
|
|
if r.Audit == other.Audit {
|
|
if r.AccessType == other.AccessType {
|
|
return r.Owner
|
|
}
|
|
return r.AccessType < other.AccessType
|
|
}
|
|
return r.Audit
|
|
}
|
|
|
|
func (r Qualifier) Equals(other Qualifier) bool {
|
|
return r.Audit == other.Audit && r.AccessType == other.AccessType &&
|
|
r.Owner == other.Owner && r.NoNewPrivs == other.NoNewPrivs &&
|
|
r.FileInherit == other.FileInherit
|
|
}
|
|
|
|
// Preamble specific rules
|
|
|
|
type Abi struct {
|
|
Path string
|
|
IsMagic bool
|
|
}
|
|
|
|
func (r Abi) Less(other Abi) bool {
|
|
if r.Path == other.Path {
|
|
return r.IsMagic == other.IsMagic
|
|
}
|
|
return r.Path < other.Path
|
|
}
|
|
|
|
func (r Abi) Equals(other Abi) bool {
|
|
return r.Path == other.Path && r.IsMagic == other.IsMagic
|
|
}
|
|
|
|
type Alias struct {
|
|
Path string
|
|
RewrittenPath string
|
|
}
|
|
|
|
func (r Alias) Less(other Alias) bool {
|
|
if r.Path == other.Path {
|
|
return r.RewrittenPath < other.RewrittenPath
|
|
}
|
|
return r.Path < other.Path
|
|
}
|
|
|
|
func (r Alias) Equals(other Alias) bool {
|
|
return r.Path == other.Path && r.RewrittenPath == other.RewrittenPath
|
|
}
|