mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
72 lines
1.7 KiB
Go
72 lines
1.7 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
|
|
|
|
// TODO: Local variables in profile header need to be resolved
|
|
|
|
package directive
|
|
|
|
import (
|
|
"slices"
|
|
"strings"
|
|
|
|
"github.com/roddhjav/apparmor.d/pkg/aa"
|
|
"github.com/roddhjav/apparmor.d/pkg/prebuild/cfg"
|
|
"github.com/roddhjav/apparmor.d/pkg/util"
|
|
)
|
|
|
|
type Exec struct {
|
|
cfg.Base
|
|
}
|
|
|
|
func init() {
|
|
RegisterDirective(&Exec{
|
|
Base: cfg.Base{
|
|
Keyword: "exec",
|
|
Msg: "Exec directive applied",
|
|
Help: Keyword + `exec [P|U|p|u|PU|pu|] profiles...`,
|
|
},
|
|
})
|
|
}
|
|
|
|
func (d Exec) Apply(opt *Option, profileRaw string) (string, error) {
|
|
transition := "Px"
|
|
transitions := []string{"P", "U", "p", "u", "PU", "pu"}
|
|
t := opt.ArgList[0]
|
|
if slices.Contains(transitions, t) {
|
|
transition = t + "x"
|
|
delete(opt.ArgMap, t)
|
|
}
|
|
|
|
rules := aa.Rules{}
|
|
for name := range opt.ArgMap {
|
|
profiletoTransition := util.MustReadFile(cfg.RootApparmord.Join(name))
|
|
dstProfile := aa.DefaultTunables()
|
|
if err := dstProfile.Parse(profiletoTransition); err != nil {
|
|
return "", err
|
|
}
|
|
if err := dstProfile.Resolve(); err != nil {
|
|
return "", err
|
|
}
|
|
for _, variable := range dstProfile.Preamble.GetVariables() {
|
|
if variable.Name == "exec_path" {
|
|
for _, v := range variable.Values {
|
|
rules = append(rules, &aa.File{
|
|
Path: v,
|
|
Access: []string{transition},
|
|
})
|
|
}
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
aa.IndentationLevel = strings.Count(
|
|
strings.SplitN(opt.Raw, Keyword, 1)[0], aa.Indentation,
|
|
)
|
|
rules = rules.Sort()
|
|
new := rules.String()
|
|
new = new[:len(new)-1]
|
|
return strings.Replace(profileRaw, opt.Raw, new, -1), nil
|
|
}
|