Control-flow integrity


Control-flow integrity is a general term for computer security techniques which prevent a wide variety of malware attacks from redirecting the flow of execution of a program. Associated techniques include code-pointer separation, code-pointer integrity, stack canaries, shadow stacks, and vtable pointer verification.
Related implementations are available in Clang, Microsoft's Control Flow Guard and Return Flow Guard, Google's Indirect Function-Call Checks and Reuse Attack Protector.

Microsoft Control Flow Guard

Control Flow Guard was first released for Windows 8.1 Update 3 in November 2014. Developers can add CFG to their programs by adding the /guard:cf linker flag before program linking in Visual Studio 2015 or newer.
As of Windows 10 Creators Update, the Windows kernel is compiled with CFG. The Windows kernel uses Hyper-V to prevent malicious kernel code from overwriting the CFG bitmap.

Summary

CFG operates by creating a per-process bitmap, where a set bit indicates that the address is a valid destination. Before performing each indirect function call, the application checks if the destination address is in the bitmap. If the destination address is not in the bitmap, the program terminates. This makes it more difficult for an attacker to exploit a use-after-free by replacing an object's contents and then using an indirect function call to execute a payload.

Implementation details

For all protected indirect function calls, the _guard_check_icall function is called, which performs the following steps:
  1. Convert the target address to an offset and bit number in the bitmap.
  2. # The highest 3 bytes are the byte offset in the bitmap
  3. # The bit offset is a 5-bit value. The first four bits are the 4th through 8th low-order bits of the address.
  4. # The 5th bit of the bit offset is set to 0 if the destination address is aligned with 0x10, and 1 if it is not.
  5. Examine the target's address value in the bitmap
  6. # If the target address is in the bitmap, return without an error.
  7. # If the target address is not in the bitmap, terminate the program.

    Bypass techniques

There are several generic techniques for bypassing CFG: