Skip to content

Commit

Permalink
Update copy.DirCopy to leave sockets open
Browse files Browse the repository at this point in the history
- Closes containers#2113

copy.DirCopy contains code to create named sockets matching those on the
source; however, this operation closes the socket, removing it
implicitly from the destination and causing later chown and chmod
operations to fail.

This commit removes the `.close()` operation, leaving the socket in
place at the destination, as it is in the source.

Signed-off-by: Jonathon Anderson <[email protected]>
  • Loading branch information
anderbubble committed Sep 27, 2024
1 parent f45f1ed commit 0a7988c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/copy/copy_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,10 @@ func DirCopy(srcDir, dstDir string, copyMode Mode, copyXattrs bool) error {
}

case mode&os.ModeSocket != 0:
s, err := net.Listen("unix", dstPath)
_, err := net.Listen("unix", dstPath)
if err != nil {
return err
}
s.Close()

case mode&os.ModeDevice != 0:
if unshare.IsRootless() {
Expand Down
4 changes: 4 additions & 0 deletions drivers/copy/copy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ package copy
import (
"fmt"
"math/rand"
"net"
"os"
"path/filepath"
"syscall"
Expand Down Expand Up @@ -83,6 +84,9 @@ func randomMode(baseMode int) os.FileMode {

func populateSrcDir(t *testing.T, srcDir string, remainingDepth int) {
if remainingDepth == 0 {
socketName := filepath.Join(srcDir, fmt.Sprintf("srcsocket", i))
_, err := net.Listen("unix", socketName)
assert.NoError(t, err)
return
}
aTime := time.Unix(rand.Int63(), 0)
Expand Down

0 comments on commit 0a7988c

Please sign in to comment.