Skip to content

Commit

Permalink
pkg/timezone: add helper function to configure timezone for pods/cont…
Browse files Browse the repository at this point in the history
…ainers

This PR consolidates common functionality used by CRI-O and Podman
in one central location. I aimed to keep this change more generic,
considering that CRI-O and Podman have different ways for the file
mounting and applying security labels.

Signed-off-by: Sohan Kunkerkar <[email protected]>
  • Loading branch information
sohankunkerkar committed Dec 21, 2023
1 parent 4d7586e commit 5e15c0c
Showing 1 changed file with 98 additions and 0 deletions.
98 changes: 98 additions & 0 deletions pkg/timezone/timezone_linux.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
//go:build linux
// +build linux

package timezone

import (
"errors"
"fmt"
"io"
"io/fs"
"os"
"path/filepath"

securejoin "github.com/cyphar/filepath-securejoin"
"github.com/sirupsen/logrus"
"golang.org/x/sys/unix"
)

// ConfigureContainerTimeZone configure the time zone for a container.
// It returns the path of the created /etc/localtime file if needed.
func ConfigureContainerTimeZone(timezone, containerRunDir, mountPoint, etcPath, mountLabel, containerID string) (string, error) {
if timezone == "" {
return "", nil
}
var err error
timezonePath := filepath.Join("/usr/share/zoneinfo", timezone)
if timezone == "local" {
timezonePath, err = filepath.EvalSymlinks("/etc/localtime")
if err != nil {
return "", fmt.Errorf("finding local timezone for container %s: %w", containerID, err)
}
}

etcFd, err := unix.Open(etcPath, unix.O_RDONLY|unix.O_PATH, 0)
if err != nil {
return "", fmt.Errorf("open /etc in the container: %w", err)
}
defer unix.Close(etcFd)

// Make sure to remove any existing localtime file in the container to not create invalid links
err = unix.Unlinkat(etcFd, "localtime", 0)
if err != nil && !errors.Is(err, fs.ErrNotExist) {
return "", fmt.Errorf("removing /etc/localtime: %w", err)
}

hostPath, err := securejoin.SecureJoin(mountPoint, timezonePath)
if err != nil {
return "", fmt.Errorf("resolve zoneinfo path in the container: %w", err)
}

if _, err := os.Stat(hostPath); err != nil {
// File does not exist, which means tzdata is not installed in the container.
// Create /etc/localtime as a copy from the host.
logrus.Debugf("Timezone %s does not exist in the container, create our own copy from the host", timezonePath)
localtimePath, err := copyTimezoneFile(containerRunDir, mountLabel, timezonePath)
if err != nil {
return "", fmt.Errorf("setting timezone for container %s: %w", containerID, err)
}
return localtimePath, nil
} else {

Check warning on line 60 in pkg/timezone/timezone_linux.go

View workflow job for this annotation

GitHub Actions / lint

indent-error-flow: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (revive)
// File exists, let's create a symlink according to localtime(5)
logrus.Debugf("Create localtime symlink for %s", timezonePath)
err = unix.Symlinkat(hostPath, etcFd, "localtime")
if err != nil {
return "", fmt.Errorf("creating /etc/localtime symlink: %w", err)
}
}
return "", nil
}

// copyTimezoneFile copies the timezone file from the host to the container.
func copyTimezoneFile(containerRunDir, mountLabel, zonePath string) (string, error) {

Check warning on line 72 in pkg/timezone/timezone_linux.go

View workflow job for this annotation

GitHub Actions / lint

unused-parameter: parameter 'mountLabel' seems to be unused, consider removing or renaming it as _ (revive)
localtimeCopy := filepath.Join(containerRunDir, "localtime")
file, err := os.Stat(zonePath)
if err != nil {
return "", err
}
if file.IsDir() {
return "", errors.New("invalid timezone: is a directory")
}
src, err := os.Open(zonePath)
if err != nil {
return "", err
}
defer src.Close()

dest, err := os.Create(localtimeCopy)
if err != nil {
return "", err
}
defer dest.Close()

_, err = io.Copy(dest, src)
if err != nil {
return "", err
}
return localtimeCopy, err
}

0 comments on commit 5e15c0c

Please sign in to comment.