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-05-26 19:05:15 +02:00
|
|
|
import "fmt"
|
|
|
|
|
2024-04-23 22:26:09 +02:00
|
|
|
const (
|
2024-05-28 19:15:22 +02:00
|
|
|
RLIMIT Kind = "rlimit"
|
2024-04-23 22:26:09 +02:00
|
|
|
)
|
|
|
|
|
2024-05-25 23:01:29 +02:00
|
|
|
func init() {
|
2024-05-28 19:15:22 +02:00
|
|
|
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",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2024-04-23 22:26:09 +02:00
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
type Rlimit struct {
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase
|
2023-09-25 01:06:07 +02:00
|
|
|
Key string
|
|
|
|
Op string
|
|
|
|
Value string
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
|
2024-04-19 23:43:02 +02:00
|
|
|
func newRlimitFromLog(log map[string]string) Rule {
|
2024-04-15 00:58:34 +02:00
|
|
|
return &Rlimit{
|
2024-06-19 19:44:55 +02:00
|
|
|
RuleBase: newBaseFromLog(log),
|
2024-04-19 23:43:02 +02:00
|
|
|
Key: log["key"],
|
|
|
|
Op: log["op"],
|
|
|
|
Value: log["value"],
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-25 23:36:39 +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
|
|
|
|
}
|
|
|
|
|
2024-06-19 19:34:58 +02:00
|
|
|
func (r *Rlimit) Compare(other Rule) int {
|
2023-09-25 01:09:11 +02:00
|
|
|
o, _ := other.(*Rlimit)
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Key, o.Key); res != 0 {
|
|
|
|
return res
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
if res := compare(r.Op, o.Op); res != 0 {
|
|
|
|
return res
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-06-19 19:34:58 +02:00
|
|
|
return compare(r.Value, o.Value)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-04-23 22:26:09 +02:00
|
|
|
|
|
|
|
func (r *Rlimit) String() string {
|
2024-05-05 00:41:47 +02:00
|
|
|
return renderTemplate(r.Kind(), r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Rlimit) Constraint() constraint {
|
|
|
|
return blockKind
|
|
|
|
}
|
|
|
|
|
2024-05-28 19:15:22 +02:00
|
|
|
func (r *Rlimit) Kind() Kind {
|
|
|
|
return RLIMIT
|
2024-04-23 22:26:09 +02:00
|
|
|
}
|