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-04-23 22:17:25 +02:00
|
|
|
|
2024-04-23 22:26:09 +02:00
|
|
|
const tokCAPABILITY = "capability"
|
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
type Capability struct {
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase
|
2023-09-25 01:06:07 +02:00
|
|
|
Qualifier
|
2024-04-23 22:17:25 +02:00
|
|
|
Names []string
|
|
|
|
}
|
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
}
|
|
|
|
|
2024-04-19 23:43:02 +02:00
|
|
|
func newCapabilityFromLog(log map[string]string) Rule {
|
2023-09-25 01:06:07 +02:00
|
|
|
return &Capability{
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase: newRuleFromLog(log),
|
2024-04-15 00:58:34 +02:00
|
|
|
Qualifier: newQualifierFromLog(log),
|
2024-04-23 22:17:25 +02:00
|
|
|
Names: []string{log["capname"]},
|
2023-09-25 01:06:07 +02:00
|
|
|
}
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
|
|
|
|
func (r *Capability) Less(other any) bool {
|
|
|
|
o, _ := other.(*Capability)
|
2024-04-23 22:17:25 +02:00
|
|
|
for i := 0; i < len(r.Names) && i < len(o.Names); i++ {
|
|
|
|
if r.Names[i] != o.Names[i] {
|
|
|
|
return r.Names[i] < o.Names[i]
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-04-15 00:58:34 +02:00
|
|
|
return r.Qualifier.Less(o.Qualifier)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Capability) Equals(other any) bool {
|
|
|
|
o, _ := other.(*Capability)
|
2024-04-23 22:17:25 +02:00
|
|
|
return slices.Equal(r.Names, o.Names) && r.Qualifier.Equals(o.Qualifier)
|
|
|
|
}
|
|
|
|
|
2024-04-23 22:26:09 +02:00
|
|
|
func (r *Capability) String() string {
|
2024-05-05 00:41:47 +02:00
|
|
|
return renderTemplate(r.Kind(), r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Capability) Constraint() constraint {
|
|
|
|
return blockKind
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Capability) Kind() string {
|
|
|
|
return tokCAPABILITY
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|