2 /*--------------------------------------------------------------------*/
3 /*--- Launching valgrind m_launcher.c ---*/
4 /*--------------------------------------------------------------------*/
7 This file is part of Valgrind, a dynamic binary instrumentation
10 Copyright (C) 2000-2009 Julian Seward
12 Copyright (C) 2018-2021 Paul Floyd
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation; either version 2 of the
18 License, or (at your option) any later version.
20 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, see <http://www.gnu.org/licenses/>.
28 The GNU General Public License is contained in the file COPYING.
31 /* Note: this is a "normal" program and not part of Valgrind proper,
32 and so it doesn't have to conform to Valgrind's arcane rules on
33 no-glibc-usage etc. */
45 #include <sys/sysctl.h>
46 /* #include <sys/user.h> */
50 #include "pub_core_debuglog.h"
51 #include "pub_core_vki.h" // Avoids warnings from
52 // pub_core_libcfile.h
53 #include "pub_core_libcproc.h" // For VALGRIND_LIB, VALGRIND_LAUNCHER
54 #include "pub_core_ume.h"
57 #define EM_X86_64 62 // elf.h doesn't define this on some older systems
60 /* Report fatal errors */
61 __attribute__((noreturn
))
62 static void barf ( const char *format
, ... )
66 va_start(vargs
, format
);
67 fprintf(stderr
, "valgrind: Cannot continue: ");
68 vfprintf(stderr
, format
, vargs
);
69 fprintf(stderr
, "\n");
77 /* Search the path for the client program */
78 static const char *find_client(const char *clientname
)
80 static char fullname
[PATH_MAX
];
81 const char *path
= getenv("PATH");
85 if ((colon
= strchr(path
, ':')) == NULL
) {
86 strlcpy(fullname
, path
, PATH_MAX
);
89 memcpy(fullname
, path
, colon
- path
);
90 fullname
[colon
- path
] = '\0';
94 strlcat(fullname
, "/", PATH_MAX
);
95 strlcat(fullname
, clientname
, PATH_MAX
);
97 if (access(fullname
, R_OK
|X_OK
) == 0) {
105 /* Examine the client and work out which platform it is for */
106 static const char *select_platform(const char *clientname
)
111 const char *platform
= NULL
;
113 VG_(debugLog
)(2, "launcher", "selecting platform for '%s'\n", clientname
);
115 if (strchr(clientname
, '/') == NULL
) {
116 clientname
= find_client(clientname
);
119 if ((fd
= open(clientname
, O_RDONLY
)) < 0) {
122 // barf("open(%s): %s", clientname, strerror(errno));
124 n_bytes
= read(fd
, header
, sizeof(header
));
130 if (header
[0] == '#' && header
[1] == '!') {
132 char *interp
= (char *)header
+ 2;
139 if (' ' != header
[i
] && '\t' != header
[i
]) {
145 // Get the interpreter name.
151 if (isspace(header
[i
])) {
161 platform
= select_platform(interp
);
163 } else if (n_bytes
>= SELFMAG
&& memcmp(header
, ELFMAG
, SELFMAG
) == 0) {
165 if ((size_t)n_bytes
>= sizeof(Elf32_Ehdr
) && header
[EI_CLASS
] == ELFCLASS32
) {
166 const Elf32_Ehdr
*ehdr
= (Elf32_Ehdr
*)header
;
168 if (header
[EI_DATA
] == ELFDATA2LSB
) {
169 if (ehdr
->e_machine
== EM_386
&&
170 ehdr
->e_ident
[EI_OSABI
] == ELFOSABI_FREEBSD
) {
171 platform
= "x86-freebsd";
174 } else if ((size_t)n_bytes
>= sizeof(Elf64_Ehdr
) && header
[EI_CLASS
] == ELFCLASS64
) {
175 const Elf64_Ehdr
*ehdr
= (Elf64_Ehdr
*)header
;
177 if (header
[EI_DATA
] == ELFDATA2LSB
&& ehdr
->e_ident
[EI_OSABI
] == ELFOSABI_FREEBSD
) {
178 if (ehdr
->e_machine
== EM_X86_64
) {
179 platform
= "amd64-freebsd";
180 } else if (ehdr
->e_machine
== EM_AARCH64
) {
181 platform
= "arm64-freebsd";
187 VG_(debugLog
)(2, "launcher", "selected platform '%s'\n",
188 platform
? platform
: "unknown");
193 /* Where we expect to find all our aux files */
194 static const char *valgrind_lib
= VG_LIBDIR
;
196 int main(int argc
, char** argv
, char** envp
)
198 int i
, j
, loglevel
, r
;
199 const char *toolname
= NULL
;
200 const char *clientname
= NULL
;
201 const char *platform
;
202 const char *default_platform
= VG_PLATFORM
;
205 char launcher_name
[PATH_MAX
+1];
211 /* Start the debugging-log system ASAP. First find out how many
212 "-d"s were specified. This is a pre-scan of the command line.
213 At the same time, look for the tool name. */
215 for (i
= 1; i
< argc
; i
++) {
216 if (argv
[i
][0] != '-') {
217 clientname
= argv
[i
];
220 if (0 == strcmp(argv
[i
], "--")) {
222 clientname
= argv
[i
+1];
226 if (0 == strcmp(argv
[i
], "-d")) {
229 if (0 == strncmp(argv
[i
], "--tool=", 7)) {
230 toolname
= argv
[i
] + 7;
234 /* ... and start the debug logger. Now we can safely emit logging
235 messages all through startup. */
236 VG_(debugLog_startup
)(loglevel
, "Stage 1");
238 /* Make sure we know which tool we're using */
240 VG_(debugLog
)(1, "launcher", "tool '%s' requested\n", toolname
);
242 VG_(debugLog
)(1, "launcher",
243 "no tool requested, defaulting to 'memcheck'\n");
244 toolname
= "memcheck";
247 /* Work out what platform to use, or use the default platform if
249 if (clientname
== NULL
) {
250 VG_(debugLog
)(1, "launcher",
251 "no client specified, defaulting platform to '%s'\n",
253 platform
= default_platform
;
254 } else if ((platform
= select_platform(clientname
)) != NULL
) {
255 VG_(debugLog
)(1, "launcher", "selected platform '%s'\n", platform
);
257 VG_(debugLog
)(1, "launcher",
258 "no platform detected, defaulting platform to '%s'\n",
260 platform
= default_platform
;
263 /* Figure out the name of this executable (viz, the launcher), so
264 we can tell stage2. stage2 will use the name for recursive
265 invocations of valgrind on child processes. */
266 memset(launcher_name
, 0, PATH_MAX
+1);
270 oid
[2] = KERN_PROC_PATHNAME
;
273 r
= sysctl(oid
, 4, launcher_name
, &len
, 0, 0);
275 fprintf(stderr
, "valgrind: warning (non-fatal): "
276 "sysctl(\"kern.proc.pathname\") failed.\n");
277 fprintf(stderr
, "valgrind: continuing, however --trace-children=yes "
281 /* tediously augment the env: VALGRIND_LAUNCHER=launcher_name */
282 new_line
= malloc(strlen(VALGRIND_LAUNCHER
) + 1
283 + strlen(launcher_name
) + 1);
284 if (new_line
== NULL
) {
285 barf("malloc of new_line failed.");
287 strcpy(new_line
, VALGRIND_LAUNCHER
);
288 strcat(new_line
, "=");
289 strcat(new_line
, launcher_name
);
291 for (j
= 0; envp
[j
]; j
++) {
294 new_env
= malloc((j
+2) * sizeof(char*));
295 if (new_env
== NULL
) {
296 barf("malloc of new_env failed.");
298 for (i
= 0; i
< j
; i
++) {
299 new_env
[i
] = envp
[i
];
301 new_env
[i
++] = new_line
;
305 /* Establish the correct VALGRIND_LIB. */
306 cp
= getenv(VALGRIND_LIB
);
312 /* Build the stage2 invocation, and execve it. Bye! */
313 toolfile
= malloc(strlen(valgrind_lib
) + strlen(toolname
) + strlen(platform
) + 3);
314 if (toolfile
== NULL
) {
315 barf("malloc of toolfile failed.");
317 sprintf(toolfile
, "%s/%s-%s", valgrind_lib
, toolname
, platform
);
319 VG_(debugLog
)(1, "launcher", "launching %s\n", toolfile
);
321 execve(toolfile
, argv
, new_env
);
323 fprintf(stderr
, "valgrind: failed to start tool '%s' for platform '%s': %s\n",
324 toolname
, platform
, strerror(errno
));