Fix memory safety issues in macOS keycode.c #191
+18
−4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR fixes critical memory safety issues in
src/macos/keycode.c:64-bit pointer size mismatch in
CFDictionaryGetValueIfPresentcall - The original code cast aCGKeyCode(uint16_t, 2 bytes) pointer toconst void **, causing the function to write 8 bytes into a 2-byte variable on 64-bit systems. This results in stack corruption.Missing NULL checks in
createStringForKey-TISCopyCurrentASCIICapableKeyboardInputSource()andTISGetInputSourceProperty()can return NULL, but the code directly dereferenced the results without checking, leading to potential crashes.Related Issues
libnut-core
incompatible pointer typesin macOS code, which is symptomatic of the same class of pointer handling issues this PR addresses.nut.js (parent project)
The
keyCodeForCharfunction is critical for keyboard input functionality. While these issues may have multiple causes, fixing memory corruption in the keycode lookup could improve stability:Changes
keyCodeForCharfunctionBefore (dangerous):
After (safe):
createStringForKeyfunctionBefore:
After:
Documentation References
valueparameter ofCFDictionaryGetValueIfPresentis "A pointer to memory which should be filled with the pointer-sized value"