Skip to content

Commit

Permalink
corecfg: add "system.timezone" setting to the system settings
Browse files Browse the repository at this point in the history
* corecfg: add "system.timezone" setting to the system settings

This commit adds support for setting the timezone via the snap
configuration system. This allows image customizations in UC20
that used to be done via direct manipulation of the "writable"
partition in UC16/UC18.

The image customization part will be fine as is but for the runtime
setting we also need to fix LP: #1650688

* configcore: improve timezone validation (thanks to Zyga)

* configcore: add comment about need for "virtual" configuration

* tests: add system.hostname test to core20-early-config test too

* configcore: rename "output" -> "hostname"

* configcore: improve comment about why /etc/writable/hostname

* configcore: fix typo

* tests: improve timezone nested tests (thanks to Pawel)
  • Loading branch information
mvo5 committed Aug 18, 2020
1 parent 740bd97 commit c73ba89
Show file tree
Hide file tree
Showing 10 changed files with 238 additions and 3 deletions.
3 changes: 3 additions & 0 deletions overlord/configstate/configcore/handlers.go
Expand Up @@ -85,6 +85,9 @@ func init() {
// journal.persistent
addFSOnlyHandler(validateJournalSettings, handleJournalConfiguration, coreOnly)

// system.timezone
addFSOnlyHandler(validateTimezoneSettings, handleTimezoneConfiguration, coreOnly)

sysconfig.ApplyFilesystemOnlyDefaultsImpl = func(rootDir string, defaults map[string]interface{}, options *sysconfig.FilesystemOnlyApplyOptions) error {
return filesystemOnlyApply(rootDir, plainCoreConfig(defaults), options)
}
Expand Down
96 changes: 96 additions & 0 deletions overlord/configstate/configcore/timezone.go
@@ -0,0 +1,96 @@
// -*- Mode: Go; indent-tabs-mode: t -*-

/*
* Copyright (C) 2020 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 configcore

import (
"fmt"
"os"
"os/exec"
"path/filepath"
"regexp"

"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/overlord/configstate/config"
)

func init() {
// add supported configuration of this module
supportedConfigurations["core.system.timezone"] = true
}

var validTimezone = regexp.MustCompile(`^[a-zA-Z0-9+_-]+(/[a-zA-Z0-9+_-]+)?(/[a-zA-Z0-9+_-]+)?$`).MatchString

func validateTimezoneSettings(tr config.ConfGetter) error {
timezone, err := coreCfg(tr, "system.timezone")
if err != nil {
return err
}
if timezone == "" {
return nil
}
if !validTimezone(timezone) {
return fmt.Errorf("cannot set timezone %q: name not valid", timezone)
}

return nil
}

func handleTimezoneConfiguration(tr config.ConfGetter, opts *fsOnlyContext) error {
// TODO: convert to "virtual" configuration nodes once we have support
// for this. The current code is not ideal because if one calls
// `snap get system system.hostname` the answer can be ""
// when not set via snap set.
//
// It will also override any hostname on the next `snap set` run
// that was written not using `snap set system system.hostname`.
timezone, err := coreCfg(tr, "system.timezone")
if err != nil {
return nil
}
// nothing to do
if timezone == "" {
return nil
}
// runtime system
if opts == nil {
output, err := exec.Command("timedatectl", "set-timezone", timezone).CombinedOutput()
if err != nil {
return fmt.Errorf("cannot set timezone: %v", osutil.OutputErr(output, err))
}
} else {
// On the UC16/UC18/UC20 images the file /etc/hostname is a
// symlink to /etc/writable/hostname. The /etc/hostname is
// not part of the "writable-path" so we must set the file
// in /etc/writable here for this to work.
localtimePath := filepath.Join(opts.RootDir, "/etc/writable/localtime")
if err := os.MkdirAll(filepath.Dir(localtimePath), 0755); err != nil {
return err
}
if err := os.Symlink(filepath.Join("/usr/share/zoneinfo", timezone), localtimePath); err != nil {
return err
}
timezonePath := filepath.Join(opts.RootDir, "/etc/writable/timezone")
if err := osutil.AtomicWriteFile(timezonePath, []byte(timezone+"\n"), 0644, 0); err != nil {
return fmt.Errorf("cannot write timezone: %v", err)
}
}

return nil
}
102 changes: 102 additions & 0 deletions overlord/configstate/configcore/timezone_test.go
@@ -0,0 +1,102 @@
// -*- Mode: Go; indent-tabs-mode: t -*-

/*
* Copyright (C) 2020 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 configcore_test

import (
"os"
"path/filepath"

. "gopkg.in/check.v1"

"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/overlord/configstate/configcore"
"github.com/snapcore/snapd/release"
"github.com/snapcore/snapd/testutil"
)

type timezoneSuite struct {
configcoreSuite
}

var _ = Suite(&timezoneSuite{})

func (s *timezoneSuite) SetUpTest(c *C) {
s.configcoreSuite.SetUpTest(c)

err := os.MkdirAll(filepath.Join(dirs.GlobalRootDir, "/etc/"), 0755)
c.Assert(err, IsNil)
}

func (s *timezoneSuite) TestConfigureTimezoneInvalid(c *C) {
invalidTimezones := []string{
"no-#", "no-ä", "no/triple/slash/",
}

for _, tz := range invalidTimezones {
err := configcore.Run(&mockConf{
state: s.state,
conf: map[string]interface{}{
"system.timezone": tz,
},
})
c.Assert(err, ErrorMatches, `cannot set timezone.*`)
}
}

func (s *timezoneSuite) TestConfigureTimezoneIntegration(c *C) {
restore := release.MockOnClassic(false)
defer restore()

mockedTimedatectl := testutil.MockCommand(c, "timedatectl", "")
defer mockedTimedatectl.Restore()

validTimezones := []string{
"UTC", "Europe/Malta", "US/Indiana-Starke", "Africa/Sao_Tome",
"America/Argentina/Cordoba", "America/Argentina/La_Rioja",
"Etc/GMT+1", "CST6CDT", "GMT0", "GMT-0", "PST8PDT",
}

for _, tz := range validTimezones {
err := configcore.Run(&mockConf{
state: s.state,
conf: map[string]interface{}{
"system.timezone": tz,
},
})
c.Assert(err, IsNil)
c.Check(mockedTimedatectl.Calls(), DeepEquals, [][]string{
{"timedatectl", "set-timezone", tz},
})
mockedTimedatectl.ForgetCalls()
}
}

func (s *timezoneSuite) TestFilesystemOnlyApply(c *C) {
conf := configcore.PlainCoreConfig(map[string]interface{}{
"system.timezone": "Europe/Berlin",
})
tmpDir := c.MkDir()
c.Assert(configcore.FilesystemOnlyApply(tmpDir, conf, nil), IsNil)

c.Check(filepath.Join(tmpDir, "/etc/writable/timezone"), testutil.FileEquals, "Europe/Berlin\n")
p, err := os.Readlink(filepath.Join(tmpDir, "/etc/writable/localtime"))
c.Assert(err, IsNil)
c.Check(p, Equals, "/usr/share/zoneinfo/Europe/Berlin")
}
11 changes: 10 additions & 1 deletion tests/core/snap-set-core-config/task.yaml
Expand Up @@ -29,7 +29,10 @@ restore: |
systemctl enable rsyslog.service
systemctl start rsyslog.service
fi
if [ -e current-timezone ]; then
timedatectl set-timezone "$(cat current-timezone)"
fi
rm -f /etc/systemd/login.conf.d/00-snap-core.conf
execute: |
Expand Down Expand Up @@ -134,3 +137,9 @@ execute: |
snap unset system system.kernel.printk.console-loglevel
not test -e /etc/sysctl.d/99-snapd.conf
sysctl -n kernel.printk|MATCH "^4\s+"
echo "setting the timezone works"
cat /etc/timezone > current-timezone
snap set system system.timezone=Europe/Malta
MATCH "Europe/Malta" /etc/timezone
test "$(readlink -f /etc/localtime)" = "/usr/share/zoneinfo/Europe/Malta"
2 changes: 2 additions & 0 deletions tests/nested/manual/core-early-config/defaults.yaml
Expand Up @@ -3,3 +3,5 @@ defaults:
service:
rsyslog:
disable: true
system:
timezone: Europe/Malta
10 changes: 9 additions & 1 deletion tests/nested/manual/core-early-config/install
@@ -1,2 +1,10 @@
#!/bin/sh
readlink /etc/systemd/system/rsyslog.service > "$SNAP_COMMON"/debug.txt 2>&1 || true

# rsyslog.service is expected to be a symlink at this point, and apparmor
# doesn't control readlink, so this should work even without devmode or
# system-files plug.
RSYSLOG=$(readlink /etc/systemd/system/rsyslog.service)
echo "rsyslog symlink: $RSYSLOG" > "$SNAP_COMMON"/debug.txt || true

LOCALTIME=$(readlink /etc/writable/localtime)
echo "localtime symlink: $LOCALTIME" >> "$SNAP_COMMON"/debug.txt 2>&1 || true
7 changes: 6 additions & 1 deletion tests/nested/manual/core-early-config/task.yaml
Expand Up @@ -60,5 +60,10 @@ execute: |
echo "Test that rsyslog was disabled early."
# early config is witnessed by install hook of the pc gadget
execute_remote "cat /var/snap/pc/common/debug.txt" | MATCH "/dev/null"
execute_remote "cat /var/snap/pc/common/debug.txt" | MATCH "rsyslog symlink: /dev/null"
execute_remote "test -L /etc/systemd/system/rsyslog.service"
# timezone is set
execute_remote "cat /etc/timezone" | MATCH "Europe/Malta"
execute_remote "readlink -f /etc/localtime" | MATCH "Europe/Malta"
execute_remote "cat /var/snap/pc/common/debug.txt" | MATCH "localtime symlink: /usr/share/zoneinfo/Europe/Malta"
2 changes: 2 additions & 0 deletions tests/nested/manual/core20-early-config/defaults.yaml
Expand Up @@ -8,3 +8,5 @@ defaults:
system:
power-key-action: ignore
disable-backlight-service: true
system:
timezone: Europe/Malta
3 changes: 3 additions & 0 deletions tests/nested/manual/core20-early-config/install
Expand Up @@ -8,3 +8,6 @@ echo "rsyslog symlink: $RSYSLOG" > "$SNAP_COMMON"/debug.txt || true

BACKLIGHT=$(readlink /etc/systemd/system/systemd-backlight@.service)
echo "backlight symlink: $BACKLIGHT" >> "$SNAP_COMMON"/debug.txt || true

LOCALTIME=$(readlink /etc/writable/localtime)
echo "localtime symlink: $LOCALTIME" >> "$SNAP_COMMON"/debug.txt 2>&1 || true
5 changes: 5 additions & 0 deletions tests/nested/manual/core20-early-config/task.yaml
Expand Up @@ -65,3 +65,8 @@ execute: |
# inspected from install hook of the gadget.
execute_remote "cat /var/snap/pc/common/debug.txt" | MATCH "rsyslog symlink: /dev/null"
execute_remote "cat /var/snap/pc/common/debug.txt" | MATCH "backlight symlink: /dev/null"
# timezone is set
execute_remote "cat /etc/timezone" | MATCH "Europe/Malta"
execute_remote "readlink -f /etc/localtime" | MATCH "Europe/Malta"
execute_remote "cat /var/snap/pc/common/debug.txt" | MATCH "localtime symlink: /usr/share/zoneinfo/Europe/Malta"

0 comments on commit c73ba89

Please sign in to comment.