Page MenuHomeFreeBSD

Fix -S with -l not being atomic.
ClosedPublic

Authored by bdrewery on Aug 9 2016, 7:29 PM.
Tags
None
Referenced Files
F81985254: D7452.id19184.diff
Wed, Apr 24, 3:50 AM
Unknown Object (File)
Fri, Apr 19, 1:46 PM
Unknown Object (File)
Tue, Apr 16, 4:05 PM
Unknown Object (File)
Dec 27 2023, 2:56 PM
Unknown Object (File)
Dec 18 2023, 5:39 PM
Unknown Object (File)
Nov 4 2023, 9:00 PM
Unknown Object (File)
Aug 26 2023, 3:57 PM
Unknown Object (File)
Jul 16 2023, 6:55 AM
Subscribers

Details

Summary

It was unlinking the target even though it uses rename(2) which already
effectively does that. -S is intended to not unlink(2) the target first.

MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division

Test Plan

Truss and:

/usr/tests/usr.bin/xinstall # kyua test
install_test:copy_self  ->  passed  [0.036s]
install_test:copy_self_comparing  ->  passed  [0.035s]
install_test:copy_self_safe  ->  passed  [0.035s]
install_test:copy_self_safe_comparing  ->  passed  [0.035s]
install_test:copy_to_nonexistent  ->  passed  [0.035s]
install_test:copy_to_nonexistent_backup  ->  passed  [0.035s]
install_test:copy_to_nonexistent_backup_safe  ->  passed  [0.035s]
install_test:copy_to_nonexistent_comparing  ->  passed  [0.035s]
install_test:copy_to_nonexistent_preserving  ->  passed  [0.035s]
install_test:copy_to_nonexistent_safe  ->  passed  [0.035s]
install_test:copy_to_nonexistent_safe_comparing  ->  passed  [0.035s]
install_test:hard_link  ->  passed  [0.033s]
install_test:mkdir_simple  ->  passed  [0.052s]
install_test:overwrite  ->  passed  [0.035s]
install_test:overwrite_backup  ->  passed  [0.036s]
install_test:overwrite_backup_comparing  ->  passed  [0.037s]
install_test:overwrite_backup_safe  ->  passed  [0.036s]
install_test:overwrite_backup_safe_comparing  ->  passed  [0.037s]
install_test:overwrite_comparing  ->  passed  [0.035s]
install_test:overwrite_eq  ->  passed  [0.035s]
install_test:overwrite_eq_comparing  ->  passed  [0.035s]
install_test:overwrite_eq_safe  ->  passed  [0.035s]
install_test:overwrite_eq_safe_comparing  ->  passed  [0.035s]
install_test:overwrite_safe  ->  passed  [0.035s]
install_test:overwrite_safe_comparing  ->  passed  [0.035s]
install_test:strip_changing  ->  passed  [0.045s]
install_test:strip_changing_comparing  ->  passed  [0.045s]
install_test:strip_changing_overwrite  ->  passed  [0.045s]
install_test:strip_changing_overwrite_comparing  ->  passed  [0.045s]
install_test:strip_changing_overwrite_eq  ->  passed  [0.045s]
install_test:strip_changing_overwrite_eq_comparing  ->  passed  [0.045s]
install_test:strip_noop  ->  passed  [0.038s]
install_test:symbolic_link  ->  passed  [0.035s]
install_test:symbolic_link_absolute  ->  passed  [0.036s]
install_test:symbolic_link_relative  ->  passed  [0.036s]

Results file id is usr_tests_usr.bin_xinstall.20160809-192916-083663
Results saved to /root/.kyua/store/results.usr_tests_usr.bin_xinstall.20160809-192916-083663.db

35/35 passed (0 failed)

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

bdrewery retitled this revision from to Fix -S with -l not being atomic..
bdrewery updated this object.
bdrewery edited the test plan for this revision. (Show Details)
bdrewery added reviewers: brooks, jhb, bapt.

These came in with the initial import of -l from NetBSD, but NetBSD never had these unlinks. The unlink is kept for the default (no -S) case.

jhb edited edge metadata.
This revision is now accepted and ready to land.Aug 10 2016, 1:47 PM
This revision was automatically updated to reflect the committed changes.