apparmor.d/pkg/aa/dbus.go

78 lines
1.7 KiB
Go
Raw Normal View History

// apparmor.d - Full set of apparmor profiles
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
// SPDX-License-Identifier: GPL-2.0-only
package aa
type Dbus struct {
2024-04-15 00:58:34 +02:00
Rule
Qualifier
Access string
Bus string
Name string
Path string
Interface string
Member string
2024-04-15 00:58:34 +02:00
PeerName string
PeerLabel string
}
2024-04-15 00:58:34 +02:00
func newDbusFromLog(log map[string]string) *Dbus {
name := ""
peerName := ""
if log["mask"] == "bind" {
name = log["name"]
} else {
peerName = log["name"]
}
return &Dbus{
2024-04-15 00:58:34 +02:00
Rule: newRuleFromLog(log),
Qualifier: newQualifierFromLog(log),
Access: log["mask"],
Bus: log["bus"],
2024-04-15 00:58:34 +02:00
Name: name,
Path: log["path"],
Interface: log["interface"],
Member: log["member"],
2024-04-15 00:58:34 +02:00
PeerName: peerName,
PeerLabel: log["peer_label"],
}
}
func (r *Dbus) Less(other any) bool {
o, _ := other.(*Dbus)
2024-04-15 00:58:34 +02:00
if r.Access != o.Access {
return r.Access < o.Access
}
2024-04-15 00:58:34 +02:00
if r.Bus != o.Bus {
return r.Bus < o.Bus
}
if r.Name != o.Name {
return r.Name < o.Name
}
if r.Path != o.Path {
return r.Path < o.Path
}
if r.Interface != o.Interface {
return r.Interface < o.Interface
}
if r.Member != o.Member {
return r.Member < o.Member
}
if r.PeerName != o.PeerName {
return r.PeerName < o.PeerName
}
if r.PeerLabel != o.PeerLabel {
return r.PeerLabel < o.PeerLabel
}
return r.Qualifier.Less(o.Qualifier)
}
func (r *Dbus) Equals(other any) bool {
o, _ := other.(*Dbus)
return r.Access == o.Access && r.Bus == o.Bus && r.Name == o.Name &&
r.Path == o.Path && r.Interface == o.Interface &&
2024-04-15 00:58:34 +02:00
r.Member == o.Member && r.PeerName == o.PeerName &&
r.PeerLabel == o.PeerLabel && r.Qualifier.Equals(o.Qualifier)
}