mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 16:03:51 +01:00
59ac54e2fc
- ABI4 by default, fallback to abi 3. - aa-prebuild cli that can be used by other project shipping profiles. - --file option to cli to only build one dev profile. - add abi version filter to only & exclude directives.
49 lines
1.1 KiB
Go
49 lines
1.1 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 builder
|
|
|
|
import (
|
|
"regexp"
|
|
"slices"
|
|
"strings"
|
|
|
|
"github.com/roddhjav/apparmor.d/pkg/prebuild"
|
|
)
|
|
|
|
var (
|
|
regFlags = regexp.MustCompile(`flags=\(([^)]+)\)`)
|
|
regProfileHeader = regexp.MustCompile(` {\n`)
|
|
)
|
|
|
|
type Complain struct {
|
|
prebuild.Base
|
|
}
|
|
|
|
func init() {
|
|
RegisterBuilder(&Complain{
|
|
Base: prebuild.Base{
|
|
Keyword: "complain",
|
|
Msg: "Set complain flag on all profiles",
|
|
},
|
|
})
|
|
}
|
|
|
|
func (b Complain) Apply(opt *Option, profile string) (string, error) {
|
|
flags := []string{}
|
|
matches := regFlags.FindStringSubmatch(profile)
|
|
if len(matches) != 0 {
|
|
flags = strings.Split(matches[1], ",")
|
|
if slices.Contains(flags, "complain") {
|
|
return profile, nil
|
|
}
|
|
}
|
|
flags = append(flags, "complain")
|
|
strFlags := " flags=(" + strings.Join(flags, ",") + ") {\n"
|
|
|
|
// Remove all flags definition, then set manifest' flags
|
|
profile = regFlags.ReplaceAllLiteralString(profile, "")
|
|
return regProfileHeader.ReplaceAllLiteralString(profile, strFlags), nil
|
|
}
|