| commit | ef1dbcd60f81dafd777355ffd675e1bb73358d77 | [log] [tgz] |
|---|---|---|
| author | jofrn <jofernau@amd.com> | Tue Apr 30 22:57:24 2024 -0400 |
| committer | GitHub <noreply@github.com> | Tue Apr 30 22:57:24 2024 -0400 |
| tree | 5334cd8c1dd9279fdd25a785323220e370deeb8d | |
| parent | 63a29693011048b472205022319c6769b244a5ba [diff] |
[Windows] Restrict searchpath of dbghelp.dll to System32 (#90520) LoadLibraryW will lookup dlls in user directories if its search path is left unrestricted. This is a security vulnerability as one can name a shared library the same as that of a system dll in order to run arbitrary code when the shared library is loaded from the path in a user directory. This change modifies it to only search within sys32 when loading dbghelp.dll.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.