feat(aa-log): add less & equals rule methods.
This commit is contained in:
parent
923bb66eba
commit
e23e10d7b7
17 changed files with 394 additions and 86 deletions
|
|
@ -27,3 +27,36 @@ func DbusFromLog(log map[string]string, noNewPrivs, fileInherit bool) ApparmorRu
|
|||
Label: log["peer_label"],
|
||||
}
|
||||
}
|
||||
|
||||
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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue