mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
45 lines
979 B
Go
45 lines
979 B
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
|
|
|
|
const tokPTRACE = "ptrace"
|
|
|
|
type Ptrace struct {
|
|
RuleBase
|
|
Qualifier
|
|
Access []string
|
|
Peer string
|
|
}
|
|
|
|
func newPtraceFromLog(log map[string]string) Rule {
|
|
return &Ptrace{
|
|
RuleBase: newRuleFromLog(log),
|
|
Qualifier: newQualifierFromLog(log),
|
|
Access: toAccess(tokPTRACE, log["requested_mask"]),
|
|
Peer: log["peer"],
|
|
}
|
|
}
|
|
|
|
func (r *Ptrace) Less(other any) bool {
|
|
o, _ := other.(*Ptrace)
|
|
if len(r.Access) != len(o.Access) {
|
|
return len(r.Access) < len(o.Access)
|
|
}
|
|
if r.Peer != o.Peer {
|
|
return r.Peer == o.Peer
|
|
}
|
|
return r.Qualifier.Less(o.Qualifier)
|
|
}
|
|
|
|
func (r *Ptrace) Equals(other any) bool {
|
|
o, _ := other.(*Ptrace)
|
|
return slices.Equal(r.Access, o.Access) && r.Peer == o.Peer &&
|
|
r.Qualifier.Equals(o.Qualifier)
|
|
}
|
|
|
|
func (r *Ptrace) String() string {
|
|
return renderTemplate(tokPTRACE, r)
|
|
}
|