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-04-23 22:26:09 +02:00
|
|
|
const tokIOURING = "io_uring"
|
|
|
|
|
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
type IOUring 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
|
|
|
Label string
|
|
|
|
}
|
|
|
|
|
2024-04-19 23:43:02 +02:00
|
|
|
func newIOUringFromLog(log map[string]string) Rule {
|
2024-04-15 00:58:34 +02:00
|
|
|
return &IOUring{
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase: newRuleFromLog(log),
|
2024-04-15 00:58:34 +02:00
|
|
|
Qualifier: newQualifierFromLog(log),
|
2024-04-23 22:17:25 +02:00
|
|
|
Access: toAccess(tokIOURING, log["requested"]),
|
2024-04-15 00:58:34 +02:00
|
|
|
Label: log["label"],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-25 01:09:11 +02:00
|
|
|
func (r *IOUring) Less(other any) bool {
|
|
|
|
o, _ := other.(*IOUring)
|
2024-04-23 22:17:25 +02:00
|
|
|
if len(r.Access) != len(o.Access) {
|
|
|
|
return len(r.Access) < len(o.Access)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-04-15 00:58:34 +02:00
|
|
|
if r.Label != o.Label {
|
|
|
|
return r.Label < o.Label
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
return r.Qualifier.Less(o.Qualifier)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *IOUring) Equals(other any) bool {
|
|
|
|
o, _ := other.(*IOUring)
|
2024-04-23 22:17:25 +02:00
|
|
|
return slices.Equal(r.Access, o.Access) && r.Label == o.Label && r.Qualifier.Equals(o.Qualifier)
|
|
|
|
}
|
|
|
|
|
2024-04-23 22:26:09 +02:00
|
|
|
func (r *IOUring) String() string {
|
|
|
|
return renderTemplate(tokIOURING, r)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|