mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 16:03:51 +01:00
39 lines
779 B
Go
39 lines
779 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 tokUSERNS = "userns"
|
|
|
|
type Userns struct {
|
|
RuleBase
|
|
Qualifier
|
|
Create bool
|
|
}
|
|
|
|
func newUsernsFromLog(log map[string]string) Rule {
|
|
return &Userns{
|
|
RuleBase: newRuleFromLog(log),
|
|
Qualifier: newQualifierFromLog(log),
|
|
Create: true,
|
|
}
|
|
}
|
|
|
|
func (r *Userns) Less(other any) bool {
|
|
o, _ := other.(*Userns)
|
|
if r.Create != o.Create {
|
|
return r.Create
|
|
}
|
|
return r.Qualifier.Less(o.Qualifier)
|
|
}
|
|
|
|
func (r *Userns) Equals(other any) bool {
|
|
o, _ := other.(*Userns)
|
|
return r.Create == o.Create && r.Qualifier.Equals(o.Qualifier)
|
|
}
|
|
|
|
func (r *Userns) String() string {
|
|
return renderTemplate(tokUSERNS, r)
|
|
}
|