All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Christian Göttsche" <cgzones@googlemail.com>
To: selinux@vger.kernel.org
Subject: [RFC PATCH 01/35] cifuzz: enable report-unreproducible-crashes
Date: Mon, 11 Oct 2021 18:24:59 +0200	[thread overview]
Message-ID: <20211011162533.53404-2-cgzones@googlemail.com> (raw)
In-Reply-To: <20211011162533.53404-1-cgzones@googlemail.com>

Fail and report unreproducible fuzzing crashes and leaks. Such failures
are probably related to some global state not properly reset in the
fuzzer and can cause OSS-Fuzz to report flaky issues.

Suggested-by: Evgeny Vereshchagin
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
---
 .github/workflows/cifuzz.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml
index 5c2233a2..b28eb71a 100644
--- a/.github/workflows/cifuzz.yml
+++ b/.github/workflows/cifuzz.yml
@@ -30,6 +30,7 @@ jobs:
           oss-fuzz-project-name: 'selinux'
           fuzz-seconds: 180
           dry-run: false
+          report-unreproducible-crashes: true
           sanitizer: ${{ matrix.sanitizer }}
       - name: Upload Crash
         uses: actions/upload-artifact@v1
-- 
2.33.0


  reply	other threads:[~2021-10-11 16:26 UTC|newest]

