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-05-05 15:19:25 +02:00
|
|
|
import (
|
2024-05-25 23:14:43 +02:00
|
|
|
"fmt"
|
2024-05-05 15:19:25 +02:00
|
|
|
"slices"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2024-05-28 19:15:22 +02:00
|
|
|
LINK Kind = "link"
|
|
|
|
FILE Kind = "file"
|
|
|
|
tokOWNER = "owner"
|
|
|
|
tokSUBSET = "subset"
|
2024-05-05 15:19:25 +02:00
|
|
|
)
|
|
|
|
|
2024-05-25 23:01:29 +02:00
|
|
|
func init() {
|
2024-05-28 19:15:22 +02:00
|
|
|
requirements[FILE] = requirement{
|
2024-05-25 23:01:29 +02:00
|
|
|
"access": {"m", "r", "w", "l", "k"},
|
|
|
|
"transition": {
|
|
|
|
"ix", "ux", "Ux", "px", "Px", "cx", "Cx", "pix", "Pix", "cix",
|
|
|
|
"Cix", "pux", "PUx", "cux", "CUx", "x",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-25 23:26:51 +02:00
|
|
|
func isOwner(log map[string]string) bool {
|
|
|
|
fsuid, hasFsUID := log["fsuid"]
|
|
|
|
ouid, hasOuUID := log["ouid"]
|
|
|
|
isDbus := strings.Contains(log["operation"], "dbus")
|
|
|
|
if hasFsUID && hasOuUID && fsuid == ouid && ouid != "0" && !isDbus {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
type File struct {
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase
|
2023-09-25 01:06:07 +02:00
|
|
|
Qualifier
|
2024-04-15 00:58:34 +02:00
|
|
|
Owner bool
|
2023-09-25 01:06:07 +02:00
|
|
|
Path string
|
2024-04-23 22:17:25 +02:00
|
|
|
Access []string
|
2023-09-25 01:06:07 +02:00
|
|
|
Target string
|
|
|
|
}
|
|
|
|
|
2024-04-19 23:43:02 +02:00
|
|
|
func newFileFromLog(log map[string]string) Rule {
|
2024-05-25 23:14:43 +02:00
|
|
|
accesses, err := toAccess("file-log", log["requested_mask"])
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Errorf("newFileFromLog(%v): %w", log, err))
|
|
|
|
}
|
|
|
|
if slices.Compare(accesses, []string{"l"}) == 0 {
|
|
|
|
return newLinkFromLog(log)
|
|
|
|
}
|
2023-09-25 01:06:07 +02:00
|
|
|
return &File{
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase: newRuleFromLog(log),
|
2024-04-15 00:58:34 +02:00
|
|
|
Qualifier: newQualifierFromLog(log),
|
2024-05-25 22:56:28 +02:00
|
|
|
Owner: isOwner(log),
|
2023-09-25 01:06:07 +02:00
|
|
|
Path: log["name"],
|
2024-05-25 23:14:43 +02:00
|
|
|
Access: accesses,
|
2023-09-25 01:06:07 +02:00
|
|
|
Target: log["target"],
|
|
|
|
}
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
|
2024-05-25 23:36:39 +02:00
|
|
|
func (r *File) Validate() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-06-19 19:34:58 +02:00
|
|
|
func (r *File) Compare(other Rule) int {
|
2023-09-25 01:09:11 +02:00
|
|
|
o, _ := other.(*File)
|
2024-06-19 19:34:58 +02:00
|
|
|
|
2023-10-01 20:00:39 +02:00
|
|
|
letterR := getLetterIn(fileAlphabet, r.Path)
|
|
|
|
letterO := getLetterIn(fileAlphabet, o.Path)
|
2024-04-15 00:58:34 +02:00
|
|
|
if fileWeights[letterR] != fileWeights[letterO] && letterR != "" && letterO != "" {
|
2024-06-19 19:34:58 +02:00
|
|
|
return fileWeights[letterR] - fileWeights[letterO]
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Owner, o.Owner); res != 0 {
|
|
|
|
return res
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Path, o.Path); res != 0 {
|
|
|
|
return res
|
2024-05-28 19:22:14 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Access, o.Access); res != 0 {
|
|
|
|
return res
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Target, o.Target); res != 0 {
|
|
|
|
return res
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
return r.Qualifier.Compare(o.Qualifier)
|
2024-04-23 22:17:25 +02:00
|
|
|
}
|
|
|
|
|
2024-04-23 22:26:09 +02:00
|
|
|
func (r *File) String() string {
|
2024-05-05 00:41:47 +02:00
|
|
|
return renderTemplate(r.Kind(), r)
|
2024-04-23 22:26:09 +02:00
|
|
|
}
|
|
|
|
|
2024-05-05 00:41:47 +02:00
|
|
|
func (r *File) Constraint() constraint {
|
|
|
|
return blockKind
|
|
|
|
}
|
|
|
|
|
2024-05-28 19:15:22 +02:00
|
|
|
func (r *File) Kind() Kind {
|
|
|
|
return FILE
|
2024-05-25 22:56:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type Link struct {
|
|
|
|
RuleBase
|
|
|
|
Qualifier
|
|
|
|
Owner bool
|
|
|
|
Subset bool
|
|
|
|
Path string
|
|
|
|
Target string
|
|
|
|
}
|
|
|
|
|
|
|
|
func newLinkFromLog(log map[string]string) Rule {
|
|
|
|
return &Link{
|
|
|
|
RuleBase: newRuleFromLog(log),
|
|
|
|
Qualifier: newQualifierFromLog(log),
|
|
|
|
Owner: isOwner(log),
|
|
|
|
Path: log["name"],
|
|
|
|
Target: log["target"],
|
|
|
|
}
|
|
|
|
}
|
2024-05-25 23:14:43 +02:00
|
|
|
|
2024-05-25 23:36:39 +02:00
|
|
|
func (r *Link) Validate() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-06-19 19:34:58 +02:00
|
|
|
func (r *Link) Compare(other Rule) int {
|
2024-05-25 22:56:28 +02:00
|
|
|
o, _ := other.(*Link)
|
2024-06-19 19:34:58 +02:00
|
|
|
|
|
|
|
if res := compare(r.Owner, o.Owner); res != 0 {
|
|
|
|
return res
|
2024-05-25 22:56:28 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Path, o.Path); res != 0 {
|
|
|
|
return res
|
2024-05-25 22:56:28 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Target, o.Target); res != 0 {
|
|
|
|
return res
|
2024-05-28 19:22:14 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Subset, o.Subset); res != 0 {
|
|
|
|
return res
|
2024-05-25 22:56:28 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
return r.Qualifier.Compare(o.Qualifier)
|
2024-05-25 22:56:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Link) String() string {
|
|
|
|
return renderTemplate(r.Kind(), r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Link) Constraint() constraint {
|
|
|
|
return blockKind
|
|
|
|
}
|
|
|
|
|
2024-05-28 19:15:22 +02:00
|
|
|
func (r *Link) Kind() Kind {
|
|
|
|
return LINK
|
2024-05-25 22:56:28 +02:00
|
|
|
}
|