1 /*- 2 * Copyright (c) 2016 Maksym Sobolyev 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 #include <sys/stat.h> 29 #include <dlfcn.h> 30 #include <errno.h> 31 #include <fcntl.h> 32 #include <signal.h> 33 #include <stdio.h> 34 #include <stdlib.h> 35 #include <unistd.h> 36 37 #include <atf-c.h> 38 39 static const char *funname; 40 static char *soname; 41 42 static void 43 sigsegv_handler(int sig __unused) 44 { 45 unlink(soname); 46 free(soname); 47 atf_tc_fail("got SIGSEGV in the %s(3)", funname); 48 } 49 50 ATF_TC(dlopen_empty_test); 51 ATF_TC_HEAD(dlopen_empty_test, tc) 52 { 53 atf_tc_set_md_var(tc, "descr", "Tests the dlopen() of an empty file " 54 "returns an error"); 55 } 56 ATF_TC_BODY(dlopen_empty_test, tc) 57 { 58 char tempname[] = "/tmp/temp.XXXXXX"; 59 char *fname; 60 int fd; 61 void *dlh; 62 struct sigaction act, oact; 63 64 fname = mktemp(tempname); 65 ATF_REQUIRE_MSG(fname != NULL, "mktemp failed; errno=%d", errno); 66 asprintf(&soname, "%s.so", fname); 67 ATF_REQUIRE_MSG(soname != NULL, "asprintf failed; errno=%d", ENOMEM); 68 fd = open(soname, O_WRONLY | O_CREAT | O_TRUNC, DEFFILEMODE); 69 ATF_REQUIRE_MSG(fd != -1, "open(\"%s\") failed; errno=%d", soname, errno); 70 close(fd); 71 72 act.sa_handler = sigsegv_handler; 73 act.sa_flags = 0; 74 sigemptyset(&act.sa_mask); 75 ATF_CHECK_MSG(sigaction(SIGSEGV, &act, &oact) != -1, 76 "sigaction() failed"); 77 78 funname = "dlopen"; 79 dlh = dlopen(soname, RTLD_LAZY); 80 if (dlh != NULL) { 81 funname = "dlclose"; 82 dlclose(dlh); 83 } 84 ATF_REQUIRE_MSG(dlh == NULL, "dlopen(\"%s\") did not fail", soname); 85 unlink(soname); 86 free(soname); 87 } 88 89 ATF_TP_ADD_TCS(tp) 90 { 91 92 ATF_TP_ADD_TC(tp, dlopen_empty_test); 93 94 return (atf_no_error()); 95 } 96