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:36:39 +02:00
|
|
|
"fmt"
|
2024-05-05 15:19:25 +02:00
|
|
|
)
|
|
|
|
|
2024-05-28 19:15:22 +02:00
|
|
|
const DBUS Kind = "dbus"
|
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[DBUS] = requirement{
|
2024-05-25 23:01:29 +02:00
|
|
|
"access": []string{
|
|
|
|
"send", "receive", "bind", "eavesdrop", "r", "read",
|
|
|
|
"w", "write", "rw",
|
|
|
|
},
|
|
|
|
"bus": []string{"system", "session", "accessibility"},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
type Dbus 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
|
|
|
Bus string
|
|
|
|
Name string
|
|
|
|
Path string
|
|
|
|
Interface string
|
|
|
|
Member string
|
2024-04-15 00:58:34 +02:00
|
|
|
PeerName string
|
|
|
|
PeerLabel string
|
2023-09-25 01:06:07 +02:00
|
|
|
}
|
|
|
|
|
2024-04-19 23:43:02 +02:00
|
|
|
func newDbusFromLog(log map[string]string) Rule {
|
2024-04-15 00:58:34 +02:00
|
|
|
name := ""
|
|
|
|
peerName := ""
|
|
|
|
if log["mask"] == "bind" {
|
|
|
|
name = log["name"]
|
|
|
|
} else {
|
|
|
|
peerName = log["name"]
|
|
|
|
}
|
2023-09-25 01:06:07 +02:00
|
|
|
return &Dbus{
|
2024-06-19 19:44:55 +02:00
|
|
|
RuleBase: newBaseFromLog(log),
|
2024-04-15 00:58:34 +02:00
|
|
|
Qualifier: newQualifierFromLog(log),
|
2024-04-23 22:17:25 +02:00
|
|
|
Access: []string{log["mask"]},
|
2023-09-25 01:06:07 +02:00
|
|
|
Bus: log["bus"],
|
2024-04-15 00:58:34 +02:00
|
|
|
Name: name,
|
2023-09-25 01:06:07 +02:00
|
|
|
Path: log["path"],
|
|
|
|
Interface: log["interface"],
|
|
|
|
Member: log["member"],
|
2024-04-15 00:58:34 +02:00
|
|
|
PeerName: peerName,
|
|
|
|
PeerLabel: log["peer_label"],
|
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 *Dbus) Validate() error {
|
|
|
|
if err := validateValues(r.Kind(), "access", r.Access); err != nil {
|
|
|
|
return fmt.Errorf("%s: %w", r, err)
|
|
|
|
}
|
|
|
|
return validateValues(r.Kind(), "bus", []string{r.Bus})
|
|
|
|
}
|
|
|
|
|
2024-06-19 19:34:58 +02:00
|
|
|
func (r *Dbus) Compare(other Rule) int {
|
2023-09-25 01:09:11 +02:00
|
|
|
o, _ := other.(*Dbus)
|
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.Bus, o.Bus); res != 0 {
|
|
|
|
return res
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Name, o.Name); 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-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Interface, o.Interface); res != 0 {
|
|
|
|
return res
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Member, o.Member); res != 0 {
|
|
|
|
return res
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.PeerName, o.PeerName); res != 0 {
|
|
|
|
return res
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.PeerLabel, o.PeerLabel); 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
|
|
|
|
|
|
|
func (r *Dbus) String() string {
|
2024-05-05 00:41:47 +02:00
|
|
|
return renderTemplate(r.Kind(), r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Dbus) Constraint() constraint {
|
|
|
|
return blockKind
|
|
|
|
}
|
|
|
|
|
2024-05-28 19:15:22 +02:00
|
|
|
func (r *Dbus) Kind() Kind {
|
|
|
|
return DBUS
|
2024-04-23 22:26:09 +02:00
|
|
|
}
|