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-15 00:58:34 +02:00
|
|
|
import (
|
2024-05-25 23:36:39 +02:00
|
|
|
"fmt"
|
2024-05-05 15:19:25 +02:00
|
|
|
"slices"
|
2024-04-15 00:58:34 +02:00
|
|
|
"strings"
|
|
|
|
)
|
2023-12-05 21:47:32 +01:00
|
|
|
|
2024-05-28 19:15:22 +02:00
|
|
|
const MQUEUE Kind = "mqueue"
|
2024-04-23 22:26:09 +02:00
|
|
|
|
2024-05-25 23:01:29 +02:00
|
|
|
func init() {
|
2024-05-28 19:15:22 +02:00
|
|
|
requirements[MQUEUE] = requirement{
|
2024-05-25 23:01:29 +02:00
|
|
|
"access": []string{
|
|
|
|
"r", "w", "rw", "read", "write", "create", "open",
|
|
|
|
"delete", "getattr", "setattr",
|
|
|
|
},
|
|
|
|
"type": []string{"posix", "sysv"},
|
|
|
|
}
|
|
|
|
}
|
2024-04-23 22:26:09 +02:00
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
type Mqueue struct {
|
2024-06-25 20:50:27 +02:00
|
|
|
Base
|
2023-09-25 01:06:07 +02:00
|
|
|
Qualifier
|
2024-04-23 22:17:25 +02:00
|
|
|
Access []string
|
2023-09-25 01:06:07 +02:00
|
|
|
Type string
|
|
|
|
Label string
|
2023-12-05 21:47:32 +01:00
|
|
|
Name string
|
2023-09-25 01:06:07 +02:00
|
|
|
}
|
|
|
|
|
2024-06-20 00:22:49 +02:00
|
|
|
func newMqueue(q Qualifier, rule rule) (Rule, error) {
|
|
|
|
access, name := "", ""
|
|
|
|
r := rule.GetSlice()
|
|
|
|
size := len(r)
|
|
|
|
if size > 0 {
|
|
|
|
access = strings.Join(r[:size-1], " ")
|
|
|
|
name = r[size-1]
|
|
|
|
if slices.Contains(requirements[MQUEUE]["access"], name) {
|
|
|
|
access += " " + name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
accesses, err := toAccess(MQUEUE, access)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &Mqueue{
|
2024-06-25 20:50:27 +02:00
|
|
|
Base: newBase(rule),
|
2024-06-20 00:22:49 +02:00
|
|
|
Qualifier: q,
|
|
|
|
Access: accesses,
|
|
|
|
Type: rule.GetValuesAsString("type"),
|
|
|
|
Label: rule.GetValuesAsString("label"),
|
|
|
|
Name: name,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2024-04-19 23:43:02 +02:00
|
|
|
func newMqueueFromLog(log map[string]string) Rule {
|
2023-12-05 21:47:32 +01:00
|
|
|
mqueueType := "posix"
|
|
|
|
if strings.Contains(log["class"], "posix") {
|
|
|
|
mqueueType = "posix"
|
|
|
|
} else if strings.Contains(log["class"], "sysv") {
|
|
|
|
mqueueType = "sysv"
|
|
|
|
}
|
2023-09-25 01:06:07 +02:00
|
|
|
return &Mqueue{
|
2024-06-25 20:50:27 +02:00
|
|
|
Base: newBaseFromLog(log),
|
2024-04-15 00:58:34 +02:00
|
|
|
Qualifier: newQualifierFromLog(log),
|
2024-05-28 19:15:22 +02:00
|
|
|
Access: Must(toAccess(MQUEUE, log["requested"])),
|
2023-12-05 21:47:32 +01:00
|
|
|
Type: mqueueType,
|
2023-09-25 01:06:07 +02:00
|
|
|
Label: log["label"],
|
2023-12-05 21:47:32 +01:00
|
|
|
Name: log["name"],
|
2023-09-25 01:06:07 +02:00
|
|
|
}
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
|
2024-06-25 20:56:36 +02:00
|
|
|
func (r *Mqueue) Kind() Kind {
|
|
|
|
return MQUEUE
|
|
|
|
}
|
|
|
|
|
2024-06-27 19:45:32 +02:00
|
|
|
func (r *Mqueue) Constraint() Constraint {
|
|
|
|
return BlockRule
|
2024-06-25 20:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mqueue) String() string {
|
|
|
|
return renderTemplate(r.Kind(), r)
|
|
|
|
}
|
|
|
|
|
2024-05-25 23:36:39 +02:00
|
|
|
func (r *Mqueue) Validate() error {
|
|
|
|
if err := validateValues(r.Kind(), "access", r.Access); err != nil {
|
|
|
|
return fmt.Errorf("%s: %w", r, err)
|
|
|
|
}
|
|
|
|
if err := validateValues(r.Kind(), "type", []string{r.Type}); err != nil {
|
|
|
|
return fmt.Errorf("%s: %w", r, err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-06-19 19:34:58 +02:00
|
|
|
func (r *Mqueue) Compare(other Rule) int {
|
2023-09-25 01:09:11 +02:00
|
|
|
o, _ := other.(*Mqueue)
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Access, o.Access); res != 0 {
|
|
|
|
return res
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Type, o.Type); res != 0 {
|
|
|
|
return res
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Label, o.Label); 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)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-04-23 22:26:09 +02:00
|
|
|
|
2024-06-22 21:59:43 +02:00
|
|
|
func (r *Mqueue) Merge(other Rule) bool {
|
|
|
|
o, _ := other.(*Mqueue)
|
|
|
|
|
|
|
|
if !r.Qualifier.Equal(o.Qualifier) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if r.Type == o.Type && r.Label == o.Label && r.Name == o.Name {
|
|
|
|
r.Access = merge(r.Kind(), "access", r.Access, o.Access)
|
2024-06-25 20:50:27 +02:00
|
|
|
b := &r.Base
|
|
|
|
return b.merge(o.Base)
|
2024-06-22 21:59:43 +02:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2024-06-29 23:27:39 +02:00
|
|
|
|
|
|
|
func (r *Mqueue) Lengths() []int {
|
|
|
|
return []int{
|
|
|
|
r.Qualifier.getLenAudit(),
|
|
|
|
r.Qualifier.getLenAccess(),
|
|
|
|
length("", r.Access),
|
|
|
|
length("type=", r.Type),
|
|
|
|
length("label=", r.Label),
|
|
|
|
length("", r.Name),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mqueue) setPaddings(max []int) {
|
|
|
|
r.Paddings = append(r.Qualifier.setPaddings(max[:2]), setPaddings(
|
|
|
|
max[2:], []string{"", "type=", "label=", ""},
|
|
|
|
[]any{r.Access, r.Type, r.Label, r.Name})...,
|
|
|
|
)
|
|
|
|
}
|