Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix signed to unsigned conversion in QuickJS stack overflow check #19

Merged
merged 3 commits into from Aug 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
49 changes: 38 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,47 @@
version: 2.0
jobs:
build:
docker:
- image: debian
version: 2.1

commands:
tests:
description: "Run tests"
parameters:
features:
type: string
steps:
- checkout
- run:
name: Setup, Build & Test
name: Setup
command: |
export PATH="$HOME/.cargo/bin:$HOME:$PATH"

echo "Installing curl..."
apt-get update && apt-get install -y curl

echo "Installing Rust..."
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
echo "Installing just..."
curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git casey/just --target x86_64-unknown-linux-musl --to $HOME
hash -r
just ci-debian
- run:
name: Test
command: |
export PATH="$HOME/.cargo/bin:$HOME:$PATH"
just FEATURES="<<parameters.features>>" ci-debian


jobs:
test-features-default:
docker:
- image: debian
steps:
- tests:
features: ""
test-features-patched:
docker:
- image: debian
steps:
- tests:
features: "patched"

workflows:
version: 2
tests:
jobs:
- test-features-default
- test-features-patched

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ libquickjs-sys = { version = "0.3.0", path = "./libquickjs-sys" }
members = [
"libquickjs-sys",
]

[features]
patched = ["libquickjs-sys/patched"]
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ If you would like to use a system version instead, see below.

QuickJS will always be statically linked to your binary.

### Features

The crate supports the following features:

* `patched` applies QuickJS patches that can be found in `libquickjs-sys/embed/patches` directory.

### System installation

To use the system installation, without the bundled feature, first install the required
Expand Down
8 changes: 7 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:

- job: macos_stable
displayName: Mac OS Stable
strategy:
matrix:
default:
FEATURES: ''
patched:
FEATURES: 'patched'

pool:
vmImage: 'macOS-10.14'
Expand All @@ -37,5 +43,5 @@ jobs:
echo "Installing just..."
curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git casey/just --to $HOME
hash -r
just ci-macos
just FEATURES="$FEATURES" ci-macos
displayName: setup and test
3 changes: 2 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
embed_dir := "./libquickjs-sys/embed/quickjs"

DOWNLOAD_URL := "https://bellard.org/quickjs/quickjs-2019-08-10.tar.xz"
FEATURES := ""

download-new:
test -d {{embed_dir}} && rm -r {{embed_dir}} || echo ""
Expand All @@ -25,7 +26,7 @@ ci-debian-setup:

ci-test:
# Limit test threads to 1 to show test name before execution.
RUST_TEST_THREADS=1 cargo test --verbose
RUST_TEST_THREADS=1 cargo test --verbose --features="{{FEATURES}}"

ci-lint:
rustup component add rustfmt clippy
Expand Down
1 change: 1 addition & 0 deletions libquickjs-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ copy_dir = { version = "0.1.2", optional = true }

[features]
bundled = ["copy_dir"]
patched = []
default = ["bundled"]

system = ["bindgen"]
29 changes: 29 additions & 0 deletions libquickjs-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ fn main() {
#[cfg(not(feature = "bindgen"))]
panic!("Invalid configuration for libquickjs-sys: Must either enable the bundled or the bindgen feature");

#[cfg(feature = "patched")]
panic!("Invalid configuration for libquickjs-sys: the patched feature is incompatible with the system feature");

let lib = if cfg!(unix) {
if exists("/usr/lib/quickjs/libquickjs.a") {
"/usr/lib/quickjs"
Expand Down Expand Up @@ -58,6 +61,9 @@ fn main() {
}
copy_dir::copy_dir("./embed/quickjs", &code_dir).expect("Could not copy quickjs directory");

#[cfg(feature = "patched")]
apply_patches(&code_dir);

eprintln!("Compiling quickjs...");
std::process::Command::new("make")
.arg("libquickjs.a")
Expand All @@ -77,3 +83,26 @@ fn main() {
);
println!("cargo:rustc-link-lib=static=quickjs");
}

#[cfg(feature = "patched")]
fn apply_patches(code_dir: &PathBuf) {
use std::fs;

eprintln!("Applying patches...");
for patch in fs::read_dir("./embed/patches").expect("Could not open patches directory") {
let patch = patch.expect("Could not open patch");
eprintln!("Applying {:?}...", patch.file_name());
let status = std::process::Command::new("patch")
.current_dir(&code_dir)
.arg("-i")
.arg(fs::canonicalize(patch.path()).expect("Cannot canonicalize patch path"))
.spawn()
.expect("Could not apply patches")
.wait()
.expect("Could not apply patches");
assert!(
status.success(),
"Patch command returned non-zero exit code"
);
}
}
15 changes: 15 additions & 0 deletions libquickjs-sys/embed/patches/stack-overflow-signed.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
diff -urN quickjs-2019-07-28/quickjs.c quickjs-2019-07-28-stack-overflow-signed/quickjs.c
--- quickjs-2019-07-28/quickjs.c 2019-07-28 15:03:03.000000000 +0000
+++ quickjs-2019-07-28-stack-overflow-signed/quickjs.c 2019-08-09 20:00:03.666846091 +0000
@@ -1732,9 +1732,9 @@

static inline BOOL js_check_stack_overflow(JSContext *ctx, size_t alloca_size)
{
- size_t size;
+ ptrdiff_t size;
size = ctx->stack_top - js_get_stack_pointer();
- return unlikely((size + alloca_size) > ctx->stack_size);
+ return unlikely((size + (ptrdiff_t)alloca_size) > (ptrdiff_t)ctx->stack_size);
}
#endif