2023-09-25 01:06:07 +02:00
|
|
|
// apparmor.d - Full set of apparmor profiles
|
2024-02-07 00:16:21 +01:00
|
|
|
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
2023-09-25 01:06:07 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
|
|
|
package aa
|
|
|
|
|
2024-04-23 22:26:09 +02:00
|
|
|
const tokUNIX = "unix"
|
|
|
|
|
2023-09-25 01:06:07 +02:00
|
|
|
type Unix struct {
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase
|
2023-09-25 01:06:07 +02:00
|
|
|
Qualifier
|
2024-04-23 22:17:25 +02:00
|
|
|
Access []string
|
2024-04-15 00:58:34 +02:00
|
|
|
Type string
|
|
|
|
Protocol string
|
|
|
|
Address string
|
|
|
|
Label string
|
|
|
|
Attr string
|
|
|
|
Opt string
|
|
|
|
PeerLabel string
|
|
|
|
PeerAddr string
|
2023-09-25 01:06:07 +02:00
|
|
|
}
|
|
|
|
|
2024-04-19 23:43:02 +02:00
|
|
|
func newUnixFromLog(log map[string]string) Rule {
|
2023-09-25 01:06:07 +02:00
|
|
|
return &Unix{
|
2024-04-19 23:43:02 +02:00
|
|
|
RuleBase: newRuleFromLog(log),
|
2024-04-15 00:58:34 +02:00
|
|
|
Qualifier: newQualifierFromLog(log),
|
2024-04-23 22:17:25 +02:00
|
|
|
Access: toAccess(tokUNIX, log["requested_mask"]),
|
2023-09-25 01:06:07 +02:00
|
|
|
Type: log["sock_type"],
|
|
|
|
Protocol: log["protocol"],
|
|
|
|
Address: log["addr"],
|
2024-04-15 00:58:34 +02:00
|
|
|
Label: log["label"],
|
2023-09-25 01:06:07 +02:00
|
|
|
Attr: log["attr"],
|
|
|
|
Opt: log["opt"],
|
2024-04-15 00:58:34 +02:00
|
|
|
PeerLabel: log["peer"],
|
2023-09-25 01:06:07 +02:00
|
|
|
PeerAddr: log["peer_addr"],
|
|
|
|
}
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
|
|
|
|
func (r *Unix) Less(other any) bool {
|
|
|
|
o, _ := other.(*Unix)
|
2024-04-23 22:17:25 +02:00
|
|
|
if len(r.Access) != len(o.Access) {
|
|
|
|
return len(r.Access) < len(o.Access)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-04-15 00:58:34 +02:00
|
|
|
if r.Type != o.Type {
|
|
|
|
return r.Type < o.Type
|
|
|
|
}
|
|
|
|
if r.Protocol != o.Protocol {
|
|
|
|
return r.Protocol < o.Protocol
|
|
|
|
}
|
|
|
|
if r.Address != o.Address {
|
|
|
|
return r.Address < o.Address
|
|
|
|
}
|
|
|
|
if r.Label != o.Label {
|
|
|
|
return r.Label < o.Label
|
|
|
|
}
|
|
|
|
if r.Attr != o.Attr {
|
|
|
|
return r.Attr < o.Attr
|
|
|
|
}
|
|
|
|
if r.Opt != o.Opt {
|
|
|
|
return r.Opt < o.Opt
|
|
|
|
}
|
|
|
|
if r.PeerLabel != o.PeerLabel {
|
|
|
|
return r.PeerLabel < o.PeerLabel
|
|
|
|
}
|
|
|
|
if r.PeerAddr != o.PeerAddr {
|
|
|
|
return r.PeerAddr < o.PeerAddr
|
|
|
|
}
|
2023-09-25 01:09:11 +02:00
|
|
|
return r.Qualifier.Less(o.Qualifier)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Unix) Equals(other any) bool {
|
|
|
|
o, _ := other.(*Unix)
|
2024-04-23 22:17:25 +02:00
|
|
|
return slices.Equal(r.Access, o.Access) && r.Type == o.Type &&
|
2023-09-25 01:09:11 +02:00
|
|
|
r.Protocol == o.Protocol && r.Address == o.Address &&
|
|
|
|
r.Label == o.Label && r.Attr == o.Attr && r.Opt == o.Opt &&
|
2024-04-15 00:58:34 +02:00
|
|
|
r.PeerLabel == o.PeerLabel && r.PeerAddr == o.PeerAddr &&
|
|
|
|
r.Qualifier.Equals(o.Qualifier)
|
2023-09-25 01:09:11 +02:00
|
|
|
}
|
2024-04-23 22:26:09 +02:00
|
|
|
|
|
|
|
func (r *Unix) String() string {
|
|
|
|
return renderTemplate(tokUNIX, r)
|
|
|
|
}
|