2021-04-04 04:04:20 +02:00
|
|
|
|
{ depot, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
bins =
|
2021-10-11 14:24:02 +02:00
|
|
|
|
depot.nix.getBins pkgs.s6-portable-utils [ "s6-ln" "s6-cat" "s6-echo" "s6-mkdir" "s6-test" "s6-touch" "s6-dirname" ]
|
2022-02-04 19:46:48 +01:00
|
|
|
|
// depot.nix.getBins pkgs.coreutils [ "printf" ]
|
2021-04-04 04:04:20 +02:00
|
|
|
|
// depot.nix.getBins pkgs.lr [ "lr" ]
|
2021-10-11 14:24:02 +02:00
|
|
|
|
// depot.nix.getBins pkgs.cargo-audit [ "cargo-audit" ]
|
|
|
|
|
// depot.nix.getBins pkgs.jq [ "jq" ]
|
|
|
|
|
// depot.nix.getBins pkgs.findutils [ "find" ]
|
|
|
|
|
// depot.nix.getBins pkgs.gnused [ "sed" ]
|
2022-01-30 17:06:58 +01:00
|
|
|
|
;
|
2021-04-04 04:04:20 +02:00
|
|
|
|
|
2021-10-09 17:22:44 +02:00
|
|
|
|
crate-advisories = "${depot.third_party.rustsec-advisory-db}/crates";
|
2021-04-04 04:04:20 +02:00
|
|
|
|
|
2021-09-15 13:25:08 +02:00
|
|
|
|
our-crates = lib.filter (v: v ? outPath)
|
|
|
|
|
(builtins.attrValues depot.third_party.rust-crates);
|
2021-04-04 04:04:20 +02:00
|
|
|
|
|
2022-01-30 17:06:58 +01:00
|
|
|
|
check-security-advisory = depot.nix.writers.rustSimple
|
|
|
|
|
{
|
|
|
|
|
name = "parse-security-advisory";
|
|
|
|
|
dependencies = [
|
|
|
|
|
depot.third_party.rust-crates.toml
|
|
|
|
|
depot.third_party.rust-crates.semver
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
(builtins.readFile ./check-security-advisory.rs);
|
2021-04-04 04:04:20 +02:00
|
|
|
|
|
|
|
|
|
# $1 is the directory with advisories for crate $2 with version $3
|
|
|
|
|
check-crate-advisory = depot.nix.writeExecline "check-crate-advisory" { readNArgs = 3; } [
|
2022-01-30 17:06:58 +01:00
|
|
|
|
"pipeline"
|
|
|
|
|
[ bins.lr "-0" "-t" "depth == 1" "$1" ]
|
|
|
|
|
"forstdin"
|
|
|
|
|
"-0"
|
|
|
|
|
"-Eo"
|
|
|
|
|
"0"
|
|
|
|
|
"advisory"
|
|
|
|
|
"if"
|
|
|
|
|
[ depot.tools.eprintf "advisory %s\n" "$advisory" ]
|
|
|
|
|
check-security-advisory
|
|
|
|
|
"$advisory"
|
|
|
|
|
"$3"
|
2021-04-04 04:04:20 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Run through everything in the `crate-advisories` repository
|
|
|
|
|
# and check whether we can parse all the advisories without crashing.
|
2022-01-30 17:06:58 +01:00
|
|
|
|
test-parsing-all-security-advisories = depot.nix.runExecline "check-all-our-crates" { } [
|
|
|
|
|
"pipeline"
|
|
|
|
|
[ bins.lr "-0" "-t" "depth == 1" crate-advisories ]
|
|
|
|
|
"if"
|
|
|
|
|
[
|
2021-04-04 04:04:20 +02:00
|
|
|
|
# this will succeed as long as check-crate-advisory doesn’t `panic!()` (status 101)
|
2022-01-30 17:06:58 +01:00
|
|
|
|
"forstdin"
|
|
|
|
|
"-0"
|
|
|
|
|
"-E"
|
|
|
|
|
"-x"
|
|
|
|
|
"101"
|
|
|
|
|
"crate_advisories"
|
|
|
|
|
check-crate-advisory
|
|
|
|
|
"$crate_advisories"
|
|
|
|
|
"foo"
|
|
|
|
|
"0.0.0"
|
2021-04-04 04:04:20 +02:00
|
|
|
|
]
|
2022-01-30 17:06:58 +01:00
|
|
|
|
"importas"
|
|
|
|
|
"out"
|
|
|
|
|
"out"
|
|
|
|
|
bins.s6-touch
|
|
|
|
|
"$out"
|
2021-04-04 04:04:20 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
2022-01-30 17:06:58 +01:00
|
|
|
|
check-all-our-crates = depot.nix.runExecline "check-all-our-crates"
|
|
|
|
|
{
|
|
|
|
|
stdin = lib.concatStrings
|
|
|
|
|
(map
|
|
|
|
|
(crate:
|
|
|
|
|
depot.nix.netstring.fromString
|
|
|
|
|
(depot.nix.netstring.fromString crate.crateName
|
|
|
|
|
+ depot.nix.netstring.fromString crate.version))
|
|
|
|
|
our-crates);
|
|
|
|
|
} [
|
|
|
|
|
"if"
|
|
|
|
|
[
|
|
|
|
|
"forstdin"
|
|
|
|
|
"-o"
|
|
|
|
|
"0"
|
|
|
|
|
"-Ed"
|
|
|
|
|
""
|
|
|
|
|
"crateNetstring"
|
|
|
|
|
"multidefine"
|
|
|
|
|
"-d"
|
|
|
|
|
""
|
|
|
|
|
"$crateNetstring"
|
|
|
|
|
[ "crate" "crate_version" ]
|
|
|
|
|
"if"
|
|
|
|
|
[ depot.tools.eprintf "checking %s, version %s\n" "$crate" "$crate_version" ]
|
2021-04-04 04:04:20 +02:00
|
|
|
|
|
2022-01-30 17:06:58 +01:00
|
|
|
|
"ifthenelse"
|
|
|
|
|
[ bins.s6-test "-d" "${crate-advisories}/\${crate}" ]
|
|
|
|
|
[
|
|
|
|
|
# also print the full advisory text if it matches
|
|
|
|
|
"export"
|
|
|
|
|
"PRINT_ADVISORY"
|
|
|
|
|
"1"
|
|
|
|
|
check-crate-advisory
|
|
|
|
|
"${crate-advisories}/\${crate}"
|
|
|
|
|
"$crate"
|
|
|
|
|
"$crate_version"
|
2021-04-04 04:04:20 +02:00
|
|
|
|
]
|
2022-01-30 17:06:58 +01:00
|
|
|
|
[ depot.tools.eprintf "No advisories found for crate %s\n" "$crate" ]
|
|
|
|
|
"importas"
|
|
|
|
|
"-ui"
|
|
|
|
|
"ret"
|
|
|
|
|
"?"
|
|
|
|
|
# put a marker in ./failed to read at the end
|
|
|
|
|
"ifelse"
|
|
|
|
|
[ bins.s6-test "$ret" "-eq" "1" ]
|
|
|
|
|
[ bins.s6-touch "./failed" ]
|
|
|
|
|
"if"
|
|
|
|
|
[ depot.tools.eprintf "\n" ]
|
|
|
|
|
"exit"
|
|
|
|
|
"$ret"
|
|
|
|
|
]
|
|
|
|
|
"ifelse"
|
|
|
|
|
[ bins.s6-test "-f" "./failed" ]
|
|
|
|
|
[
|
|
|
|
|
"if"
|
|
|
|
|
[ depot.tools.eprintf "Error: Found active advisories!" ]
|
|
|
|
|
"exit"
|
|
|
|
|
"1"
|
|
|
|
|
]
|
|
|
|
|
"importas"
|
|
|
|
|
"out"
|
|
|
|
|
"out"
|
|
|
|
|
bins.s6-touch
|
|
|
|
|
"$out"
|
2021-04-04 04:04:20 +02:00
|
|
|
|
];
|
|
|
|
|
|
2022-02-04 17:28:09 +01:00
|
|
|
|
lock-file-report = pkgs.writers.writeBash "lock-file-report" ''
|
|
|
|
|
set -u
|
|
|
|
|
|
|
|
|
|
if test "$#" -lt 2; then
|
|
|
|
|
echo "Usage: $0 IDENTIFIER LOCKFILE [CHECKLIST [MAINTAINERS]]" >&2
|
|
|
|
|
echo 2>&1
|
|
|
|
|
echo " IDENTIFIER Unique string describing the lock file" >&2
|
|
|
|
|
echo " LOCKFILE Path to Cargo.lock file" >&2
|
|
|
|
|
echo " CHECKLIST Whether to use GHFM checklists in the output (true or false)" >&2
|
|
|
|
|
echo " MAINTAINERS List of @names to cc in case of advisories" >&2
|
|
|
|
|
exit 100
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
"${bins.cargo-audit}" audit --json --no-fetch \
|
|
|
|
|
--db "${depot.third_party.rustsec-advisory-db}" \
|
|
|
|
|
--file "$2" \
|
|
|
|
|
| "${bins.jq}" --raw-output --join-output \
|
|
|
|
|
--from-file "${./format-audit-result.jq}" \
|
|
|
|
|
--arg maintainers "''${4:-}" \
|
|
|
|
|
--argjson checklist "''${3:-false}" \
|
|
|
|
|
--arg attr "$1"
|
|
|
|
|
|
|
|
|
|
exit "''${PIPESTATUS[0]}" # inherit exit code from cargo-audit
|
|
|
|
|
'';
|
|
|
|
|
|
2022-02-04 19:46:48 +01:00
|
|
|
|
tree-lock-file-report = depot.nix.writeExecline "tree-lock-file-report"
|
|
|
|
|
{
|
|
|
|
|
readNArgs = 1;
|
|
|
|
|
} [
|
2021-10-11 14:24:02 +02:00
|
|
|
|
"backtick"
|
|
|
|
|
"-E"
|
|
|
|
|
"report"
|
|
|
|
|
[
|
|
|
|
|
"pipeline"
|
2022-02-04 19:46:48 +01:00
|
|
|
|
[ bins.find "$1" "-name" "Cargo.lock" "-and" "-type" "f" "-print0" ]
|
2021-10-11 14:24:02 +02:00
|
|
|
|
"forstdin"
|
|
|
|
|
"-E"
|
|
|
|
|
"-0"
|
|
|
|
|
"lockFile"
|
|
|
|
|
"backtick"
|
|
|
|
|
"-E"
|
|
|
|
|
"depotPath"
|
|
|
|
|
[
|
|
|
|
|
"pipeline"
|
|
|
|
|
[ bins.s6-dirname "$lockFile" ]
|
|
|
|
|
bins.sed
|
|
|
|
|
"s|^\\.|/|"
|
|
|
|
|
]
|
2022-02-04 17:28:09 +01:00
|
|
|
|
lock-file-report
|
2021-10-11 14:24:02 +02:00
|
|
|
|
"$depotPath"
|
2022-02-04 17:28:09 +01:00
|
|
|
|
"$lockFile"
|
2022-02-03 14:50:13 +01:00
|
|
|
|
"false"
|
2021-10-11 14:24:02 +02:00
|
|
|
|
]
|
|
|
|
|
"if"
|
2022-02-04 19:46:48 +01:00
|
|
|
|
[ bins.printf "%s\n" "$report" ]
|
2021-10-11 14:24:02 +02:00
|
|
|
|
# empty report implies success (no advisories)
|
2022-02-04 19:46:48 +01:00
|
|
|
|
bins.s6-test
|
|
|
|
|
"-z"
|
|
|
|
|
"$report"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
check-all-our-lock-files = depot.nix.writeExecline "check-all-our-lock-files" { } [
|
|
|
|
|
"backtick"
|
|
|
|
|
"-EI"
|
|
|
|
|
"report"
|
|
|
|
|
[
|
|
|
|
|
tree-lock-file-report
|
|
|
|
|
"."
|
|
|
|
|
]
|
|
|
|
|
"ifelse"
|
2021-10-11 14:24:02 +02:00
|
|
|
|
[
|
|
|
|
|
bins.s6-test
|
2022-02-04 19:46:48 +01:00
|
|
|
|
"-z"
|
|
|
|
|
"$report"
|
|
|
|
|
]
|
|
|
|
|
[
|
|
|
|
|
"exit"
|
|
|
|
|
"0"
|
2021-10-11 14:24:02 +02:00
|
|
|
|
]
|
|
|
|
|
"pipeline"
|
|
|
|
|
[
|
|
|
|
|
"printf"
|
|
|
|
|
"%s"
|
|
|
|
|
"$report"
|
|
|
|
|
]
|
|
|
|
|
"buildkite-agent"
|
|
|
|
|
"annotate"
|
|
|
|
|
"--style"
|
|
|
|
|
"warning"
|
|
|
|
|
"--context"
|
|
|
|
|
"check-all-our-lock-files"
|
|
|
|
|
];
|
|
|
|
|
|
2022-01-30 17:06:58 +01:00
|
|
|
|
in
|
|
|
|
|
depot.nix.readTree.drvTargets {
|
2021-04-04 04:04:20 +02:00
|
|
|
|
|
|
|
|
|
check-all-our-crates =
|
|
|
|
|
depot.nix.drvSeqL
|
|
|
|
|
[ test-parsing-all-security-advisories ]
|
|
|
|
|
check-all-our-crates;
|
|
|
|
|
|
|
|
|
|
inherit
|
|
|
|
|
check-crate-advisory
|
2022-02-04 17:28:09 +01:00
|
|
|
|
lock-file-report
|
2021-04-04 04:04:20 +02:00
|
|
|
|
;
|
2021-10-11 14:24:02 +02:00
|
|
|
|
|
|
|
|
|
|
2022-02-04 19:46:48 +01:00
|
|
|
|
tree-lock-file-report = tree-lock-file-report // {
|
2021-10-11 14:24:02 +02:00
|
|
|
|
meta.ci.extraSteps.run = {
|
|
|
|
|
label = "Check Cargo.lock files in depot for advisories";
|
|
|
|
|
alwaysRun = true;
|
|
|
|
|
command = check-all-our-lock-files;
|
|
|
|
|
};
|
|
|
|
|
};
|
2021-04-04 04:04:20 +02:00
|
|
|
|
}
|