Thread overview: 135+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-11 16:24 [RFC PATCH 00/35] libsepol: add fuzzer for reading binary policies Christian Göttsche
2021-10-11 16:24 ` Christian Göttsche [this message]
2021-10-11 16:25 ` [RFC PATCH 02/35] cifuzz: use the default runtime of 600 seconds Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 03/35] libsepol/fuzz: silence secilc-fuzzer Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 04/35] libsepol: add libfuzz based fuzzer for reading binary policies Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 05/35] libsepol/fuzz: limit element sizes for fuzzing Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 06/35] libsepol: use logging framework in conditional.c Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 07/35] libsepol: use logging framework in ebitmap.c Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 08/35] libsepol: use mallocarray wrapper to avoid overflows Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 09/35] libsepol: use reallocarray " Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 10/35] libsepol: add checks for read sizes Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 11/35] libsepol: enforce avtab item limit Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 12/35] libsepol: clean memory on conditional read failure Christian Göttsche
2021-10-13 14:10   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 13/35] libsepol: validate MLS levels Christian Göttsche
2021-10-13 15:38   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 14/35] libsepol: reject invalid fsuse types Christian Göttsche
2021-10-18 19:57   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 15/35] libsepol: reject invalid default targets Christian Göttsche
2021-10-18 19:58   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 16/35] libsepol: validate expanded user range and level Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 17/35] libsepol: validate types Christian Göttsche
2021-10-13 15:39   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 18/35] libsepol: use size_t for indexes in strs helpers Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 19/35] libsepol: reject abnormal huge sid ids Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 20/35] libsepol: do not crash on class gaps Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 21/35] libsepol: do not crash on user gaps Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 22/35] libsepol: validate permission count of classes Christian Göttsche
2021-10-13 15:41   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 23/35] libsepol: resolve log message mismatch Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 24/35] libsepol: zero member before potential dereference Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 25/35] libsepol: validate avtab types Christian Göttsche
2021-10-18 19:54   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 26/35] libsepol: validate constraint expression operators and attributes Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 27/35] libsepol: validate type of avtab type rules Christian Göttsche
2021-10-13 15:44   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 28/35] libsepol: validate ocontexts Christian Göttsche
2021-10-14 14:10   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 29/35] libsepol: validate genfs contexts Christian Göttsche
2021-10-14 14:10   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 30/35] libsepol: validate permissive types Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 31/35] libsepol: validate policy properties Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 32/35] libsepol: do not underflow on short format arguments Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 33/35] libsepol: validate categories Christian Göttsche
2021-10-13 15:40   ` James Carter
2021-10-11 16:25 ` [RFC PATCH 34/35] libsepol: use correct size for initial string list Christian Göttsche
2021-10-11 16:25 ` [RFC PATCH 35/35] libsepol: do not create a string list with initial size zero Christian Göttsche
2021-10-13 14:07 ` [RFC PATCH 00/35] libsepol: add fuzzer for reading binary policies James Carter
2021-11-05 15:45 ` [RFC PATCH v2 00/36] " Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 01/36] cifuzz: enable report-unreproducible-crashes Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 02/36] cifuzz: use the default runtime of 600 seconds Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 03/36] libsepol/fuzz: silence secilc-fuzzer Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 04/36] libsepol: add libfuzz based fuzzer for reading binary policies Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 05/36] libsepol/fuzz: limit element sizes for fuzzing Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 06/36] libsepol: use logging framework in conditional.c Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 07/36] libsepol: use logging framework in ebitmap.c Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 08/36] libsepol: use mallocarray wrapper to avoid overflows Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 09/36] libsepol: use reallocarray " Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 10/36] libsepol: add checks for read sizes Christian Göttsche
2021-11-09 18:46     ` James Carter
2021-11-09 18:58       ` Christian Göttsche
2021-11-09 19:17         ` James Carter
2021-11-05 15:45   ` [RFC PATCH v2 11/36] libsepol: enforce avtab item limit Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 12/36] libsepol: clean memory on conditional insertion failure Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 13/36] libsepol: reject abnormal huge sid ids Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 14/36] libsepol: reject invalid filetrans source type Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 15/36] libsepol: zero member before potential dereference Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 16/36] libsepol: use size_t for indexes in strs helpers Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 17/36] libsepol: do not underflow on short format arguments Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 18/36] libsepol: do not crash on class gaps Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 19/36] libsepol: do not crash on user gaps Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 20/36] libsepol: use correct size for initial string list Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 21/36] libsepol: do not create a string list with initial size zero Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 22/36] libsepol: split validation of datum array gaps and entries Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 23/36] libsepol: validate MLS levels Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 24/36] libsepol: validate expanded user range and level Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 25/36] libsepol: validate permission count of classes Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 26/36] libsepol: resolve log message mismatch Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 27/36] libsepol: validate avtab and avrule types Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 28/36] libsepol: validate constraint expression operators and attributes Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 29/36] libsepol: validate type of avtab type rules Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 30/36] libsepol: validate ocontexts Christian Göttsche
2021-11-09 19:04     ` James Carter
2021-11-05 15:45   ` [RFC PATCH v2 31/36] libsepol: validate genfs contexts Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 32/36] libsepol: validate permissive types Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 33/36] libsepol: validate policy properties Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 34/36] libsepol: validate categories Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 35/36] libsepol: validate fsuse types Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 36/36] libsepol: validate class default targets Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 37/40] [WIP] libsepol: export policydb_validate Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 38/40] [WIP] checkpolicy: validate generated policies Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 39/40] [CROSS-PATCH] libsepol: avoid passing NULL pointer to memcpy Christian Göttsche
2021-11-05 15:45   ` [RFC PATCH v2 40/40] [CROSS-PATCH] libsepol: do not pass NULL " Christian Göttsche
2021-11-09 18:42   ` [RFC PATCH v2 00/36] libsepol: add fuzzer for reading binary policies James Carter
2021-11-09 18:43     ` James Carter
2021-12-09 16:48   ` [PATCH v3 " Christian Göttsche
2021-12-09 16:48     ` [PATCH v3 01/36] cifuzz: enable report-unreproducible-crashes Christian Göttsche
2021-12-09 16:48     ` [PATCH v3 02/36] cifuzz: use the default runtime of 600 seconds Christian Göttsche
2021-12-09 16:48     ` [PATCH v3 03/36] libsepol/fuzz: silence secilc-fuzzer Christian Göttsche
2021-12-09 16:48     ` [PATCH v3 04/36] libsepol: add libfuzz based fuzzer for reading binary policies Christian Göttsche
2021-12-09 16:48     ` [PATCH v3 05/36] libsepol/fuzz: limit element sizes for fuzzing Christian Göttsche
2021-12-09 16:48     ` [PATCH v3 06/36] libsepol: use logging framework in conditional.c Christian Göttsche
2021-12-09 16:48     ` [PATCH v3 07/36] libsepol: use logging framework in ebitmap.c Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 08/36] libsepol: use mallocarray wrapper to avoid overflows Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 09/36] libsepol: use reallocarray " Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 10/36] libsepol: add checks for read sizes Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 11/36] libsepol: enforce avtab item limit Christian Göttsche
2021-12-15 17:39       ` James Carter
2021-12-09 16:49     ` [PATCH v3 12/36] libsepol: clean memory on conditional insertion failure Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 13/36] libsepol: reject abnormal huge sid ids Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 14/36] libsepol: reject invalid filetrans source type Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 15/36] libsepol: zero member before potential dereference Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 16/36] libsepol: use size_t for indexes in strs helpers Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 17/36] libsepol: do not underflow on short format arguments Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 18/36] libsepol: do not crash on class gaps Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 19/36] libsepol: do not crash on user gaps Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 20/36] libsepol: use correct size for initial string list Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 21/36] libsepol: do not create a string list with initial size zero Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 22/36] libsepol: split validation of datum array gaps and entries Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 23/36] libsepol: validate MLS levels Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 24/36] libsepol: validate expanded user range and level Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 25/36] libsepol: validate permission count of classes Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 26/36] libsepol: resolve log message mismatch Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 27/36] libsepol: validate avtab and avrule types Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 28/36] libsepol: validate constraint expression operators and attributes Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 29/36] libsepol: validate type of avtab type rules Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 30/36] libsepol: validate ocontexts Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 31/36] libsepol: validate genfs contexts Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 32/36] libsepol: validate permissive types Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 33/36] libsepol: validate policy properties Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 34/36] libsepol: validate categories Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 35/36] libsepol: validate fsuse types Christian Göttsche
2021-12-09 16:49     ` [PATCH v3 36/36] libsepol: validate class default targets Christian Göttsche
2021-12-15 17:41     ` [PATCH v3 00/36] libsepol: add fuzzer for reading binary policies James Carter
2021-12-17 13:59       ` James Carter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211011162533.53404-2-cgzones@googlemail.com \
    --to=cgzones@googlemail.com \
    --cc=selinux@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.