Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow users to tag images in read/only image stores #881

Merged
merged 1 commit into from
Apr 28, 2021

Conversation

rhatdan
Copy link
Member

@rhatdan rhatdan commented Apr 26, 2021

Fixes: containers/podman#9412

Signed-off-by: Daniel J Walsh dwalsh@redhat.com

@rhatdan rhatdan force-pushed the selinux branch 3 times, most recently from b963fc0 to 9a8d594 Compare April 26, 2021 19:20
@rhatdan
Copy link
Member Author

rhatdan commented Apr 26, 2021

@containers/podman-maintainers PTAL

@TomSweeneyRedHat
Copy link
Member

Alll sorts of test unhappiness @rhatdan

Fixes:  containers/podman#9412

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
@rhatdan
Copy link
Member Author

rhatdan commented Apr 28, 2021

Copy link
Member

@giuseppe giuseppe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Member

@saschagrunert saschagrunert left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@rhatdan rhatdan merged commit 86fe378 into containers:master Apr 28, 2021
if len(deduped) > 1 {
// Do not want to create image name in R/W storage
deduped = deduped[1:]
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can someone walk me through what's going on from line 2135 to 2140?
Why is the lock we take on 2136 read-write if the lock taken at line 2107 was read-only?
Why do we drop the first (and only the first) name of the possibly many names that the image record in the read-only store has attached to it when adding a record to the read-write store that will include the new name? What happens when someone calls us without exactly the set of names in i.Names?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The first name is the existing image, the follow on names are the names being tagged.
Since we did not find the first name in the Read/Write store, but only in the Read/Only store, we want to add the new names to the readwrite store. We need the read/write lock now, so close the existing read/only lock and create a read/write lock, and then create images with the new name.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The existing image can have had multiple names attached to it, and there's no requirement that SetNames() include more names than were already set on the image. That sort of explains the > 1 test for me, but it sounds like you're making an assumption here that isn't correct.
The read-write store was already locked for writing on line 2107. I still don't see the point of releasing the lock on line 2135 only to reacquire it on the very next line.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Podman Tag Read Only Images
5 participants