From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kees Cook Subject: Re: [PATCH net-next v6 09/11] seccomp: Enhance test_harness with an assert step mechanism Date: Tue, 18 Apr 2017 17:02:57 -0700 Message-ID: References: <20170328234650.19695-1-mic@digikod.net> <20170328234650.19695-10-mic@digikod.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: <20170328234650.19695-10-mic-WFhQfpSGs3bR7s880joybQ@public.gmane.org> Sender: linux-api-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: =?UTF-8?B?TWlja2HDq2wgU2FsYcO8bg==?= Cc: LKML , Alexei Starovoitov , Andy Lutomirski , Arnaldo Carvalho de Melo , Casey Schaufler , Daniel Borkmann , David Drysdale , "David S . Miller" , "Eric W . Biederman" , James Morris , Jann Horn , Jonathan Corbet , Matthew Garrett , Michael Kerrisk , Paul Moore , Sargun Dhillon , "Serge E . Hallyn" , Shuah Khan , Tejun Heo , Thomas Graf , Will Drewry List-Id: linux-api@vger.kernel.org On Tue, Mar 28, 2017 at 4:46 PM, Micka=C3=ABl Sala=C3=BCn = wrote: > This is useful to return an information about the error without being > able to write to TH_LOG_STREAM. > > Helpers from test_harness.h may be useful outside of the seccomp > directory. > > Signed-off-by: Micka=C3=ABl Sala=C3=BCn > Cc: Andy Lutomirski > Cc: Arnaldo Carvalho de Melo > Cc: Kees Cook > Cc: Shuah Khan > Cc: Will Drewry > --- > tools/testing/selftests/seccomp/test_harness.h | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/tools/testing/selftests/seccomp/test_harness.h b/tools/testi= ng/selftests/seccomp/test_harness.h > index a786c69c7584..77e407663e06 100644 > --- a/tools/testing/selftests/seccomp/test_harness.h > +++ b/tools/testing/selftests/seccomp/test_harness.h > @@ -397,7 +397,7 @@ struct __test_metadata { > const char *name; > void (*fn)(struct __test_metadata *); > int termsig; > - int passed; > + __s8 passed; Why the reduction here? int is signed too? > int trigger; /* extra handler after the evaluation */ > struct __test_metadata *prev, *next; > }; > @@ -476,6 +476,12 @@ void __run_test(struct __test_metadata *t) > "instead of by signal (code: %d)\= n", > t->name, > WEXITSTATUS(status)); > + } else if (t->passed < 0) { > + fprintf(TH_LOG_STREAM, > + "%s: Failed at step #%d\n", > + t->name, > + t->passed * -1); > + t->passed =3D 0; > } Instead of creating an overloaded mechanism here, perhaps have an option reporting mechanism that can be enabled. Like adding to __test_metadata "bool no_stream; int test_number;" and adding test_number++ to each ASSERT/EXCEPT call, and doing something like: if (t->no_stream) { fprintf(TH_LOG_STREAM, "%s: Failed at step #%d\n", t->name, t->test_number); } It'd be a cleaner approach, maybe? -Kees --=20 Kees Cook Pixel Security