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-06-25 20:50:27 +02:00
|
|
|
Base
|
2023-09-25 01:06:07 +02:00
|
|
|
Key string
|
|
|
|
Op string
|
|
|
|
Value string
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
|
2024-06-20 00:22:49 +02:00
|
|
|
func newRlimit(q Qualifier, rule rule) (Rule, error) {
|
|
|
|
if len(rule) != 4 {
|
|
|
|
return nil, fmt.Errorf("invalid set format: %s", rule)
|
|
|
|
}
|
|
|
|
if rule.Get(0) != RLIMIT.Tok() {
|
|
|
|
return nil, fmt.Errorf("invalid rlimit format: %s", rule)
|
|
|
|
}
|
|
|
|
return &Rlimit{
|
2024-06-25 20:50:27 +02:00
|
|
|
Base: newBase(rule),
|
|
|
|
Key: rule.Get(1),
|
|
|
|
Op: rule.Get(2),
|
|
|
|
Value: rule.Get(3),
|
2024-06-20 00:22:49 +02:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
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-25 20:50:27 +02:00
|
|
|
Base: newBaseFromLog(log),
|
|
|
|
Key: log["key"],
|
|
|
|
Op: log["op"],
|
|
|
|
Value: log["value"],
|
2024-04-15 00:58:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-25 20:56:36 +02:00
|
|
|
func (r *Rlimit) Kind() Kind {
|
|
|
|
return RLIMIT
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Rlimit) Constraint() constraint {
|
|
|
|
return blockKind
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Rlimit) String() string {
|
|
|
|
return renderTemplate(r.Kind(), r)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|