mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
68 lines
1.2 KiB
Go
68 lines
1.2 KiB
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
|
|
|
|
import "fmt"
|
|
|
|
const USERNS Kind = "userns"
|
|
|
|
type Userns struct {
|
|
RuleBase
|
|
Qualifier
|
|
Create bool
|
|
}
|
|
|
|
func newUserns(q Qualifier, rule rule) (Rule, error) {
|
|
var create bool
|
|
switch len(rule) {
|
|
case 0:
|
|
create = true
|
|
case 1:
|
|
if rule.Get(0) != "create" {
|
|
return nil, fmt.Errorf("invalid userns format: %s", rule)
|
|
}
|
|
create = true
|
|
default:
|
|
return nil, fmt.Errorf("invalid userns format: %s", rule)
|
|
}
|
|
return &Userns{
|
|
RuleBase: newBase(rule),
|
|
Qualifier: q,
|
|
Create: create,
|
|
}, nil
|
|
}
|
|
|
|
func newUsernsFromLog(log map[string]string) Rule {
|
|
return &Userns{
|
|
RuleBase: newBaseFromLog(log),
|
|
Qualifier: newQualifierFromLog(log),
|
|
Create: true,
|
|
}
|
|
}
|
|
|
|
func (r *Userns) Validate() error {
|
|
return nil
|
|
}
|
|
|
|
func (r *Userns) Compare(other Rule) int {
|
|
o, _ := other.(*Userns)
|
|
if res := compare(r.Create, o.Create); res != 0 {
|
|
return res
|
|
}
|
|
return r.Qualifier.Compare(o.Qualifier)
|
|
}
|
|
|
|
func (r *Userns) String() string {
|
|
return renderTemplate(r.Kind(), r)
|
|
}
|
|
|
|
func (r *Userns) Constraint() constraint {
|
|
return blockKind
|
|
}
|
|
|
|
func (r *Userns) Kind() Kind {
|
|
return USERNS
|
|
}
|