1 Star 0 Fork 1

mysnapcore / mysnapd

forked from tupelo-shen / mysnapd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
netlink_audit.go 2.74 KB
一键复制 编辑 原始数据 按行查看 历史
tupelo-shen 提交于 2022-11-08 09:25 . fix: interfaces commit
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2017 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package builtin
import (
"errors"
"gitee.com/mysnapcore/mysnapd/interfaces"
apparmor_sandbox "gitee.com/mysnapcore/mysnapd/sandbox/apparmor"
"gitee.com/mysnapcore/mysnapd/strutil"
)
const netlinkAuditSummary = `allows access to kernel audit system through netlink`
const netlinkAuditBaseDeclarationSlots = `
netlink-audit:
allow-installation:
slot-snap-type:
- core
deny-auto-connection: true
`
const netlinkAuditConnectedPlugSecComp = `
# Description: Can use netlink to read/write to kernel audit system.
bind
socket AF_NETLINK - NETLINK_AUDIT
`
const netlinkAuditConnectedPlugAppArmor = `
# Description: Can use netlink to read/write to kernel audit system.
network netlink,
# CAP_NET_ADMIN required for multicast netlink sockets per 'man 7 netlink'
capability net_admin,
# CAP_AUDIT_READ required to read the audit log via the netlink multicast socket
# per 'man 7 capabilities'
capability audit_read,
# CAP_AUDIT_WRITE required to write to the audit log via the netlink multicast
# socket per 'man 7 capabilities'
capability audit_write,
`
type netlinkAuditInterface struct {
commonInterface
}
func (iface *netlinkAuditInterface) BeforeConnectPlug(plug *interfaces.ConnectedPlug) error {
if apparmor_sandbox.ProbedLevel() == apparmor_sandbox.Unsupported {
// no apparmor means we don't have to deal with parser features
return nil
}
features, err := apparmor_sandbox.ParserFeatures()
if err != nil {
return err
}
if !strutil.ListContains(features, "cap-audit-read") {
// the host system doesn't have the required feature to compile the
// policy (that happens in 14.04)
return errors.New("cannot connect plug on system without audit_read support")
}
return nil
}
func init() {
registerIface(&netlinkAuditInterface{commonInterface{
name: "netlink-audit",
summary: netlinkAuditSummary,
implicitOnCore: true,
implicitOnClassic: true,
baseDeclarationSlots: netlinkAuditBaseDeclarationSlots,
connectedPlugSecComp: netlinkAuditConnectedPlugSecComp,
connectedPlugAppArmor: netlinkAuditConnectedPlugAppArmor,
}})
}
Go
1
https://gitee.com/mysnapcore/mysnapd.git
git@gitee.com:mysnapcore/mysnapd.git
mysnapcore
mysnapd
mysnapd
v0.1.0

搜索帮助