Windows: Embed an application manifest in the EXE files
commitbf518b9ba446327a062ddfe67e7e0a5baed2394f
authorLasse Collin <lasse.collin@tukaani.org>
Tue, 1 Oct 2024 09:10:23 +0000 (1 12:10 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Tue, 1 Oct 2024 09:16:29 +0000 (1 12:16 +0300)
treedcfa309365afdb949d316f4f7c216e44d18f334f
parent5718ce932e6ad4262d5fffc9e2a7a838f963d7e5
Windows: Embed an application manifest in the EXE files

IMPORTANT: This includes a security fix to command line tool
           argument handling.

Some toolchains embed an application manifest by default to declare
UAC-compliance. Some also declare compatibility with Vista/8/8.1/10/11
to let the app access features newer than those of Vista.

We want all the above but also two more things:

  - Declare that the app is long path aware to support paths longer
    than 259 characters (this may also require a registry change).

  - Force the code page to UTF-8. This allows the command line tools
    to access files whose names contain characters that don't exist
    in the current legacy code page (except unpaired surrogates).
    The UTF-8 code page also fixes security issues in command line
    argument handling which can be exploited with malicious filenames.
    See the new file w32_application.manifest.comments.txt.

Thanks to Orange Tsai and splitline from DEVCORE Research Team
for discovering this issue.

Thanks to Vijay Sarvepalli for reporting the issue to me.

Thanks to Kelvin Lee for testing with MSVC and helping with
the required build system fixes.

(cherry picked from commit 46ee0061629fb075d61d83839e14dd193337af59)
CMakeLists.txt
src/Makefile.am
src/common/common_w32res.rc
src/common/w32_application.manifest [new file with mode: 0644]
src/common/w32_application.manifest.comments.txt [new file with mode: 0644]