/* * SPDX-License-Identifier: BSD-3-Clause * * Copyright © 2023 Keith Packard * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * 3. Neither the name of the copyright holder nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #ifdef __GNUC__ #pragma GCC diagnostic ignored "-Wpragmas" #pragma GCC diagnostic ignored "-Wunknown-warning-option" #pragma GCC diagnostic ignored "-Wanalyzer-unsafe-call-within-signal-handler" #endif /* * When sanitize-trap-on-error=true, we shouldn't see a signal raised, * instead the application should just exit with an error. And, in * this case, the test framework expects that behavior. */ static void abrt_handler(int sig) { if (sig == (int) SIGABRT) _Exit(0); else { #ifdef TINY_STDIO printf("unexpected signal %d\n", sig); fflush(stdout); #endif #ifdef SANITIZE_TRAP_ON_ERROR _Exit(0); #else _Exit(2); #endif } } static volatile int ten = 10; #ifdef __GNUC__ #pragma GCC diagnostic ignored "-Wpragmas" #pragma GCC diagnostic ignored "-Wunknown-warning-option" /* 'bsize' is used directly with malloc/realloc which confuses -fanalyzer */ #pragma GCC diagnostic ignored "-Wanalyzer-out-of-bounds" #endif int main(void) { int array[10]; (void) signal(SIGABRT, abrt_handler); array[ten] = 10; printf("value %d\n", array[ten]); printf("ubsan test failed\n"); #ifdef SANITIZE_TRAP_ON_ERROR exit(0); #else exit(1); #endif }