apparmor.d/pkg/aa/rlimit.go

68 lines
1.3 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
2024-05-26 19:05:15 +02:00
import "fmt"
const (
RLIMIT Kind = "rlimit"
)
2024-05-25 23:01:29 +02:00
func init() {
requirements[RLIMIT] = requirement{
2024-05-25 23:01:29 +02:00
"keys": {
"cpu", "fsize", "data", "stack", "core", "rss", "nofile", "ofile",
"as", "nproc", "memlock", "locks", "sigpending", "msgqueue", "nice",
"rtprio", "rttime",
},
}
}
type Rlimit struct {
RuleBase
Key string
Op string
Value string
}
func newRlimitFromLog(log map[string]string) Rule {
2024-04-15 00:58:34 +02:00
return &Rlimit{
RuleBase: newBaseFromLog(log),
Key: log["key"],
Op: log["op"],
Value: log["value"],
2024-04-15 00:58:34 +02:00
}
}
func (r *Rlimit) Validate() error {
if err := validateValues(r.Kind(), "keys", []string{r.Key}); err != nil {
return fmt.Errorf("%s: %w", r, err)
}
return nil
}
func (r *Rlimit) Compare(other Rule) int {
o, _ := other.(*Rlimit)
if res := compare(r.Key, o.Key); res != 0 {
return res
2024-04-15 00:58:34 +02:00
}
if res := compare(r.Op, o.Op); res != 0 {
return res
}
return compare(r.Value, o.Value)
}
func (r *Rlimit) String() string {
return renderTemplate(r.Kind(), r)
}
func (r *Rlimit) Constraint() constraint {
return blockKind
}
func (r *Rlimit) Kind() Kind {
return RLIMIT
}