2024-03-21 23:07:41 +01:00
|
|
|
// apparmor.d - Full set of apparmor profiles
|
|
|
|
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
|
|
|
package directive
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/roddhjav/apparmor.d/pkg/aa"
|
2024-03-23 18:41:10 +01:00
|
|
|
"golang.org/x/exp/slices"
|
2024-03-21 23:07:41 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type Exec struct {
|
|
|
|
DirectiveBase
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Directives["exec"] = &Exec{
|
|
|
|
DirectiveBase: DirectiveBase{
|
|
|
|
message: "Exec directive applied",
|
2024-03-22 20:47:45 +01:00
|
|
|
usage: `#aa:exec [P|U|p|u|PU|pu|] profiles_name...`,
|
2024-03-21 23:07:41 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d Exec) Apply(opt *Option, profile string) string {
|
|
|
|
transition := "Px"
|
2024-03-22 20:47:45 +01:00
|
|
|
transitions := []string{"P", "U", "p", "u", "PU", "pu"}
|
2024-03-23 18:41:10 +01:00
|
|
|
t := opt.ArgList[0]
|
|
|
|
if slices.Contains(transitions, t) {
|
|
|
|
transition = t + "x"
|
|
|
|
delete(opt.ArgMap, t)
|
2024-03-22 20:47:45 +01:00
|
|
|
}
|
|
|
|
|
2024-03-22 21:56:04 +01:00
|
|
|
p := &aa.AppArmorProfile{}
|
2024-03-23 18:41:10 +01:00
|
|
|
for name := range opt.ArgMap {
|
2024-03-22 20:47:45 +01:00
|
|
|
content, err := rootApparmord.Join(name).ReadFile()
|
2024-03-21 23:07:41 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2024-03-22 20:47:45 +01:00
|
|
|
profiletoTransition := string(content)
|
2024-03-21 23:07:41 +01:00
|
|
|
|
2024-03-22 20:47:45 +01:00
|
|
|
dstProfile := aa.DefaultTunables()
|
|
|
|
dstProfile.ParseVariables(profiletoTransition)
|
|
|
|
for _, variable := range dstProfile.Variables {
|
2024-03-21 23:07:41 +01:00
|
|
|
if variable.Name == "exec_path" {
|
2024-03-22 20:47:45 +01:00
|
|
|
for _, v := range variable.Values {
|
|
|
|
p.Rules = append(p.Rules, &aa.File{
|
|
|
|
Path: v,
|
|
|
|
Access: transition,
|
|
|
|
})
|
2024-03-21 23:07:41 +01:00
|
|
|
}
|
2024-03-22 20:47:45 +01:00
|
|
|
break
|
2024-03-21 23:07:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-22 21:56:04 +01:00
|
|
|
p.Sort()
|
|
|
|
rules := p.String()
|
|
|
|
lenRules := len(rules)
|
|
|
|
rules = rules[:lenRules-1]
|
|
|
|
return strings.Replace(profile, opt.Raw, rules, -1)
|
2024-03-21 23:07:41 +01:00
|
|
|
}
|