Skip to content

Commit

Permalink
chore: update aws-lc-sys
Browse files Browse the repository at this point in the history
New version of aws-lc-sys needs faccessat
syscall on aarch64, so add it to the seccomp filter.

Signed-off-by: Egor Lazarchuk <[email protected]>
  • Loading branch information
ShadowCurse committed Jul 8, 2024
1 parent 4100110 commit b83640c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions resources/seccomp/aarch64-unknown-linux-musl.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 74,10 @@
"syscall": "fstat",
"comment": "Used for drive patching & rescanning, for reading the local timezone from /etc/localtime"
},
{
"syscall": "faccessat",
"comment": "Used by aws-lc-sys"
},
{
"syscall": "ftruncate",
"comment": "Used for snapshotting"
Expand Down
2 changes: 1 addition & 1 deletion src/vmm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 11,7 @@ bench = false
[dependencies]
acpi_tables = { path = "../acpi-tables" }
aes-gcm = { version = "0.10.1", default-features = false, features = ["aes"] }
aws-lc-rs = { version = "1.7.3", features = ["bindgen"] }
aws-lc-rs = { version = "1.8.0", features = ["bindgen"] }
base64 = "0.22.1"
bincode = "1.2.1"
bitflags = "2.6.0"
Expand Down

0 comments on commit b83640c

Please sign in to comment.