2014-03-18 20:00:41 +04:00
|
|
|
package system
|
2014-03-05 04:36:05 +04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-03-18 20:36:31 +04:00
|
|
|
"io/ioutil"
|
2014-03-05 04:36:05 +04:00
|
|
|
"log"
|
2014-03-13 02:43:51 +04:00
|
|
|
"os"
|
2014-03-13 09:30:24 +04:00
|
|
|
"os/exec"
|
2014-03-05 04:36:05 +04:00
|
|
|
"path"
|
2014-03-13 02:43:51 +04:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2014-03-05 04:36:05 +04:00
|
|
|
|
2014-09-22 06:22:27 +04:00
|
|
|
"github.com/coreos/coreos-cloudinit/config"
|
2014-03-13 06:36:31 +04:00
|
|
|
"github.com/coreos/coreos-cloudinit/third_party/github.com/coreos/go-systemd/dbus"
|
2014-03-05 04:36:05 +04:00
|
|
|
)
|
|
|
|
|
2014-06-06 04:40:53 +04:00
|
|
|
func NewUnitManager(root string) UnitManager {
|
|
|
|
return &systemd{root}
|
2014-03-13 02:43:51 +04:00
|
|
|
}
|
|
|
|
|
2014-06-06 04:40:53 +04:00
|
|
|
type systemd struct {
|
|
|
|
root string
|
2014-03-13 02:43:51 +04:00
|
|
|
}
|
|
|
|
|
2014-06-06 04:40:53 +04:00
|
|
|
// fakeMachineID is placed on non-usr CoreOS images and should
|
|
|
|
// never be used as a true MachineID
|
|
|
|
const fakeMachineID = "42000000000000000000000000000042"
|
2014-04-14 21:10:10 +04:00
|
|
|
|
|
|
|
// PlaceUnit writes a unit file at the provided destination, creating
|
|
|
|
// parent directories as necessary.
|
2014-06-06 04:40:53 +04:00
|
|
|
func (s *systemd) PlaceUnit(u *Unit, dst string) error {
|
2014-04-14 21:10:10 +04:00
|
|
|
dir := filepath.Dir(dst)
|
|
|
|
if _, err := os.Stat(dir); os.IsNotExist(err) {
|
|
|
|
if err := os.MkdirAll(dir, os.FileMode(0755)); err != nil {
|
|
|
|
return err
|
2014-03-13 02:43:51 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-22 06:22:27 +04:00
|
|
|
file := File{config.File{
|
2014-06-05 23:48:32 +04:00
|
|
|
Path: filepath.Base(dst),
|
2014-05-07 03:11:26 +04:00
|
|
|
Content: u.Content,
|
2014-03-18 20:00:41 +04:00
|
|
|
RawFilePermissions: "0644",
|
2014-09-22 06:22:27 +04:00
|
|
|
}}
|
2014-03-18 20:00:41 +04:00
|
|
|
|
2014-06-05 23:48:32 +04:00
|
|
|
_, err := WriteFile(&file, dir)
|
2014-03-13 02:43:51 +04:00
|
|
|
if err != nil {
|
2014-04-14 21:10:10 +04:00
|
|
|
return err
|
2014-03-13 02:43:51 +04:00
|
|
|
}
|
|
|
|
|
2014-04-14 21:10:10 +04:00
|
|
|
return nil
|
2014-03-13 02:43:51 +04:00
|
|
|
}
|
|
|
|
|
2014-06-06 04:40:53 +04:00
|
|
|
func (s *systemd) EnableUnitFile(unit string, runtime bool) error {
|
2014-03-13 02:43:51 +04:00
|
|
|
conn, err := dbus.New()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-05-27 02:16:24 +04:00
|
|
|
units := []string{unit}
|
|
|
|
_, _, err = conn.EnableUnitFiles(units, runtime, true)
|
2014-03-13 02:43:51 +04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-06-06 04:40:53 +04:00
|
|
|
func (s *systemd) RunUnitCommand(command, unit string) (string, error) {
|
2014-03-20 02:52:24 +04:00
|
|
|
conn, err := dbus.New()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
2014-03-13 02:43:51 +04:00
|
|
|
}
|
|
|
|
|
2014-03-20 02:52:24 +04:00
|
|
|
var fn func(string, string) (string, error)
|
|
|
|
switch command {
|
|
|
|
case "start":
|
|
|
|
fn = conn.StartUnit
|
|
|
|
case "stop":
|
|
|
|
fn = conn.StopUnit
|
|
|
|
case "restart":
|
|
|
|
fn = conn.RestartUnit
|
|
|
|
case "reload":
|
|
|
|
fn = conn.ReloadUnit
|
|
|
|
case "try-restart":
|
|
|
|
fn = conn.TryRestartUnit
|
|
|
|
case "reload-or-restart":
|
|
|
|
fn = conn.ReloadOrRestartUnit
|
|
|
|
case "reload-or-try-restart":
|
|
|
|
fn = conn.ReloadOrTryRestartUnit
|
|
|
|
default:
|
|
|
|
return "", fmt.Errorf("Unsupported systemd command %q", command)
|
2014-03-13 02:43:51 +04:00
|
|
|
}
|
|
|
|
|
2014-03-20 02:52:24 +04:00
|
|
|
return fn(unit, "replace")
|
2014-03-13 02:43:51 +04:00
|
|
|
}
|
|
|
|
|
2014-06-06 04:40:53 +04:00
|
|
|
func (s *systemd) DaemonReload() error {
|
2014-03-13 02:43:51 +04:00
|
|
|
conn, err := dbus.New()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-03-26 05:50:38 +04:00
|
|
|
return conn.Reload()
|
2014-03-13 02:43:51 +04:00
|
|
|
}
|
|
|
|
|
2014-06-04 03:49:26 +04:00
|
|
|
// MaskUnit masks the given Unit by symlinking its unit file to
|
|
|
|
// /dev/null, analogous to `systemctl mask`.
|
2014-05-21 22:03:52 +04:00
|
|
|
// N.B.: Unlike `systemctl mask`, this function will *remove any existing unit
|
2014-06-04 03:49:26 +04:00
|
|
|
// file at the location*, to ensure that the mask will succeed.
|
2014-06-06 04:40:53 +04:00
|
|
|
func (s *systemd) MaskUnit(unit *Unit) error {
|
|
|
|
masked := unit.Destination(s.root)
|
2014-05-21 22:03:52 +04:00
|
|
|
if _, err := os.Stat(masked); os.IsNotExist(err) {
|
|
|
|
if err := os.MkdirAll(path.Dir(masked), os.FileMode(0755)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else if err := os.Remove(masked); err != nil {
|
2014-05-07 03:18:36 +04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return os.Symlink("/dev/null", masked)
|
|
|
|
}
|
2014-06-04 03:49:26 +04:00
|
|
|
|
|
|
|
// UnmaskUnit is analogous to systemd's unit_file_unmask. If the file
|
|
|
|
// associated with the given Unit is empty or appears to be a symlink to
|
|
|
|
// /dev/null, it is removed.
|
2014-06-06 04:40:53 +04:00
|
|
|
func (s *systemd) UnmaskUnit(unit *Unit) error {
|
|
|
|
masked := unit.Destination(s.root)
|
2014-06-04 03:49:26 +04:00
|
|
|
ne, err := nullOrEmpty(masked)
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return nil
|
|
|
|
} else if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !ne {
|
|
|
|
log.Printf("%s is not null or empty, refusing to unmask", masked)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return os.Remove(masked)
|
|
|
|
}
|
|
|
|
|
|
|
|
// nullOrEmpty checks whether a given path appears to be an empty regular file
|
|
|
|
// or a symlink to /dev/null
|
|
|
|
func nullOrEmpty(path string) (bool, error) {
|
|
|
|
fi, err := os.Stat(path)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
m := fi.Mode()
|
|
|
|
if m.IsRegular() && fi.Size() <= 0 {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
if m&os.ModeCharDevice > 0 {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
return false, nil
|
|
|
|
}
|
2014-06-06 04:40:53 +04:00
|
|
|
|
|
|
|
func ExecuteScript(scriptPath string) (string, error) {
|
|
|
|
props := []dbus.Property{
|
|
|
|
dbus.PropDescription("Unit generated and executed by coreos-cloudinit on behalf of user"),
|
|
|
|
dbus.PropExecStart([]string{"/bin/bash", scriptPath}, false),
|
|
|
|
}
|
|
|
|
|
|
|
|
base := path.Base(scriptPath)
|
|
|
|
name := fmt.Sprintf("coreos-cloudinit-%s.service", base)
|
|
|
|
|
|
|
|
log.Printf("Creating transient systemd unit '%s'", name)
|
|
|
|
|
|
|
|
conn, err := dbus.New()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = conn.StartTransientUnit(name, "replace", props...)
|
|
|
|
return name, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func SetHostname(hostname string) error {
|
|
|
|
return exec.Command("hostnamectl", "set-hostname", hostname).Run()
|
|
|
|
}
|
|
|
|
|
|
|
|
func Hostname() (string, error) {
|
|
|
|
return os.Hostname()
|
|
|
|
}
|
|
|
|
|
|
|
|
func MachineID(root string) string {
|
|
|
|
contents, _ := ioutil.ReadFile(path.Join(root, "etc", "machine-id"))
|
|
|
|
id := strings.TrimSpace(string(contents))
|
|
|
|
|
|
|
|
if id == fakeMachineID {
|
|
|
|
id = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return id
|
|
|
|
}
|