Permalink
Please sign in to comment.
Browse files
Merge pull request #1602 from arges/kernel-module
interfaces: add kernel-module interface for module insertion.
- Loading branch information...
Showing
with
203 additions
and 5 deletions.
- +6 −0 docs/interfaces.md
- +2 −2 interfaces/apparmor/template.go
- +1 −0 interfaces/builtin/all.go
- +1 −0 interfaces/builtin/all_test.go
- +8 −1 interfaces/builtin/hardware_observe.go
- +54 −0 interfaces/builtin/kernel_module_control.go
- +128 −0 interfaces/builtin/kernel_module_control_test.go
- +1 −0 snap/implicit.go
- +2 −2 snap/implicit_test.go
| @@ -0,0 +1,54 @@ | ||
| +// -*- Mode: Go; indent-tabs-mode: t -*- | ||
| + | ||
| +/* | ||
| + * Copyright (C) 2016 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 ( | ||
| + "github.com/snapcore/snapd/interfaces" | ||
| +) | ||
| + | ||
| +const kernelModuleControlConnectedPlugAppArmor = ` | ||
| +# Description: Allow insertion, removal and querying of modules. | ||
| + | ||
| + capability sys_module, | ||
| + @{PROC}/modules r, | ||
| + | ||
| + # NOTE: needed by lscpu. In the future this may be moved to system-trace or | ||
| + # system-observe. | ||
| + /dev/mem r, | ||
| +` | ||
| + | ||
| +const kernelModuleControlConnectedPlugSecComp = ` | ||
| +# Description: Allow insertion, removal and querying of modules. | ||
| + | ||
| +init_module | ||
| +finit_module | ||
| +delete_module | ||
| +` | ||
| + | ||
| +// NewKernelModuleControlInterface returns a new "kernel-module" interface. | ||
| +func NewKernelModuleControlInterface() interfaces.Interface { | ||
| + return &commonInterface{ | ||
| + name: "kernel-module-control", | ||
| + connectedPlugAppArmor: kernelModuleControlConnectedPlugAppArmor, | ||
| + connectedPlugSecComp: kernelModuleControlConnectedPlugSecComp, | ||
| + reservedForOS: true, | ||
| + autoConnect: false, | ||
| + } | ||
| +} |
| @@ -0,0 +1,128 @@ | ||
| +// -*- Mode: Go; indent-tabs-mode: t -*- | ||
| + | ||
| +/* | ||
| + * Copyright (C) 2016 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_test | ||
| + | ||
| +import ( | ||
| + . "gopkg.in/check.v1" | ||
| + | ||
| + "github.com/snapcore/snapd/interfaces" | ||
| + "github.com/snapcore/snapd/interfaces/builtin" | ||
| + "github.com/snapcore/snapd/snap" | ||
| +) | ||
| + | ||
| +type KernelModuleControlInterfaceSuite struct { | ||
| + iface interfaces.Interface | ||
| + slot *interfaces.Slot | ||
| + plug *interfaces.Plug | ||
| +} | ||
| + | ||
| +var _ = Suite(&KernelModuleControlInterfaceSuite{ | ||
| + iface: builtin.NewKernelModuleControlInterface(), | ||
| + slot: &interfaces.Slot{ | ||
| + SlotInfo: &snap.SlotInfo{ | ||
| + Snap: &snap.Info{SuggestedName: "ubuntu-core", Type: snap.TypeOS}, | ||
| + Name: "kernel-module-control", | ||
| + Interface: "kernel-module-control", | ||
| + }, | ||
| + }, | ||
| + plug: &interfaces.Plug{ | ||
| + PlugInfo: &snap.PlugInfo{ | ||
| + Snap: &snap.Info{SuggestedName: "other"}, | ||
| + Name: "kernel-module-control", | ||
| + Interface: "kernel-module-control", | ||
| + }, | ||
| + }, | ||
| +}) | ||
| + | ||
| +func (s *KernelModuleControlInterfaceSuite) TestName(c *C) { | ||
| + c.Assert(s.iface.Name(), Equals, "kernel-module-control") | ||
| +} | ||
| + | ||
| +func (s *KernelModuleControlInterfaceSuite) TestSanitizeSlot(c *C) { | ||
| + err := s.iface.SanitizeSlot(s.slot) | ||
| + c.Assert(err, IsNil) | ||
| + err = s.iface.SanitizeSlot(&interfaces.Slot{SlotInfo: &snap.SlotInfo{ | ||
| + Snap: &snap.Info{SuggestedName: "some-snap"}, | ||
| + Name: "kernel-module-control", | ||
| + Interface: "kernel-module-control", | ||
| + }}) | ||
| + c.Assert(err, ErrorMatches, "kernel-module-control slots are reserved for the operating system snap") | ||
| +} | ||
| + | ||
| +func (s *KernelModuleControlInterfaceSuite) TestSanitizePlug(c *C) { | ||
| + err := s.iface.SanitizePlug(s.plug) | ||
| + c.Assert(err, IsNil) | ||
| +} | ||
| + | ||
| +func (s *KernelModuleControlInterfaceSuite) TestSanitizeIncorrectInterface(c *C) { | ||
| + c.Assert(func() { s.iface.SanitizeSlot(&interfaces.Slot{SlotInfo: &snap.SlotInfo{Interface: "other"}}) }, | ||
| + PanicMatches, `slot is not of interface "kernel-module-control"`) | ||
| + c.Assert(func() { s.iface.SanitizePlug(&interfaces.Plug{PlugInfo: &snap.PlugInfo{Interface: "other"}}) }, | ||
| + PanicMatches, `plug is not of interface "kernel-module-control"`) | ||
| +} | ||
| + | ||
| +func (s *KernelModuleControlInterfaceSuite) TestUnusedSecuritySystems(c *C) { | ||
| + systems := [...]interfaces.SecuritySystem{interfaces.SecurityAppArmor, | ||
| + interfaces.SecuritySecComp, interfaces.SecurityDBus, | ||
| + interfaces.SecurityUDev} | ||
| + for _, system := range systems { | ||
| + snippet, err := s.iface.PermanentPlugSnippet(s.plug, system) | ||
| + c.Assert(err, IsNil) | ||
| + c.Assert(snippet, IsNil) | ||
| + snippet, err = s.iface.PermanentSlotSnippet(s.slot, system) | ||
| + c.Assert(err, IsNil) | ||
| + c.Assert(snippet, IsNil) | ||
| + snippet, err = s.iface.ConnectedSlotSnippet(s.plug, s.slot, system) | ||
| + c.Assert(err, IsNil) | ||
| + c.Assert(snippet, IsNil) | ||
| + } | ||
| + snippet, err := s.iface.ConnectedPlugSnippet(s.plug, s.slot, interfaces.SecurityDBus) | ||
| + c.Assert(err, IsNil) | ||
| + c.Assert(snippet, IsNil) | ||
| + snippet, err = s.iface.ConnectedPlugSnippet(s.plug, s.slot, interfaces.SecurityUDev) | ||
| + c.Assert(err, IsNil) | ||
| + c.Assert(snippet, IsNil) | ||
| +} | ||
| + | ||
| +func (s *KernelModuleControlInterfaceSuite) TestUsedSecuritySystems(c *C) { | ||
| + // connected plugs have a non-nil security snippet for apparmor | ||
| + snippet, err := s.iface.ConnectedPlugSnippet(s.plug, s.slot, interfaces.SecurityAppArmor) | ||
| + c.Assert(err, IsNil) | ||
| + c.Assert(snippet, Not(IsNil)) | ||
| + // connected plugs have a non-nil security snippet for seccomp | ||
| + snippet, err = s.iface.ConnectedPlugSnippet(s.plug, s.slot, interfaces.SecuritySecComp) | ||
| + c.Assert(err, IsNil) | ||
| + c.Assert(snippet, Not(IsNil)) | ||
| +} | ||
| + | ||
| +func (s *KernelModuleControlInterfaceSuite) TestUnexpectedSecuritySystems(c *C) { | ||
| + snippet, err := s.iface.PermanentPlugSnippet(s.plug, "foo") | ||
| + c.Assert(err, Equals, interfaces.ErrUnknownSecurity) | ||
| + c.Assert(snippet, IsNil) | ||
| + snippet, err = s.iface.ConnectedPlugSnippet(s.plug, s.slot, "foo") | ||
| + c.Assert(err, Equals, interfaces.ErrUnknownSecurity) | ||
| + c.Assert(snippet, IsNil) | ||
| + snippet, err = s.iface.PermanentSlotSnippet(s.slot, "foo") | ||
| + c.Assert(err, Equals, interfaces.ErrUnknownSecurity) | ||
| + c.Assert(snippet, IsNil) | ||
| + snippet, err = s.iface.ConnectedSlotSnippet(s.plug, s.slot, "foo") | ||
| + c.Assert(err, Equals, interfaces.ErrUnknownSecurity) | ||
| + c.Assert(snippet, IsNil) | ||
| +} |
0 comments on commit
a22b514