2023-09-25 01:06:07 +02:00
|
|
|
// apparmor.d - Full set of apparmor profiles
|
|
|
|
// Copyright (C) 2021-2023 Alexandre Pujol <alexandre@pujol.io>
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
|
|
|
package aa
|
|
|
|
|
|
|
|
type Dbus struct {
|
|
|
|
Qualifier
|
|
|
|
Access string
|
|
|
|
Bus string
|
|
|
|
Name string
|
|
|
|
Path string
|
|
|
|
Interface string
|
|
|
|
Member string
|
|
|
|
Label string
|
|
|
|
}
|
|
|
|
|
2023-09-29 21:07:29 +02:00
|
|
|
func DbusFromLog(log map[string]string) ApparmorRule {
|
2023-09-25 01:06:07 +02:00
|
|
|
return &Dbus{
|
2023-09-29 21:07:29 +02:00
|
|
|
Qualifier: NewQualifierFromLog(log),
|
2023-09-25 01:06:07 +02:00
|
|
|
Access: log["mask"],
|
|
|
|
Bus: log["bus"],
|
|
|
|
Name: log["name"],
|
|
|
|
Path: log["path"],
|
|
|
|
Interface: log["interface"],
|
|
|
|
Member: log["member"],
|
|
|
|
Label: log["peer_label"],
|
|
|
|
}
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
|
|
|
|
func (r *Dbus) Less(other any) bool {
|
|
|
|
o, _ := other.(*Dbus)
|
|
|
|
if r.Qualifier.Equals(o.Qualifier) {
|
|
|
|
if r.Access == o.Access {
|
|
|
|
if r.Bus == o.Bus {
|
|
|
|
if r.Name == o.Name {
|
|
|
|
if r.Path == o.Path {
|
|
|
|
if r.Interface == o.Interface {
|
|
|
|
if r.Member == o.Member {
|
|
|
|
return r.Label < o.Label
|
|
|
|
}
|
|
|
|
return r.Member < o.Member
|
|
|
|
}
|
|
|
|
return r.Interface < o.Interface
|
|
|
|
}
|
|
|
|
return r.Path < o.Path
|
|
|
|
}
|
|
|
|
return r.Name < o.Name
|
|
|
|
}
|
|
|
|
return r.Bus < o.Bus
|
|
|
|
}
|
|
|
|
return r.Access < o.Access
|
|
|
|
}
|
|
|
|
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 &&
|
|
|
|
r.Member == o.Member && r.Label == o.Label && r.Qualifier.Equals(o.Qualifier)
|
|
|
|
}
|