apparmor.d/pkg/aa/io_uring.go

70 lines
1.4 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
import (
"fmt"
"slices"
)
const IOURING Kind = "io_uring"
2024-05-25 23:01:29 +02:00
func init() {
requirements[IOURING] = requirement{
2024-05-25 23:01:29 +02:00
"access": []string{"sqpoll", "override_creds"},
}
}
type IOUring struct {
RuleBase
Qualifier
Access []string
Label string
}
func newIOUringFromLog(log map[string]string) Rule {
2024-04-15 00:58:34 +02:00
return &IOUring{
RuleBase: newRuleFromLog(log),
2024-04-15 00:58:34 +02:00
Qualifier: newQualifierFromLog(log),
Access: Must(toAccess(IOURING, log["requested"])),
2024-04-15 00:58:34 +02:00
Label: log["label"],
}
}
func (r *IOUring) Validate() error {
if err := validateValues(r.Kind(), "access", r.Access); err != nil {
return fmt.Errorf("%s: %w", r, err)
}
return nil
}
func (r *IOUring) Less(other any) bool {
o, _ := other.(*IOUring)
if len(r.Access) != len(o.Access) {
return len(r.Access) < len(o.Access)
}
2024-04-15 00:58:34 +02:00
if r.Label != o.Label {
return r.Label < o.Label
}
return r.Qualifier.Less(o.Qualifier)
}
func (r *IOUring) Equals(other any) bool {
o, _ := other.(*IOUring)
return slices.Equal(r.Access, o.Access) && r.Label == o.Label && r.Qualifier.Equals(o.Qualifier)
}
func (r *IOUring) String() string {
return renderTemplate(r.Kind(), r)
}
func (r *IOUring) Constraint() constraint {
return blockKind
}
func (r *IOUring) Kind() Kind {
return IOURING
}