mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
73 lines
1.3 KiB
Go
73 lines
1.3 KiB
Go
// 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"
|
|
|
|
const (
|
|
RLIMIT Kind = "rlimit"
|
|
)
|
|
|
|
func init() {
|
|
requirements[RLIMIT] = requirement{
|
|
"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 {
|
|
return &Rlimit{
|
|
RuleBase: newRuleFromLog(log),
|
|
Key: log["key"],
|
|
Op: log["op"],
|
|
Value: log["value"],
|
|
}
|
|
}
|
|
|
|
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) Less(other any) bool {
|
|
o, _ := other.(*Rlimit)
|
|
if r.Key != o.Key {
|
|
return r.Key < o.Key
|
|
}
|
|
if r.Op != o.Op {
|
|
return r.Op < o.Op
|
|
}
|
|
return r.Value < o.Value
|
|
}
|
|
|
|
func (r *Rlimit) Equals(other any) bool {
|
|
o, _ := other.(*Rlimit)
|
|
return r.Key == o.Key && r.Op == o.Op && 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
|
|
}
|