mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
Do not restart the mount units when starting snapd even if the file itself has been modified. This is to prevent systemd stopping services when the mount unit gets restarted, as there are required dependencies in the mount path for services defined in snaps.
241 lines
6.9 KiB
Go
241 lines
6.9 KiB
Go
// -*- Mode: Go; indent-tabs-mode: t -*-
|
|
|
|
/*
|
|
* Copyright (C) 2019 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 systemd
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/snapcore/snapd/dirs"
|
|
"github.com/snapcore/snapd/gadget/quantity"
|
|
"github.com/snapcore/snapd/osutil"
|
|
"github.com/snapcore/snapd/osutil/squashfs"
|
|
)
|
|
|
|
type emulation struct {
|
|
rootDir string
|
|
}
|
|
|
|
type notImplementedError struct {
|
|
op string
|
|
}
|
|
|
|
func (e *notImplementedError) Error() string {
|
|
return fmt.Sprintf("%q is not implemented in emulation mode", e.op)
|
|
}
|
|
|
|
func (s *emulation) Backend() Backend {
|
|
return EmulationModeBackend
|
|
}
|
|
|
|
func (s *emulation) DaemonReload() error {
|
|
return nil
|
|
}
|
|
|
|
func (s *emulation) DaemonReexec() error {
|
|
return ¬ImplementedError{"DaemonReexec"}
|
|
}
|
|
|
|
func (s *emulation) EnableNoReload(services []string) error {
|
|
_, err := systemctlCmd(append([]string{"--root", s.rootDir, "enable"}, services...)...)
|
|
return err
|
|
}
|
|
|
|
func (s *emulation) DisableNoReload(services []string) error {
|
|
_, err := systemctlCmd(append([]string{"--root", s.rootDir, "disable"}, services...)...)
|
|
return err
|
|
}
|
|
|
|
func (s *emulation) Start(services []string) error {
|
|
return nil
|
|
}
|
|
|
|
func (s *emulation) StartNoBlock(services []string) error {
|
|
return nil
|
|
}
|
|
|
|
func (s *emulation) Stop(services []string) error {
|
|
return nil
|
|
}
|
|
|
|
func (s *emulation) Kill(service, signal, who string) error {
|
|
return ¬ImplementedError{"Kill"}
|
|
}
|
|
|
|
func (s *emulation) Restart(services []string) error {
|
|
return nil
|
|
}
|
|
|
|
func (s *emulation) ReloadOrRestart(services []string) error {
|
|
return ¬ImplementedError{"ReloadOrRestart"}
|
|
}
|
|
|
|
func (s *emulation) RestartNoWaitForStop(services []string) error {
|
|
return ¬ImplementedError{"RestartNoWaitForStop"}
|
|
}
|
|
|
|
func (s *emulation) Status(units []string) ([]*UnitStatus, error) {
|
|
return nil, ¬ImplementedError{"Status"}
|
|
}
|
|
|
|
func (s *emulation) InactiveEnterTimestamp(unit string) (time.Time, error) {
|
|
return time.Time{}, ¬ImplementedError{"InactiveEnterTimestamp"}
|
|
}
|
|
|
|
func (s *emulation) CurrentMemoryUsage(unit string) (quantity.Size, error) {
|
|
return 0, ¬ImplementedError{"CurrentMemoryUsage"}
|
|
}
|
|
|
|
func (s *emulation) CurrentTasksCount(unit string) (uint64, error) {
|
|
return 0, ¬ImplementedError{"CurrentTasksCount"}
|
|
}
|
|
|
|
func (s *emulation) IsEnabled(service string) (bool, error) {
|
|
return false, ¬ImplementedError{"IsEnabled"}
|
|
}
|
|
|
|
func (s *emulation) IsActive(service string) (bool, error) {
|
|
return false, ¬ImplementedError{"IsActive"}
|
|
}
|
|
|
|
func (s *emulation) LogReader(services []string, n int, follow, namespaces bool) (io.ReadCloser, error) {
|
|
return nil, fmt.Errorf("LogReader")
|
|
}
|
|
|
|
func (s *emulation) EnsureMountUnitFile(description, what, where, fstype string, flags EnsureMountUnitFlags) (string, error) {
|
|
// We don't build the options in exactly the same way as in the systemd
|
|
// type because these options will be written in a unit that is used in
|
|
// a host different to where this is running (the one used while
|
|
// creating the preseeding tarball). Here we assume that the final
|
|
// target is not a container.
|
|
mountUnitOptions := append(fsMountOptions(fstype), squashfs.StandardOptions()...)
|
|
return s.EnsureMountUnitFileWithOptions(&MountUnitOptions{
|
|
Lifetime: Persistent,
|
|
Description: description,
|
|
What: what,
|
|
Where: where,
|
|
Fstype: fstype,
|
|
Options: mountUnitOptions,
|
|
PreventRestartIfModified: flags.PreventRestartIfModified,
|
|
})
|
|
}
|
|
|
|
func (s *emulation) EnsureMountUnitFileWithOptions(unitOptions *MountUnitOptions) (string, error) {
|
|
if osutil.IsDirectory(unitOptions.What) {
|
|
return "", fmt.Errorf("bind-mounted directory is not supported in emulation mode")
|
|
}
|
|
|
|
// Pass directly options, note that passed options need to be correct
|
|
// for the final target that will use the preseeding tarball. See also
|
|
// comment in EnsureMountUnitFile.
|
|
mountUnitName, modified, err := ensureMountUnitFile(unitOptions)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
if modified == mountUnchanged {
|
|
return mountUnitName, nil
|
|
}
|
|
|
|
// Create directory as systemd would do when starting the unit
|
|
if err := os.MkdirAll(filepath.Join(dirs.GlobalRootDir, unitOptions.Where), 0755); err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Here we need options that work for the system where we create the
|
|
// tarball, so things are similar to what is done for
|
|
// systemd.EnsureMountUnitFile. For instance, when preseeding in a lxd
|
|
// container, the snap will be mounted with fuse, but mount unit will
|
|
// use squashfs.
|
|
hostFsType, actualOptions := hostFsTypeAndMountOptions(unitOptions.Fstype)
|
|
if modified == mountUpdated {
|
|
actualOptions = append(actualOptions, "remount")
|
|
}
|
|
cmd := exec.Command("mount", "-t", hostFsType, unitOptions.What, unitOptions.Where, "-o", strings.Join(actualOptions, ","))
|
|
if out, err := cmd.CombinedOutput(); err != nil {
|
|
return "", fmt.Errorf("cannot mount %s (%s) at %s in preseed mode: %s; %s", unitOptions.What, hostFsType, unitOptions.Where, err, string(out))
|
|
}
|
|
|
|
if err := s.EnableNoReload([]string{mountUnitName}); err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return mountUnitName, nil
|
|
}
|
|
|
|
func (s *emulation) RemoveMountUnitFile(mountedDir string) error {
|
|
unit := MountUnitPath(dirs.StripRootDir(mountedDir))
|
|
if !osutil.FileExists(unit) {
|
|
return nil
|
|
}
|
|
|
|
isMounted, err := osutilIsMounted(mountedDir)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if isMounted {
|
|
// use detach-loop and lazy unmount
|
|
if output, err := exec.Command("umount", "-d", "-l", mountedDir).CombinedOutput(); err != nil {
|
|
return osutil.OutputErr(output, err)
|
|
}
|
|
}
|
|
|
|
if err := s.DisableNoReload([]string{filepath.Base(unit)}); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := os.Remove(unit); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *emulation) ListMountUnits(snapName, origin string) ([]string, error) {
|
|
return nil, ¬ImplementedError{"ListMountUnits"}
|
|
}
|
|
|
|
func (s *emulation) Mask(service string) error {
|
|
_, err := systemctlCmd("--root", s.rootDir, "mask", service)
|
|
return err
|
|
}
|
|
|
|
func (s *emulation) Unmask(service string) error {
|
|
_, err := systemctlCmd("--root", s.rootDir, "unmask", service)
|
|
return err
|
|
}
|
|
|
|
func (s *emulation) Mount(what, where string, options ...string) error {
|
|
return ¬ImplementedError{"Mount"}
|
|
}
|
|
|
|
func (s *emulation) Umount(whatOrWhere string) error {
|
|
return ¬ImplementedError{"Umount"}
|
|
}
|
|
|
|
func (s *emulation) Run(command []string, opts *RunOptions) ([]byte, error) {
|
|
return nil, ¬ImplementedError{"Run"}
|
|
}
|