mirror of
				https://github.com/containers/podman.git
				synced 2025-11-04 08:56:05 +08:00 
			
		
		
		
	We now use the golang error wrapping format specifier `%w` instead of the deprecated github.com/pkg/errors package. [NO NEW TESTS NEEDED] Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package libpod
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"path/filepath"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/containers/common/pkg/config"
 | 
						|
	"github.com/containers/podman/v4/libpod/define"
 | 
						|
	"github.com/containers/podman/v4/pkg/rootless"
 | 
						|
	"github.com/containers/storage/pkg/stringid"
 | 
						|
	"github.com/sirupsen/logrus"
 | 
						|
)
 | 
						|
 | 
						|
// Creates a new, empty pod
 | 
						|
func newPod(runtime *Runtime) *Pod {
 | 
						|
	pod := new(Pod)
 | 
						|
	pod.config = new(PodConfig)
 | 
						|
	pod.config.ID = stringid.GenerateNonCryptoID()
 | 
						|
	pod.config.Labels = make(map[string]string)
 | 
						|
	pod.config.CreatedTime = time.Now()
 | 
						|
	//	pod.config.InfraContainer = new(ContainerConfig)
 | 
						|
	pod.state = new(podState)
 | 
						|
	pod.runtime = runtime
 | 
						|
 | 
						|
	return pod
 | 
						|
}
 | 
						|
 | 
						|
// Update pod state from database
 | 
						|
func (p *Pod) updatePod() error {
 | 
						|
	if err := p.runtime.state.UpdatePod(p); err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// Save pod state to database
 | 
						|
func (p *Pod) save() error {
 | 
						|
	if err := p.runtime.state.SavePod(p); err != nil {
 | 
						|
		return fmt.Errorf("error saving pod %s state: %w", p.ID(), err)
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// Refresh a pod's state after restart
 | 
						|
// This cannot lock any other pod, but may lock individual containers, as those
 | 
						|
// will have refreshed by the time pod refresh runs.
 | 
						|
func (p *Pod) refresh() error {
 | 
						|
	// Need to to an update from the DB to pull potentially-missing state
 | 
						|
	if err := p.runtime.state.UpdatePod(p); err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	if !p.valid {
 | 
						|
		return define.ErrPodRemoved
 | 
						|
	}
 | 
						|
 | 
						|
	// Retrieve the pod's lock
 | 
						|
	lock, err := p.runtime.lockManager.AllocateAndRetrieveLock(p.config.LockID)
 | 
						|
	if err != nil {
 | 
						|
		return fmt.Errorf("error retrieving lock %d for pod %s: %w", p.config.LockID, p.ID(), err)
 | 
						|
	}
 | 
						|
	p.lock = lock
 | 
						|
 | 
						|
	// We need to recreate the pod's cgroup
 | 
						|
	if p.config.UsePodCgroup {
 | 
						|
		switch p.runtime.config.Engine.CgroupManager {
 | 
						|
		case config.SystemdCgroupsManager:
 | 
						|
			cgroupPath, err := systemdSliceFromPath(p.config.CgroupParent, fmt.Sprintf("libpod_pod_%s", p.ID()), p.ResourceLim())
 | 
						|
			if err != nil {
 | 
						|
				logrus.Errorf("Creating Cgroup for pod %s: %v", p.ID(), err)
 | 
						|
			}
 | 
						|
			p.state.CgroupPath = cgroupPath
 | 
						|
		case config.CgroupfsCgroupsManager:
 | 
						|
			if rootless.IsRootless() && isRootlessCgroupSet(p.config.CgroupParent) {
 | 
						|
				p.state.CgroupPath = filepath.Join(p.config.CgroupParent, p.ID())
 | 
						|
 | 
						|
				logrus.Debugf("setting pod cgroup to %s", p.state.CgroupPath)
 | 
						|
			}
 | 
						|
		default:
 | 
						|
			return fmt.Errorf("unknown cgroups manager %s specified: %w", p.runtime.config.Engine.CgroupManager, define.ErrInvalidArg)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Save changes
 | 
						|
	return p.save()
 | 
						|
}
 |