Page MenuHomeFreeBSD

cp: Avoid closing an invalid file descriptor.
ClosedPublic

Authored by des on May 17 2025, 7:57 AM.
Tags
None
Referenced Files
F126343078: D50391.id.diff
Mon, Aug 18, 5:18 AM
Unknown Object (File)
Sun, Aug 3, 3:17 AM
Unknown Object (File)
Fri, Aug 1, 11:37 PM
Unknown Object (File)
Tue, Jul 29, 4:31 AM
Unknown Object (File)
Tue, Jul 22, 10:08 AM
Unknown Object (File)
Mon, Jul 21, 2:27 AM
Unknown Object (File)
Sun, Jul 20, 9:38 PM
Unknown Object (File)
Jul 16 2025, 7:54 AM
Subscribers

Details

Summary
  • At the end of copy(), we always close to.dir, even though it can be AT_FDCWD (in the file-to-file case) or even -1 (if we failed to open or create the destination directory). While closing an invalid file descriptor is harmless, it's still bad form.
  • In the DIR_TO_DNE case, initialize to.dir to -1 to guard against the case where mkdir() fails so we never assign anything to to.dir and end up (harmlessly, luckily) closing stdin on our way to the exit.

Coverity ID: 1609954
Fixes: 82fc0d09e862
Sponsored by: Klara, Inc.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

des requested review of this revision.May 17 2025, 7:57 AM
markj added a subscriber: markj.
markj added inline comments.
bin/cp/cp.c
642

I might also explicitly check to.dir != AT_FDCWD rather than assuming that its value is negative instead of, say, INT_MAX.

This revision is now accepted and ready to land.May 17 2025, 1:35 PM
This revision was automatically updated to reflect the committed changes.