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-25 23:14:43 +02:00
|
|
|
import (
|
2024-05-25 23:36:39 +02:00
|
|
|
"fmt"
|
2024-05-25 23:14:43 +02:00
|
|
|
)
|
2024-05-05 15:19:25 +02:00
|
|
|
|
2024-05-28 19:15:22 +02:00
|
|
|
const PTRACE Kind = "ptrace"
|
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[PTRACE] = requirement{
|
2024-05-25 23:01:29 +02:00
|
|
|
"access": []string{
|
|
|
|
"r", "w", "rw", "read", "readby", "trace", "tracedby",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
type Ptrace struct {
|
2024-06-25 20:50:27 +02:00
|
|
|
Base
|
2023-09-25 01:06:07 +02:00
|
|
|
Qualifier
|
2024-04-23 22:17:25 +02:00
|
|
|
Access []string
|
2023-09-25 01:06:07 +02:00
|
|
|
Peer string
|
|
|
|
}
|
|
|
|
|
2024-06-20 00:22:49 +02:00
|
|
|
func newPtrace(q Qualifier, rule rule) (Rule, error) {
|
|
|
|
accesses, err := toAccess(PTRACE, rule.GetString())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &Ptrace{
|
2024-06-25 20:50:27 +02:00
|
|
|
Base: newBase(rule),
|
2024-06-20 00:22:49 +02:00
|
|
|
Qualifier: q,
|
|
|
|
Access: accesses,
|
|
|
|
Peer: rule.GetValuesAsString("peer"),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2024-04-19 23:43:02 +02:00
|
|
|
func newPtraceFromLog(log map[string]string) Rule {
|
2023-09-25 01:06:07 +02:00
|
|
|
return &Ptrace{
|
2024-06-25 20:50:27 +02:00
|
|
|
Base: newBaseFromLog(log),
|
2024-04-15 00:58:34 +02:00
|
|
|
Qualifier: newQualifierFromLog(log),
|
2024-05-28 19:15:22 +02:00
|
|
|
Access: Must(toAccess(PTRACE, log["requested_mask"])),
|
2023-09-25 01:06:07 +02:00
|
|
|
Peer: log["peer"],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-25 20:56:36 +02:00
|
|
|
func (r *Ptrace) Kind() Kind {
|
|
|
|
return PTRACE
|
|
|
|
}
|
|
|
|
|
2024-06-27 19:45:32 +02:00
|
|
|
func (r *Ptrace) Constraint() Constraint {
|
|
|
|
return BlockRule
|
2024-06-25 20:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Ptrace) String() string {
|
|
|
|
return renderTemplate(r.Kind(), r)
|
|
|
|
}
|
|
|
|
|
2024-05-25 23:36:39 +02:00
|
|
|
func (r *Ptrace) Validate() error {
|
|
|
|
if err := validateValues(r.Kind(), "access", r.Access); err != nil {
|
|
|
|
return fmt.Errorf("%s: %w", r, err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-06-25 21:10:12 +02:00
|
|
|
func (r *Ptrace) Compare(other Rule) int {
|
|
|
|
o, _ := other.(*Ptrace)
|
|
|
|
if res := compare(r.Access, o.Access); res != 0 {
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
if res := compare(r.Peer, o.Peer); res != 0 {
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
return r.Qualifier.Compare(o.Qualifier)
|
|
|
|
}
|
|
|
|
|
2024-06-22 21:59:43 +02:00
|
|
|
func (r *Ptrace) Merge(other Rule) bool {
|
|
|
|
o, _ := other.(*Ptrace)
|
|
|
|
|
|
|
|
if !r.Qualifier.Equal(o.Qualifier) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if r.Peer == o.Peer {
|
|
|
|
r.Access = merge(r.Kind(), "access", r.Access, o.Access)
|
2024-06-25 20:50:27 +02:00
|
|
|
b := &r.Base
|
|
|
|
return b.merge(o.Base)
|
2024-06-22 21:59:43 +02:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2024-06-29 23:27:39 +02:00
|
|
|
|
|
|
|
func (r *Ptrace) Lengths() []int {
|
|
|
|
return []int{
|
|
|
|
r.Qualifier.getLenAudit(),
|
|
|
|
r.Qualifier.getLenAccess(),
|
|
|
|
length("", r.Access),
|
|
|
|
length("peer=", r.Peer),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Ptrace) setPaddings(max []int) {
|
|
|
|
r.Paddings = append(r.Qualifier.setPaddings(max[:2]), setPaddings(
|
|
|
|
max[2:], []string{"", "peer="},
|
|
|
|
[]any{r.Access, r.Peer})...,
|
|
|
|
)
|
|
|
|
}
|