Chore
- bump
rust-version
to 1.70
That way clippy will allow to use the fantasticOption::is_some_and()
and friends.
Bug Fixes
-
Don't attempt +x if it was replaced by a non-regular file
This does not make a difference in typical cases, and anytime it
matters something has probably gone unexpectedly, but this narrows
the window of time during which a race condition could occur where
a regular file has been replaced with something else at the same
path (e.g. a directory) by some other process.An example of why it's valuable to avoid this is that if the entry
is a directory then executable permissions have a different meaning
and adding them could increase access unintentionally. Likewise,
when we set executable permissions we remove setuid, setgid, and
sticky bits, which also have different meanings for directories; in
particular, on a directory the sticky bit restricts deletion.(This also automatically avoids some problems in the case of
finalize_entry
being called with a path to set executable that
was never a regular file in the first place. That should not
happen, though, and allowing that is not a goal of this change.) -
Don't set extra permissions with +x on existing file
This fixes a bug that occurred when a regular file tracked as
executable was checked out in a non-exclusive checkout on a
Unix-like system (where the destination is a filesystem that
supports Unix-style executable permissions). This occurs when
destination_is_initially_empty: true
is not explicitly set.Whether the file existed before or not, it is created without
attempting to set its permissions to include executable bits, then
the executable bits are added afterwards. On Unix-like systems, the
file was given unrestricted 0777 permissions and was thus world
writable. This happened regardless of the process umask or any
other contextual factors.Although
0o777
is given as the mode both when permissions are set
on creation (usingOpenOptionsExt::mode
andOpenOptions::open
,
which delegates toopen
), and when they are set after creation
(usingPermissionsExt::set_mode
andstd::fs::set_permissions
,
which delegates tochmod
), the cases do not treat their mode
arguments equivalently.- The first situation worked correctly because
open
automatically
respects the current process umask. (The system takes care of
this, as it is part of the semantics of creating a new file and
specifying desired permissions.) So 777 was really expressing the
idea of maximal permissions of those considered safe under the
current configuration, including executable permissions.
- The first situation worked correctly because
-
But the second situation did not work correctly, because
chmod
calls try to set the exact permissions specified (and usually
succeed). Unlikeopen
, withchmod
there is no implicit use of
the umask.
-
Unset the setuid, setgid, and sticky bits, in the rare case that
any of them are set. Keeping them could be unsafe or have
unexpected effects when set for a file that may conceptually
hold different data or serve a different purpose (since this is
a checkout).For the setuid and setgid bits, it would be unsafe to keep them
when adding new executable permissions. The intent of setuid
and setgit bits is ambiguous in this situation, since they may
have been meant only to apply to an earlier version of the file,
especially since users may expect the file to be deleted and a
new file of the same name to be created, rather than to confer
extra abilities when executable bits are added in the future.
Unsetting them makes adding executable bits where read bits are
already present (which we will do) a reasonably safe operation.In the case of the setgid bit, another reason to remove it is
that, on some systems, the setgid bit in the absence of any
executable bits has the different meaning of enabling mandatory
file locking. If the setgid bit was set for this purpose, then
the effect of setting the EGID and potentialy elevating the
privileges of the user who runs it is surely not intended. -
Check which read bits (for owner, group, and other) are already
set on the file. We do this only by looking at the mode. For
example, ACLs do not participate. -
Set executable bits corresponding to the preexisting read bits.
That is, for each of the owner, group, and others, if it can
read (according to the file mode), set it to be able to execute
as well.In some cases, this may have a different effect from what would
happen if the file were created anew with the desired
permissions specified by a broad mode (e.g. 777) and subject to
the umask. This is because it is possible to have a umask that
limits read and execute permissions differently. Also, the file
may have had its permissions modified in some other way since
creation.
Commit Statistics
- 11 commits contributed to the release over the course of 27 calendar days.
- 27 days passed between releases.
- 3 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
- Uncategorized
- Update all changelogs prior to release (1f6390c)
- Merge pull request #1765 from EliahKagan/finalize-entry-next (8df5ba2)
- Avoid another "unused import" warning on Windows (c956d1b)
- Merge pull request #1764 from EliahKagan/finalize-entry (12f672f)
- Don't attempt +x if it was replaced by a non-regular file (be0abaf)
- Extract and test +x mode setting logic (bf33d2b)
- Don't set extra permissions with +x on existing file (879d29d)
- Test for excessive write permissions on nonexclusive checkout (4d4bf89)
- Merge pull request #1762 from GitoxideLabs/fix-1759 (7ec21bb)
- Bump
rust-version
to 1.70 (17835bc) - Merge pull request #1739 from GitoxideLabs/new-release (d22937f)