mirror of https://github.com/containers/podman.git
volumes: push the chown logic to runtime_volume_linux.go
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
parent
9b789359f1
commit
f7e72bc86a
|
@ -1274,6 +1274,28 @@ func WithVolumeName(name string) VolumeCreateOption {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithVolumeUID sets the uid of the owner.
|
||||||
|
func WithVolumeUID(uid int) VolumeCreateOption {
|
||||||
|
return func(volume *Volume) error {
|
||||||
|
if volume.valid {
|
||||||
|
return ErrVolumeFinalized
|
||||||
|
}
|
||||||
|
volume.config.UID = uid
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithVolumeGID sets the gid of the owner.
|
||||||
|
func WithVolumeGID(gid int) VolumeCreateOption {
|
||||||
|
return func(volume *Volume) error {
|
||||||
|
if volume.valid {
|
||||||
|
return ErrVolumeFinalized
|
||||||
|
}
|
||||||
|
volume.config.GID = gid
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// WithVolumeLabels sets the labels of the volume.
|
// WithVolumeLabels sets the labels of the volume.
|
||||||
func WithVolumeLabels(labels map[string]string) VolumeCreateOption {
|
func WithVolumeLabels(labels map[string]string) VolumeCreateOption {
|
||||||
return func(volume *Volume) error {
|
return func(volume *Volume) error {
|
||||||
|
|
|
@ -182,14 +182,11 @@ func (r *Runtime) newContainer(ctx context.Context, rSpec *spec.Spec, options ..
|
||||||
if vol.Source[0] != '/' && isNamedVolume(vol.Source) {
|
if vol.Source[0] != '/' && isNamedVolume(vol.Source) {
|
||||||
volInfo, err := r.state.Volume(vol.Source)
|
volInfo, err := r.state.Volume(vol.Source)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
newVol, err := r.newVolume(ctx, WithVolumeName(vol.Source), withSetCtrSpecific())
|
newVol, err := r.newVolume(ctx, WithVolumeName(vol.Source), withSetCtrSpecific(), WithVolumeUID(ctr.RootUID()), WithVolumeGID(ctr.RootGID()))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrapf(err, "error creating named volume %q", vol.Source)
|
return nil, errors.Wrapf(err, "error creating named volume %q", vol.Source)
|
||||||
}
|
}
|
||||||
ctr.config.Spec.Mounts[i].Source = newVol.MountPoint()
|
ctr.config.Spec.Mounts[i].Source = newVol.MountPoint()
|
||||||
if err := os.Chown(ctr.config.Spec.Mounts[i].Source, ctr.RootUID(), ctr.RootGID()); err != nil {
|
|
||||||
return nil, errors.Wrapf(err, "cannot chown %q to %d:%d", ctr.config.Spec.Mounts[i].Source, ctr.RootUID(), ctr.RootGID())
|
|
||||||
}
|
|
||||||
if err := ctr.copyWithTarFromImage(ctr.config.Spec.Mounts[i].Destination, ctr.config.Spec.Mounts[i].Source); err != nil && !os.IsNotExist(err) {
|
if err := ctr.copyWithTarFromImage(ctr.config.Spec.Mounts[i].Destination, ctr.config.Spec.Mounts[i].Source); err != nil && !os.IsNotExist(err) {
|
||||||
return nil, errors.Wrapf(err, "failed to copy content into new volume mount %q", vol.Source)
|
return nil, errors.Wrapf(err, "failed to copy content into new volume mount %q", vol.Source)
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,10 +51,20 @@ func (r *Runtime) newVolume(ctx context.Context, options ...VolumeCreateOption)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the mountpoint of this volume
|
// Create the mountpoint of this volume
|
||||||
fullVolPath := filepath.Join(r.config.VolumePath, volume.config.Name, "_data")
|
volPathRoot := filepath.Join(r.config.VolumePath, volume.config.Name)
|
||||||
if err := os.MkdirAll(fullVolPath, 0755); err != nil {
|
if err := os.MkdirAll(volPathRoot, 0700); err != nil {
|
||||||
|
return nil, errors.Wrapf(err, "error creating volume directory %q", volPathRoot)
|
||||||
|
}
|
||||||
|
if err := os.Chown(volPathRoot, volume.config.UID, volume.config.GID); err != nil {
|
||||||
|
return nil, errors.Wrapf(err, "error chowning volume directory %q to %d:%d", volPathRoot, volume.config.UID, volume.config.GID)
|
||||||
|
}
|
||||||
|
fullVolPath := filepath.Join(volPathRoot, "_data")
|
||||||
|
if err := os.Mkdir(fullVolPath, 0755); err != nil {
|
||||||
return nil, errors.Wrapf(err, "error creating volume directory %q", fullVolPath)
|
return nil, errors.Wrapf(err, "error creating volume directory %q", fullVolPath)
|
||||||
}
|
}
|
||||||
|
if err := os.Chown(fullVolPath, volume.config.UID, volume.config.GID); err != nil {
|
||||||
|
return nil, errors.Wrapf(err, "error chowning volume directory %q to %d:%d", fullVolPath, volume.config.UID, volume.config.GID)
|
||||||
|
}
|
||||||
if err := LabelVolumePath(fullVolPath, true); err != nil {
|
if err := LabelVolumePath(fullVolPath, true); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,8 @@ type VolumeConfig struct {
|
||||||
Options map[string]string `json:"options"`
|
Options map[string]string `json:"options"`
|
||||||
Scope string `json:"scope"`
|
Scope string `json:"scope"`
|
||||||
IsCtrSpecific bool `json:"ctrSpecific"`
|
IsCtrSpecific bool `json:"ctrSpecific"`
|
||||||
|
UID int `json:"uid"`
|
||||||
|
GID int `json:"gid"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Name retrieves the volume's name
|
// Name retrieves the volume's name
|
||||||
|
|
Loading…
Reference in New Issue