1 /* 2 * This file is part of execve strace test. 3 * 4 * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org> 5 * Copyright (c) 2015-2017 The strace developers. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. The name of the author may not be used to endorse or promote products 17 * derived from this software without specific prior written permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 */ 30 31 #include "tests.h" 32 #include <stdio.h> 33 #include <unistd.h> 34 35 #define FILENAME "test.execve\nfilename" 36 #define Q_FILENAME "test.execve\\nfilename" 37 38 static const char * const argv[] = { 39 FILENAME, "first", "second", (const char *) -1L, 40 (const char *) -2L, (const char *) -3L 41 }; 42 static const char * const q_argv[] = { 43 Q_FILENAME, "first", "second" 44 }; 45 46 static const char * const envp[] = { 47 "foobar=1", "foo\nbar=2", (const char *) -1L, 48 (const char *) -2L, (const char *) -3L 49 }; 50 static const char * const q_envp[] = { 51 "foobar=1", "foo\\nbar=2" 52 }; 53 54 int 55 main(void) 56 { 57 char ** const tail_argv = tail_memdup(argv, sizeof(argv)); 58 char ** const tail_envp = tail_memdup(envp, sizeof(envp)); 59 60 execve(FILENAME, tail_argv, tail_envp); 61 printf("execve(\"%s\"" 62 ", [\"%s\", \"%s\", \"%s\", %p, %p, %p, ???]" 63 #if VERBOSE 64 ", [\"%s\", \"%s\", %p, %p, %p, ???]" 65 #else 66 ", %p /* 5 vars, unterminated */" 67 #endif 68 ") = -1 ENOENT (%m)\n", 69 Q_FILENAME, q_argv[0], q_argv[1], q_argv[2], 70 argv[3], argv[4], argv[5] 71 #if VERBOSE 72 , q_envp[0], q_envp[1], envp[2], envp[3], envp[4] 73 #else 74 , tail_envp 75 #endif 76 ); 77 78 tail_argv[ARRAY_SIZE(q_argv)] = NULL; 79 tail_envp[ARRAY_SIZE(q_envp)] = NULL; 80 81 execve(FILENAME, tail_argv, tail_envp); 82 printf("execve(\"%s\", [\"%s\", \"%s\", \"%s\"]" 83 #if VERBOSE 84 ", [\"%s\", \"%s\"]" 85 #else 86 ", %p /* 2 vars */" 87 #endif 88 ") = -1 ENOENT (%m)\n", 89 Q_FILENAME, q_argv[0], q_argv[1], q_argv[2] 90 #if VERBOSE 91 , q_envp[0], q_envp[1] 92 #else 93 , tail_envp 94 #endif 95 ); 96 97 execve(FILENAME, tail_argv + 2, tail_envp + 1); 98 printf("execve(\"%s\", [\"%s\"]" 99 #if VERBOSE 100 ", [\"%s\"]" 101 #else 102 ", %p /* 1 var */" 103 #endif 104 ") = -1 ENOENT (%m)\n", 105 Q_FILENAME, q_argv[2] 106 #if VERBOSE 107 , q_envp[1] 108 #else 109 , tail_envp + 1 110 #endif 111 ); 112 113 TAIL_ALLOC_OBJECT_CONST_PTR(char *, empty); 114 char **const efault = empty + 1; 115 *empty = NULL; 116 117 execve(FILENAME, empty, empty); 118 printf("execve(\"%s\", []" 119 #if VERBOSE 120 ", []" 121 #else 122 ", %p /* 0 vars */" 123 #endif 124 ") = -1 ENOENT (%m)\n", Q_FILENAME 125 #if !VERBOSE 126 , empty 127 #endif 128 ); 129 130 char *const str_a = tail_alloc(DEFAULT_STRLEN + 2); 131 fill_memory_ex(str_a, DEFAULT_STRLEN + 1, '0', 10); 132 str_a[DEFAULT_STRLEN + 1] = '\0'; 133 134 char *const str_b = tail_alloc(DEFAULT_STRLEN + 2); 135 fill_memory_ex(str_b, DEFAULT_STRLEN + 1, '_', 32); 136 str_b[DEFAULT_STRLEN + 1] = '\0'; 137 138 char **const a = tail_alloc(sizeof(*a) * (DEFAULT_STRLEN + 2)); 139 char **const b = tail_alloc(sizeof(*b) * (DEFAULT_STRLEN + 2)); 140 unsigned int i; 141 for (i = 0; i <= DEFAULT_STRLEN; ++i) { 142 a[i] = &str_a[i]; 143 b[i] = &str_b[i]; 144 } 145 a[i] = b[i] = NULL; 146 147 execve(FILENAME, a, b); 148 printf("execve(\"%s\", [\"%.*s\"...", Q_FILENAME, DEFAULT_STRLEN, a[0]); 149 for (i = 1; i < DEFAULT_STRLEN; ++i) 150 printf(", \"%s\"", a[i]); 151 #if VERBOSE 152 printf(", \"%s\"", a[i]); 153 #else 154 printf(", ..."); 155 #endif 156 #if VERBOSE 157 printf("], [\"%.*s\"...", DEFAULT_STRLEN, b[0]); 158 for (i = 1; i <= DEFAULT_STRLEN; ++i) 159 printf(", \"%s\"", b[i]); 160 printf("]"); 161 #else 162 printf("], %p /* %u vars */", b, DEFAULT_STRLEN + 1); 163 #endif 164 printf(") = -1 ENOENT (%m)\n"); 165 166 execve(FILENAME, a + 1, b + 1); 167 printf("execve(\"%s\", [\"%s\"", Q_FILENAME, a[1]); 168 for (i = 2; i <= DEFAULT_STRLEN; ++i) 169 printf(", \"%s\"", a[i]); 170 #if VERBOSE 171 printf("], [\"%s\"", b[1]); 172 for (i = 2; i <= DEFAULT_STRLEN; ++i) 173 printf(", \"%s\"", b[i]); 174 printf("]"); 175 #else 176 printf("], %p /* %d vars */", b + 1, DEFAULT_STRLEN); 177 #endif 178 printf(") = -1 ENOENT (%m)\n"); 179 180 execve(FILENAME, (char **) tail_argv[ARRAY_SIZE(q_argv)], efault); 181 printf("execve(\"%s\", NULL, %p) = -1 ENOENT (%m)\n", 182 Q_FILENAME, efault); 183 184 execve(FILENAME, efault, NULL); 185 printf("execve(\"%s\", %p, NULL) = -1 ENOENT (%m)\n", 186 Q_FILENAME, efault); 187 188 return 0; 189 } 190