mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
913ac3131c
Usefull for downstream repo.
66 lines
1.8 KiB
Go
66 lines
1.8 KiB
Go
// apparmor.d - Full set of apparmor profiles
|
|
// Copyright (C) 2023 Alexandre Pujol <alexandre@pujol.io>
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
package prebuild
|
|
|
|
import (
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/roddhjav/apparmor.d/pkg/aa"
|
|
"golang.org/x/exp/slices"
|
|
)
|
|
|
|
// Build the profiles with the following build tasks
|
|
var Builds = []BuildFunc{
|
|
BuildUserspace,
|
|
}
|
|
|
|
var (
|
|
regABI = regexp.MustCompile(`abi <abi/[0-9.]*>,\n`)
|
|
regAttachments = regexp.MustCompile(`(profile .* @{exec_path})`)
|
|
regFlag = regexp.MustCompile(`flags=\(([^)]+)\)`)
|
|
regProfileHeader = regexp.MustCompile(` {`)
|
|
)
|
|
|
|
type BuildFunc func(string) string
|
|
|
|
// Set complain flag on all profiles
|
|
func BuildComplain(profile string) string {
|
|
|
|
flags := []string{}
|
|
matches := regFlag.FindStringSubmatch(profile)
|
|
if len(matches) != 0 {
|
|
flags = strings.Split(matches[1], ",")
|
|
if slices.Contains(flags, "complain") {
|
|
return profile
|
|
}
|
|
}
|
|
flags = append(flags, "complain")
|
|
strFlags := " flags=(" + strings.Join(flags, ",") + ") {"
|
|
|
|
// Remove all flags definition, then set manifest' flags
|
|
profile = regFlag.ReplaceAllLiteralString(profile, "")
|
|
return regProfileHeader.ReplaceAllLiteralString(profile, strFlags)
|
|
}
|
|
|
|
// Bypass userspace tools restriction
|
|
func BuildUserspace(profile string) string {
|
|
p := aa.NewAppArmorProfile(profile)
|
|
p.ParseVariables()
|
|
p.ResolveAttachments()
|
|
att := p.NestAttachments()
|
|
matches := regAttachments.FindAllString(profile, -1)
|
|
if len(matches) > 0 {
|
|
strheader := strings.Replace(matches[0], "@{exec_path}", att, -1)
|
|
return regAttachments.ReplaceAllLiteralString(profile, strheader)
|
|
}
|
|
return profile
|
|
}
|
|
|
|
// Remove abi header for distributions that do not support it
|
|
func BuildABI(profile string) string {
|
|
return regABI.ReplaceAllLiteralString(profile, "")
|
|
}
|