Skip to content

Instantly share code, notes, and snippets.

View nico's full-sized avatar

Nico Weber nico

  • 00:39 (UTC -04:00)
View GitHub Profile
@ech off
REM Creates "myroot" which can be used with `clang-cl /winsysroot myroot`
setlocal
REM Adjust this one accordingly:
set VSInstallDir="%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Professional"
set WinSdkDir="%ProgramFiles(x86)%\Windows Kits"
@nico
nico / gist:5bd81b9f887abd48e29f70cdb0978b0c
Last active December 4, 2020 15:02
inotifywait -m with event coalescing
#!/bin/bash
inotifywait -m -e create -r $1 | while read dir action file; do
# Coalese additional queued up events, if any
# If events keep arriving faster than we can read them off stdin here,
# we'll never run the script! If you're worried about that, set
# SECONDS to 0 before this loop and make the conditional also check that
# $SECONDS is smaller than some timeout to make sure that the script runs
# every now and then. The stdin pipe buffer size means there won't be an
# unbounded buildup on stdin -- instead inotifywait will block writing
commit 0c783ec6a639401153d96de1f4bc6ec8117c409c
Author: Nico Weber <[email protected]>
Date: Sun Jul 19 19:49:54 2020 -0400
fix one ppm fuzzer issue and two jpeg issues, all harmless DoS
diff --git a/Libraries/LibGfx/JPGLoader.cpp b/Libraries/LibGfx/JPGLoader.cpp
index 57772534d..03f7b2822 100644
--- a/Libraries/LibGfx/JPGLoader.cpp
+++ b/Libraries/LibGfx/JPGLoader.cpp
@nico
nico / bmp fuzz.diff
Last active September 4, 2020 17:00
commit c9d1d14e56d7ed3cb3d43053c06a86229dc9ca65
Author: Nico Weber <[email protected]>
Date: Sat Jul 18 22:35:01 2020 -0400
bmp loader does not validate data_offset, can use that for arbitrary read, with <canvas> can probably leak arbitrary user mem to js
diff --git a/Libraries/LibGfx/BMPLoader.cpp b/Libraries/LibGfx/BMPLoader.cpp
index a6c82ca15..91299749a 100644
--- a/Libraries/LibGfx/BMPLoader.cpp
+++ b/Libraries/LibGfx/BMPLoader.cpp
import ctypes
import os
import sys
libSystem = ctypes.CDLL('libSystem.dylib')
# `typedef void *posix_spawnattr_t;` on darwin
attrp = ctypes.c_void_p()
e = libSystem.posix_spawnattr_init(ctypes.byref(attrp))
print('spawnattr init ret:', e)
# Works with py2 and py3
import ctypes
import os
import sys
libSystem = ctypes.CDLL('libSystem.dylib')
spawn = libSystem.posix_spawnp
spawn.restype = ctypes.c_int
spawn.argtypes = (
# cmake -P foo.cmake
include(FindPythonInterp)
#set(FOO_DIR "/Users/thakis/blah")
set(FOO_DIR "/Users/thakis/blah" CACHE STRING "wsdf")
function(configure_lit_site_cfg site_in site_out)
cmake_parse_arguments(ARG "" "" "MAIN_CONFIG;OUTPUT_MAPPING;PATHS" ${ARGN})
diff --git a/llvm/include/llvm/Demangle/MicrosoftDemangle.h b/llvm/include/llvm/Demangle/MicrosoftDemangle.h
index c6f26061bed..96d015f2ded 100644
--- a/llvm/include/llvm/Demangle/MicrosoftDemangle.h
+++ b/llvm/include/llvm/Demangle/MicrosoftDemangle.h
@@ -202,7 +202,7 @@ private:
QualifiedNameNode *demangleNameScopeChain(StringView &MangledName,
IdentifierNode *UnqualifiedName);
- IdentifierNode *demangleNameScopePiece(StringView &MangledName);
+ Node *demangleNameScopePiece(StringView &MangledName);
@nico
nico / llvm-gn-swarming.patch
Last active May 18, 2020 19:38
demo for running check-clang on swarming (tested on mac only)
Mostly superceded by https://github.com/nico/llvm-project/commit/c43875075d15a58e674792b45b0e96d721296aed
commit 02c27a95ecc0555ba30c363321cc62459e469bff
Author: Nico Weber <[email protected]>
Date: Fri Jun 15 16:54:38 2018 -0400
demo for running check-clang on swarming (tested on mac only)
Use like so:
# Instant: