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 Mqueue struct {
|
|
|
|
Qualifier
|
|
|
|
Access string
|
|
|
|
Type string
|
|
|
|
Label string
|
|
|
|
}
|
|
|
|
|
2023-09-29 21:07:29 +02:00
|
|
|
func MqueueFromLog(log map[string]string) ApparmorRule {
|
2023-09-25 01:06:07 +02:00
|
|
|
return &Mqueue{
|
2023-09-29 21:07:29 +02:00
|
|
|
Qualifier: NewQualifierFromLog(log),
|
2023-09-25 01:06:07 +02:00
|
|
|
Access: maskToAccess[log["requested_mask"]],
|
|
|
|
Type: log["type"],
|
|
|
|
Label: log["label"],
|
|
|
|
}
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
|
|
|
|
func (r *Mqueue) Less(other any) bool {
|
|
|
|
o, _ := other.(*Mqueue)
|
|
|
|
if r.Qualifier.Equals(o.Qualifier) {
|
|
|
|
if r.Access == o.Access {
|
|
|
|
if r.Type == o.Type {
|
|
|
|
return r.Label < o.Label
|
|
|
|
}
|
|
|
|
return r.Type < o.Type
|
|
|
|
}
|
|
|
|
return r.Access < o.Access
|
|
|
|
}
|
|
|
|
return r.Qualifier.Less(o.Qualifier)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mqueue) Equals(other any) bool {
|
|
|
|
o, _ := other.(*Mqueue)
|
|
|
|
return r.Access == o.Access && r.Type == o.Type && r.Label == o.Label && r.Qualifier.Equals(o.Qualifier)
|
|
|
|
}
|