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-04-19 23:43:02 +02:00
|
|
|
RuleBase
|
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-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-04-19 23:43:02 +02:00
|
|
|
RuleBase: newRuleFromLog(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-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
|
|
|
|
}
|
|
|
|
|
2023-09-25 01:09:11 +02:00
|
|
|
func (r *Mqueue) Less(other any) bool {
|
|
|
|
o, _ := other.(*Mqueue)
|
2024-04-23 22:17:25 +02:00
|
|
|
if len(r.Access) != len(o.Access) {
|
|
|
|
return len(r.Access) < len(o.Access)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-04-15 00:58:34 +02:00
|
|
|
if r.Type != o.Type {
|
|
|
|
return r.Type < o.Type
|
|
|
|
}
|
|
|
|
if r.Label != o.Label {
|
|
|
|
return r.Label < o.Label
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
return r.Qualifier.Less(o.Qualifier)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mqueue) Equals(other any) bool {
|
|
|
|
o, _ := other.(*Mqueue)
|
2024-04-23 22:17:25 +02:00
|
|
|
return slices.Equal(r.Access, o.Access) && r.Type == o.Type && r.Label == o.Label &&
|
2024-04-15 00:58:34 +02:00
|
|
|
r.Name == o.Name && r.Qualifier.Equals(o.Qualifier)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-04-23 22:26:09 +02:00
|
|
|
|
|
|
|
func (r *Mqueue) String() string {
|
2024-05-05 00:41:47 +02:00
|
|
|
return renderTemplate(r.Kind(), r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mqueue) Constraint() constraint {
|
|
|
|
return blockKind
|
|
|
|
}
|
|
|
|
|
2024-05-28 19:15:22 +02:00
|
|
|
func (r *Mqueue) Kind() Kind {
|
|
|
|
return MQUEUE
|
2024-04-23 22:26:09 +02:00
|
|
|
}
|