freebsd-dev/sys/modules/dtrace
Bryan Drewery f222a6b886 dtrace: Fix /"string" == NULL/ comparisons using an uninitialized value.
A test of this is funcs/tst.strtok.d which has this filter:

    BEGIN
    /(this->field = strtok(this->str, ",")) == NULL/
    {
            exit(1);
    }
The test will randomly fail with exit status of 1 indicating that this->field
was NULL even though printing it out shows it is not.

This is compiled to the DTrace instruction set:
    // Pushed arguments not shown here
    // call strtok() and set result into %r1
    07: 2f001f01    call DIF_SUBR(31), %r1          ! strtok
    // set thread local scalar this->field from %r1
    08: 39050101    stls %r1, DT_VAR(1281)          ! DT_VAR(1281) = "field"
    // Prepare for the == comparison
    // Set right side of %r2 to NULL
    09: 25000102    setx DT_INTEGER[1], %r2         ! 0x0
    // string compare %r1 (strtok result) to %r2
    10: 27010200    scmp %r1, %r2

In this case only %r1 is loaded with a string limit set to lim1.  %r2 being
NULL does not get loaded and does not set lim2.  Then we call dtrace_strncmp()
with MIN(lim1, lim2) resulting in passing 0 and comparing neither side.
dtrace_strncmp() handles this case fine and it already has been while
being lucky with what lim2 was [un]initialized as.

Reviewed by:	markj, Don Morris <dgmorris AT earthlink.net>
Sponsored by:	Dell EMC
Differential Revision:	https://reviews.freebsd.org/D27671
2021-01-08 14:37:17 -08:00
..
dtaudit openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
dtmalloc openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
dtnfscl openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
dtrace dtrace: Fix /"string" == NULL/ comparisons using an uninitialized value. 2021-01-08 14:37:17 -08:00
dtrace_test
dtraceall Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
fasttrap openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
fbt openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
profile openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
prototype openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
sdt openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
systrace openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
systrace_freebsd32 openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
systrace_linux openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
systrace_linux32 openzfs: fix gcc kernel module builds 2020-12-27 14:33:13 -08:00
Makefile Disconnect fasttrap from the 32-bit powerpc build. 2019-02-21 22:49:21 +00:00
Makefile.inc