#path #git #version-control #conversion #utf-8 #byte-string #directory

gix-path

A crate of the gitoxide project dealing paths and their conversions

17 unstable releases (3 breaking)

0.10.7 Mar 14, 2024
0.10.5 Jan 26, 2024
0.10.3 Dec 30, 2023
0.10.0 Sep 8, 2023
0.7.3 Mar 30, 2023

#9 in #byte-string

Download history 108931/week @ 2024-01-05 111688/week @ 2024-01-12 122281/week @ 2024-01-19 128695/week @ 2024-01-26 137737/week @ 2024-02-02 133178/week @ 2024-02-09 130602/week @ 2024-02-16 136329/week @ 2024-02-23 144782/week @ 2024-03-01 138364/week @ 2024-03-08 154846/week @ 2024-03-15 154763/week @ 2024-03-22 144808/week @ 2024-03-29 139089/week @ 2024-04-05 141987/week @ 2024-04-12 118137/week @ 2024-04-19

567,730 downloads per month
Used in 225 crates (26 directly)

MIT/Apache

71KB
1.5K SLoC

This crate contains an assortment of utilities to deal with paths and their conversions.

Generally git treats paths as bytes, but inherently assumes non-illformed UTF-8 as encoding on windows. Internally, it expects slashes to be used as path separators and paths in files must have slashes, with conversions being performed on windows accordingly.

Research

  • windows
  • dirent.c contains all implementation (seemingly) of opening directories and reading their entries, along with all path conversions (UTF-16 for windows). This is done on the fly so git can work with in UTF-8.
  • mingw is used for the conversion and it appears they handle surrogates during the conversion, maybe some sort of non-strict UTF-8 converter? Actually it uses WideCharToMultiByte under the hood which by now does fail if the UTF-8 would be invalid unicode, i.e. unicode pairs.
  • OsString on windows already stores strings as WTF-8, which supports surrogate pairs, something that UTF-8 isn't allowed do it for security reasons, after all it's UTF-16 specific and exists only to extend the encodable code-points.
  • informative reading on WTF-8 which is the encoding used by Rust internally that deals with surrogates and non-wellformed surrogates (those that aren't in pairs).
  • unix
  • It uses opendir and readdir respectively. There is no encoding specified, except that these paths are null-terminated.

Learnings

Surrogate pairs are a way to extend the encodable value range in UTF-16 encodings, used primarily on windows and in Javascript. For a long time these codepoints used for surrogates, always to be used in pairs, were not assigned, until…they were for rare emojies and the likes. The unicode standard does not require surrogates to happen in pairs, even though by now unpaired surrogates in UTF-16 are considered ill-formed, which aren't supposed to be converted to UTF-8 for example.

This is the reason we have to deal with to_string_lossy(), it's just for that quirk.

This also means the only platform ever eligible to see conversion errors is windows, and there it's only older pre-vista windows versions which incorrectly allow ill-formed UTF-16 strings. Newer versions don't perform such conversions anymore, for example when going from UTF-16 to UTF-8, they will trigger an error.

Conclusions

Since WideCharToMultiByte by now is fixed (Vista onward) to produce valid UTF-8, lone surrogate codepoints will cause failure, which git doesn't care about.

We will, though, which means from now on we can just convert to UTF-8 on windows and bubble up errors where necessary, preventing potential mismatched surrogate pairs to ever be saved on disk by gitoxide.

Even though the error only exists on older windows versions, we will represent it in the type system through fallible function calls. Callers may .expect() on the result to indicate they don't wish to handle this special and rare case. Note that servers should not ever get into a code-path which does panic though.

Dependencies

~1–9MB
~75K SLoC