Linux Audio

Check our new training course

Loading...
v5.9
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2015, Wang Nan <wangnan0@huawei.com>
  4 * Copyright (C) 2015, Huawei Inc.
  5 */
  6
  7#include <errno.h>
  8#include <limits.h>
  9#include <stdio.h>
 10#include <stdlib.h>
 11#include <unistd.h>
 12#include <linux/err.h>
 13#include <linux/string.h>
 14#include <linux/zalloc.h>
 15#include "debug.h"
 16#include "llvm-utils.h"
 17#include "config.h"
 18#include "util.h"
 19#include <sys/wait.h>
 20#include <subcmd/exec-cmd.h>
 21
 22#define CLANG_BPF_CMD_DEFAULT_TEMPLATE				\
 23		"$CLANG_EXEC -D__KERNEL__ -D__NR_CPUS__=$NR_CPUS "\
 24		"-DLINUX_VERSION_CODE=$LINUX_VERSION_CODE "	\
 25		"$CLANG_OPTIONS $PERF_BPF_INC_OPTIONS $KERNEL_INC_OPTIONS " \
 26		"-Wno-unused-value -Wno-pointer-sign "		\
 27		"-working-directory $WORKING_DIR "		\
 28		"-c \"$CLANG_SOURCE\" -target bpf $CLANG_EMIT_LLVM -O2 -o - $LLVM_OPTIONS_PIPE"
 29
 30struct llvm_param llvm_param = {
 31	.clang_path = "clang",
 32	.llc_path = "llc",
 33	.clang_bpf_cmd_template = CLANG_BPF_CMD_DEFAULT_TEMPLATE,
 34	.clang_opt = NULL,
 35	.opts = NULL,
 36	.kbuild_dir = NULL,
 37	.kbuild_opts = NULL,
 38	.user_set_param = false,
 39};
 40
 41int perf_llvm_config(const char *var, const char *value)
 42{
 43	if (!strstarts(var, "llvm."))
 44		return 0;
 45	var += sizeof("llvm.") - 1;
 46
 47	if (!strcmp(var, "clang-path"))
 48		llvm_param.clang_path = strdup(value);
 49	else if (!strcmp(var, "clang-bpf-cmd-template"))
 50		llvm_param.clang_bpf_cmd_template = strdup(value);
 51	else if (!strcmp(var, "clang-opt"))
 52		llvm_param.clang_opt = strdup(value);
 53	else if (!strcmp(var, "kbuild-dir"))
 54		llvm_param.kbuild_dir = strdup(value);
 55	else if (!strcmp(var, "kbuild-opts"))
 56		llvm_param.kbuild_opts = strdup(value);
 57	else if (!strcmp(var, "dump-obj"))
 58		llvm_param.dump_obj = !!perf_config_bool(var, value);
 59	else if (!strcmp(var, "opts"))
 60		llvm_param.opts = strdup(value);
 61	else {
 62		pr_debug("Invalid LLVM config option: %s\n", value);
 63		return -1;
 64	}
 65	llvm_param.user_set_param = true;
 66	return 0;
 67}
 68
 69static int
 70search_program(const char *def, const char *name,
 71	       char *output)
 72{
 73	char *env, *path, *tmp = NULL;
 74	char buf[PATH_MAX];
 75	int ret;
 76
 77	output[0] = '\0';
 78	if (def && def[0] != '\0') {
 79		if (def[0] == '/') {
 80			if (access(def, F_OK) == 0) {
 81				strlcpy(output, def, PATH_MAX);
 82				return 0;
 83			}
 84		} else if (def[0] != '\0')
 85			name = def;
 86	}
 87
 88	env = getenv("PATH");
 89	if (!env)
 90		return -1;
 91	env = strdup(env);
 92	if (!env)
 93		return -1;
 94
 95	ret = -ENOENT;
 96	path = strtok_r(env, ":",  &tmp);
 97	while (path) {
 98		scnprintf(buf, sizeof(buf), "%s/%s", path, name);
 99		if (access(buf, F_OK) == 0) {
100			strlcpy(output, buf, PATH_MAX);
101			ret = 0;
102			break;
103		}
104		path = strtok_r(NULL, ":", &tmp);
105	}
106
107	free(env);
108	return ret;
109}
110
111#define READ_SIZE	4096
112static int
113read_from_pipe(const char *cmd, void **p_buf, size_t *p_read_sz)
114{
115	int err = 0;
116	void *buf = NULL;
117	FILE *file = NULL;
118	size_t read_sz = 0, buf_sz = 0;
119	char serr[STRERR_BUFSIZE];
120
121	file = popen(cmd, "r");
122	if (!file) {
123		pr_err("ERROR: unable to popen cmd: %s\n",
124		       str_error_r(errno, serr, sizeof(serr)));
125		return -EINVAL;
126	}
127
128	while (!feof(file) && !ferror(file)) {
129		/*
130		 * Make buf_sz always have obe byte extra space so we
131		 * can put '\0' there.
132		 */
133		if (buf_sz - read_sz < READ_SIZE + 1) {
134			void *new_buf;
135
136			buf_sz = read_sz + READ_SIZE + 1;
137			new_buf = realloc(buf, buf_sz);
138
139			if (!new_buf) {
140				pr_err("ERROR: failed to realloc memory\n");
141				err = -ENOMEM;
142				goto errout;
143			}
144
145			buf = new_buf;
146		}
147		read_sz += fread(buf + read_sz, 1, READ_SIZE, file);
148	}
149
150	if (buf_sz - read_sz < 1) {
151		pr_err("ERROR: internal error\n");
152		err = -EINVAL;
153		goto errout;
154	}
155
156	if (ferror(file)) {
157		pr_err("ERROR: error occurred when reading from pipe: %s\n",
158		       str_error_r(errno, serr, sizeof(serr)));
159		err = -EIO;
160		goto errout;
161	}
162
163	err = WEXITSTATUS(pclose(file));
164	file = NULL;
165	if (err) {
166		err = -EINVAL;
167		goto errout;
168	}
169
170	/*
171	 * If buf is string, give it terminal '\0' to make our life
172	 * easier. If buf is not string, that '\0' is out of space
173	 * indicated by read_sz so caller won't even notice it.
174	 */
175	((char *)buf)[read_sz] = '\0';
176
177	if (!p_buf)
178		free(buf);
179	else
180		*p_buf = buf;
181
182	if (p_read_sz)
183		*p_read_sz = read_sz;
184	return 0;
185
186errout:
187	if (file)
188		pclose(file);
189	free(buf);
190	if (p_buf)
191		*p_buf = NULL;
192	if (p_read_sz)
193		*p_read_sz = 0;
194	return err;
195}
196
197static inline void
198force_set_env(const char *var, const char *value)
199{
200	if (value) {
201		setenv(var, value, 1);
202		pr_debug("set env: %s=%s\n", var, value);
203	} else {
204		unsetenv(var);
205		pr_debug("unset env: %s\n", var);
206	}
207}
208
209static void
210version_notice(void)
211{
212	pr_err(
213"     \tLLVM 3.7 or newer is required. Which can be found from http://llvm.org\n"
214"     \tYou may want to try git trunk:\n"
215"     \t\tgit clone http://llvm.org/git/llvm.git\n"
216"     \t\t     and\n"
217"     \t\tgit clone http://llvm.org/git/clang.git\n\n"
218"     \tOr fetch the latest clang/llvm 3.7 from pre-built llvm packages for\n"
219"     \tdebian/ubuntu:\n"
220"     \t\thttp://llvm.org/apt\n\n"
221"     \tIf you are using old version of clang, change 'clang-bpf-cmd-template'\n"
222"     \toption in [llvm] section of ~/.perfconfig to:\n\n"
223"     \t  \"$CLANG_EXEC $CLANG_OPTIONS $KERNEL_INC_OPTIONS $PERF_BPF_INC_OPTIONS \\\n"
224"     \t     -working-directory $WORKING_DIR -c $CLANG_SOURCE \\\n"
225"     \t     -emit-llvm -o - | /path/to/llc -march=bpf -filetype=obj -o -\"\n"
226"     \t(Replace /path/to/llc with path to your llc)\n\n"
227);
228}
229
230static int detect_kbuild_dir(char **kbuild_dir)
231{
232	const char *test_dir = llvm_param.kbuild_dir;
233	const char *prefix_dir = "";
234	const char *suffix_dir = "";
235
236	/* _UTSNAME_LENGTH is 65 */
237	char release[128];
238
239	char *autoconf_path;
240
241	int err;
242
243	if (!test_dir) {
 
 
 
244		err = fetch_kernel_version(NULL, release,
245					   sizeof(release));
246		if (err)
247			return -EINVAL;
248
249		test_dir = release;
250		prefix_dir = "/lib/modules/";
251		suffix_dir = "/build";
252	}
253
254	err = asprintf(&autoconf_path, "%s%s%s/include/generated/autoconf.h",
255		       prefix_dir, test_dir, suffix_dir);
256	if (err < 0)
257		return -ENOMEM;
258
259	if (access(autoconf_path, R_OK) == 0) {
260		free(autoconf_path);
261
262		err = asprintf(kbuild_dir, "%s%s%s", prefix_dir, test_dir,
263			       suffix_dir);
264		if (err < 0)
265			return -ENOMEM;
266		return 0;
267	}
268	pr_debug("%s: Couldn't find \"%s\", missing kernel-devel package?.\n",
269		 __func__, autoconf_path);
270	free(autoconf_path);
271	return -ENOENT;
272}
273
274static const char *kinc_fetch_script =
275"#!/usr/bin/env sh\n"
276"if ! test -d \"$KBUILD_DIR\"\n"
277"then\n"
278"	exit 1\n"
279"fi\n"
280"if ! test -f \"$KBUILD_DIR/include/generated/autoconf.h\"\n"
281"then\n"
282"	exit 1\n"
283"fi\n"
284"TMPDIR=`mktemp -d`\n"
285"if test -z \"$TMPDIR\"\n"
286"then\n"
287"    exit 1\n"
288"fi\n"
289"cat << EOF > $TMPDIR/Makefile\n"
290"obj-y := dummy.o\n"
291"\\$(obj)/%.o: \\$(src)/%.c\n"
292"\t@echo -n \"\\$(NOSTDINC_FLAGS) \\$(LINUXINCLUDE) \\$(EXTRA_CFLAGS)\"\n"
293"\t\\$(CC) -c -o \\$@ \\$<\n"
294"EOF\n"
295"touch $TMPDIR/dummy.c\n"
296"make -s -C $KBUILD_DIR M=$TMPDIR $KBUILD_OPTS dummy.o 2>/dev/null\n"
297"RET=$?\n"
298"rm -rf $TMPDIR\n"
299"exit $RET\n";
300
301void llvm__get_kbuild_opts(char **kbuild_dir, char **kbuild_include_opts)
302{
303	static char *saved_kbuild_dir;
304	static char *saved_kbuild_include_opts;
305	int err;
306
307	if (!kbuild_dir || !kbuild_include_opts)
308		return;
309
310	*kbuild_dir = NULL;
311	*kbuild_include_opts = NULL;
312
313	if (saved_kbuild_dir && saved_kbuild_include_opts &&
314	    !IS_ERR(saved_kbuild_dir) && !IS_ERR(saved_kbuild_include_opts)) {
315		*kbuild_dir = strdup(saved_kbuild_dir);
316		*kbuild_include_opts = strdup(saved_kbuild_include_opts);
317
318		if (*kbuild_dir && *kbuild_include_opts)
319			return;
320
321		zfree(kbuild_dir);
322		zfree(kbuild_include_opts);
323		/*
324		 * Don't fall through: it may breaks saved_kbuild_dir and
325		 * saved_kbuild_include_opts if detect them again when
326		 * memory is low.
327		 */
328		return;
329	}
330
331	if (llvm_param.kbuild_dir && !llvm_param.kbuild_dir[0]) {
332		pr_debug("[llvm.kbuild-dir] is set to \"\" deliberately.\n");
333		pr_debug("Skip kbuild options detection.\n");
334		goto errout;
335	}
336
337	err = detect_kbuild_dir(kbuild_dir);
338	if (err) {
339		pr_warning(
340"WARNING:\tunable to get correct kernel building directory.\n"
341"Hint:\tSet correct kbuild directory using 'kbuild-dir' option in [llvm]\n"
342"     \tsection of ~/.perfconfig or set it to \"\" to suppress kbuild\n"
343"     \tdetection.\n\n");
344		goto errout;
345	}
346
347	pr_debug("Kernel build dir is set to %s\n", *kbuild_dir);
348	force_set_env("KBUILD_DIR", *kbuild_dir);
349	force_set_env("KBUILD_OPTS", llvm_param.kbuild_opts);
350	err = read_from_pipe(kinc_fetch_script,
351			     (void **)kbuild_include_opts,
352			     NULL);
353	if (err) {
354		pr_warning(
355"WARNING:\tunable to get kernel include directories from '%s'\n"
356"Hint:\tTry set clang include options using 'clang-bpf-cmd-template'\n"
357"     \toption in [llvm] section of ~/.perfconfig and set 'kbuild-dir'\n"
358"     \toption in [llvm] to \"\" to suppress this detection.\n\n",
359			*kbuild_dir);
360
361		zfree(kbuild_dir);
 
362		goto errout;
363	}
364
365	pr_debug("include option is set to %s\n", *kbuild_include_opts);
366
367	saved_kbuild_dir = strdup(*kbuild_dir);
368	saved_kbuild_include_opts = strdup(*kbuild_include_opts);
369
370	if (!saved_kbuild_dir || !saved_kbuild_include_opts) {
371		zfree(&saved_kbuild_dir);
372		zfree(&saved_kbuild_include_opts);
373	}
374	return;
375errout:
376	saved_kbuild_dir = ERR_PTR(-EINVAL);
377	saved_kbuild_include_opts = ERR_PTR(-EINVAL);
378}
379
380int llvm__get_nr_cpus(void)
381{
382	static int nr_cpus_avail = 0;
383	char serr[STRERR_BUFSIZE];
384
385	if (nr_cpus_avail > 0)
386		return nr_cpus_avail;
387
388	nr_cpus_avail = sysconf(_SC_NPROCESSORS_CONF);
389	if (nr_cpus_avail <= 0) {
390		pr_err(
391"WARNING:\tunable to get available CPUs in this system: %s\n"
392"        \tUse 128 instead.\n", str_error_r(errno, serr, sizeof(serr)));
393		nr_cpus_avail = 128;
394	}
395	return nr_cpus_avail;
396}
397
398void llvm__dump_obj(const char *path, void *obj_buf, size_t size)
399{
400	char *obj_path = strdup(path);
401	FILE *fp;
402	char *p;
403
404	if (!obj_path) {
405		pr_warning("WARNING: Not enough memory, skip object dumping\n");
406		return;
407	}
408
409	p = strrchr(obj_path, '.');
410	if (!p || (strcmp(p, ".c") != 0)) {
411		pr_warning("WARNING: invalid llvm source path: '%s', skip object dumping\n",
412			   obj_path);
413		goto out;
414	}
415
416	p[1] = 'o';
417	fp = fopen(obj_path, "wb");
418	if (!fp) {
419		pr_warning("WARNING: failed to open '%s': %s, skip object dumping\n",
420			   obj_path, strerror(errno));
421		goto out;
422	}
423
424	pr_debug("LLVM: dumping %s\n", obj_path);
425	if (fwrite(obj_buf, size, 1, fp) != 1)
426		pr_debug("WARNING: failed to write to file '%s': %s, skip object dumping\n", obj_path, strerror(errno));
 
427	fclose(fp);
428out:
429	free(obj_path);
430}
431
432int llvm__compile_bpf(const char *path, void **p_obj_buf,
433		      size_t *p_obj_buf_sz)
434{
435	size_t obj_buf_sz;
436	void *obj_buf = NULL;
437	int err, nr_cpus_avail;
438	unsigned int kernel_version;
439	char linux_version_code_str[64];
440	const char *clang_opt = llvm_param.clang_opt;
441	char clang_path[PATH_MAX], llc_path[PATH_MAX], abspath[PATH_MAX], nr_cpus_avail_str[64];
442	char serr[STRERR_BUFSIZE];
443	char *kbuild_dir = NULL, *kbuild_include_opts = NULL,
444	     *perf_bpf_include_opts = NULL;
445	const char *template = llvm_param.clang_bpf_cmd_template;
446	char *pipe_template = NULL;
447	const char *opts = llvm_param.opts;
448	char *command_echo = NULL, *command_out;
449	char *perf_include_dir = system_path(PERF_INCLUDE_DIR);
450
451	if (path[0] != '-' && realpath(path, abspath) == NULL) {
452		err = errno;
453		pr_err("ERROR: problems with path %s: %s\n",
454		       path, str_error_r(err, serr, sizeof(serr)));
455		return -err;
456	}
457
458	if (!template)
459		template = CLANG_BPF_CMD_DEFAULT_TEMPLATE;
460
461	err = search_program(llvm_param.clang_path,
462			     "clang", clang_path);
463	if (err) {
464		pr_err(
465"ERROR:\tunable to find clang.\n"
466"Hint:\tTry to install latest clang/llvm to support BPF. Check your $PATH\n"
467"     \tand 'clang-path' option in [llvm] section of ~/.perfconfig.\n");
468		version_notice();
469		return -ENOENT;
470	}
471
472	/*
473	 * This is an optional work. Even it fail we can continue our
474	 * work. Needn't to check error return.
475	 */
476	llvm__get_kbuild_opts(&kbuild_dir, &kbuild_include_opts);
477
478	nr_cpus_avail = llvm__get_nr_cpus();
479	snprintf(nr_cpus_avail_str, sizeof(nr_cpus_avail_str), "%d",
480		 nr_cpus_avail);
481
482	if (fetch_kernel_version(&kernel_version, NULL, 0))
483		kernel_version = 0;
484
485	snprintf(linux_version_code_str, sizeof(linux_version_code_str),
486		 "0x%x", kernel_version);
487	if (asprintf(&perf_bpf_include_opts, "-I%s/bpf", perf_include_dir) < 0)
488		goto errout;
489	force_set_env("NR_CPUS", nr_cpus_avail_str);
490	force_set_env("LINUX_VERSION_CODE", linux_version_code_str);
491	force_set_env("CLANG_EXEC", clang_path);
492	force_set_env("CLANG_OPTIONS", clang_opt);
493	force_set_env("KERNEL_INC_OPTIONS", kbuild_include_opts);
494	force_set_env("PERF_BPF_INC_OPTIONS", perf_bpf_include_opts);
495	force_set_env("WORKING_DIR", kbuild_dir ? : ".");
496
497	if (opts) {
498		err = search_program(llvm_param.llc_path, "llc", llc_path);
499		if (err) {
500			pr_err("ERROR:\tunable to find llc.\n"
501			       "Hint:\tTry to install latest clang/llvm to support BPF. Check your $PATH\n"
502			       "     \tand 'llc-path' option in [llvm] section of ~/.perfconfig.\n");
503			version_notice();
504			goto errout;
505		}
506
507		if (asprintf(&pipe_template, "%s -emit-llvm | %s -march=bpf %s -filetype=obj -o -",
508			      template, llc_path, opts) < 0) {
509			pr_err("ERROR:\tnot enough memory to setup command line\n");
510			goto errout;
511		}
512
513		template = pipe_template;
514
515	}
516
517	/*
518	 * Since we may reset clang's working dir, path of source file
519	 * should be transferred into absolute path, except we want
520	 * stdin to be source file (testing).
521	 */
522	force_set_env("CLANG_SOURCE",
523		      (path[0] == '-') ? path : abspath);
524
525	pr_debug("llvm compiling command template: %s\n", template);
526
527	if (asprintf(&command_echo, "echo -n \"%s\"", template) < 0)
528		goto errout;
529
530	err = read_from_pipe(command_echo, (void **) &command_out, NULL);
531	if (err)
532		goto errout;
533
534	pr_debug("llvm compiling command : %s\n", command_out);
535
536	err = read_from_pipe(template, &obj_buf, &obj_buf_sz);
537	if (err) {
538		pr_err("ERROR:\tunable to compile %s\n", path);
539		pr_err("Hint:\tCheck error message shown above.\n");
540		pr_err("Hint:\tYou can also pre-compile it into .o using:\n");
541		pr_err("     \t\tclang -target bpf -O2 -c %s\n", path);
542		pr_err("     \twith proper -I and -D options.\n");
543		goto errout;
544	}
545
546	free(command_echo);
547	free(command_out);
548	free(kbuild_dir);
549	free(kbuild_include_opts);
550	free(perf_bpf_include_opts);
551	free(perf_include_dir);
552
553	if (!p_obj_buf)
554		free(obj_buf);
555	else
556		*p_obj_buf = obj_buf;
557
558	if (p_obj_buf_sz)
559		*p_obj_buf_sz = obj_buf_sz;
560	return 0;
561errout:
562	free(command_echo);
563	free(kbuild_dir);
564	free(kbuild_include_opts);
565	free(obj_buf);
566	free(perf_bpf_include_opts);
567	free(perf_include_dir);
568	free(pipe_template);
569	if (p_obj_buf)
570		*p_obj_buf = NULL;
571	if (p_obj_buf_sz)
572		*p_obj_buf_sz = 0;
573	return err;
574}
575
576int llvm__search_clang(void)
577{
578	char clang_path[PATH_MAX];
579
580	return search_program(llvm_param.clang_path, "clang", clang_path);
581}
v4.17
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2015, Wang Nan <wangnan0@huawei.com>
  4 * Copyright (C) 2015, Huawei Inc.
  5 */
  6
  7#include <errno.h>
  8#include <limits.h>
  9#include <stdio.h>
 10#include <stdlib.h>
 
 11#include <linux/err.h>
 
 
 12#include "debug.h"
 13#include "llvm-utils.h"
 14#include "config.h"
 15#include "util.h"
 16#include <sys/wait.h>
 
 17
 18#define CLANG_BPF_CMD_DEFAULT_TEMPLATE				\
 19		"$CLANG_EXEC -D__KERNEL__ -D__NR_CPUS__=$NR_CPUS "\
 20		"-DLINUX_VERSION_CODE=$LINUX_VERSION_CODE "	\
 21		"$CLANG_OPTIONS $KERNEL_INC_OPTIONS "		\
 22		"-Wno-unused-value -Wno-pointer-sign "		\
 23		"-working-directory $WORKING_DIR "		\
 24		"-c \"$CLANG_SOURCE\" -target bpf -O2 -o -"
 25
 26struct llvm_param llvm_param = {
 27	.clang_path = "clang",
 
 28	.clang_bpf_cmd_template = CLANG_BPF_CMD_DEFAULT_TEMPLATE,
 29	.clang_opt = NULL,
 
 30	.kbuild_dir = NULL,
 31	.kbuild_opts = NULL,
 32	.user_set_param = false,
 33};
 34
 35int perf_llvm_config(const char *var, const char *value)
 36{
 37	if (!strstarts(var, "llvm."))
 38		return 0;
 39	var += sizeof("llvm.") - 1;
 40
 41	if (!strcmp(var, "clang-path"))
 42		llvm_param.clang_path = strdup(value);
 43	else if (!strcmp(var, "clang-bpf-cmd-template"))
 44		llvm_param.clang_bpf_cmd_template = strdup(value);
 45	else if (!strcmp(var, "clang-opt"))
 46		llvm_param.clang_opt = strdup(value);
 47	else if (!strcmp(var, "kbuild-dir"))
 48		llvm_param.kbuild_dir = strdup(value);
 49	else if (!strcmp(var, "kbuild-opts"))
 50		llvm_param.kbuild_opts = strdup(value);
 51	else if (!strcmp(var, "dump-obj"))
 52		llvm_param.dump_obj = !!perf_config_bool(var, value);
 
 
 53	else {
 54		pr_debug("Invalid LLVM config option: %s\n", value);
 55		return -1;
 56	}
 57	llvm_param.user_set_param = true;
 58	return 0;
 59}
 60
 61static int
 62search_program(const char *def, const char *name,
 63	       char *output)
 64{
 65	char *env, *path, *tmp = NULL;
 66	char buf[PATH_MAX];
 67	int ret;
 68
 69	output[0] = '\0';
 70	if (def && def[0] != '\0') {
 71		if (def[0] == '/') {
 72			if (access(def, F_OK) == 0) {
 73				strlcpy(output, def, PATH_MAX);
 74				return 0;
 75			}
 76		} else if (def[0] != '\0')
 77			name = def;
 78	}
 79
 80	env = getenv("PATH");
 81	if (!env)
 82		return -1;
 83	env = strdup(env);
 84	if (!env)
 85		return -1;
 86
 87	ret = -ENOENT;
 88	path = strtok_r(env, ":",  &tmp);
 89	while (path) {
 90		scnprintf(buf, sizeof(buf), "%s/%s", path, name);
 91		if (access(buf, F_OK) == 0) {
 92			strlcpy(output, buf, PATH_MAX);
 93			ret = 0;
 94			break;
 95		}
 96		path = strtok_r(NULL, ":", &tmp);
 97	}
 98
 99	free(env);
100	return ret;
101}
102
103#define READ_SIZE	4096
104static int
105read_from_pipe(const char *cmd, void **p_buf, size_t *p_read_sz)
106{
107	int err = 0;
108	void *buf = NULL;
109	FILE *file = NULL;
110	size_t read_sz = 0, buf_sz = 0;
111	char serr[STRERR_BUFSIZE];
112
113	file = popen(cmd, "r");
114	if (!file) {
115		pr_err("ERROR: unable to popen cmd: %s\n",
116		       str_error_r(errno, serr, sizeof(serr)));
117		return -EINVAL;
118	}
119
120	while (!feof(file) && !ferror(file)) {
121		/*
122		 * Make buf_sz always have obe byte extra space so we
123		 * can put '\0' there.
124		 */
125		if (buf_sz - read_sz < READ_SIZE + 1) {
126			void *new_buf;
127
128			buf_sz = read_sz + READ_SIZE + 1;
129			new_buf = realloc(buf, buf_sz);
130
131			if (!new_buf) {
132				pr_err("ERROR: failed to realloc memory\n");
133				err = -ENOMEM;
134				goto errout;
135			}
136
137			buf = new_buf;
138		}
139		read_sz += fread(buf + read_sz, 1, READ_SIZE, file);
140	}
141
142	if (buf_sz - read_sz < 1) {
143		pr_err("ERROR: internal error\n");
144		err = -EINVAL;
145		goto errout;
146	}
147
148	if (ferror(file)) {
149		pr_err("ERROR: error occurred when reading from pipe: %s\n",
150		       str_error_r(errno, serr, sizeof(serr)));
151		err = -EIO;
152		goto errout;
153	}
154
155	err = WEXITSTATUS(pclose(file));
156	file = NULL;
157	if (err) {
158		err = -EINVAL;
159		goto errout;
160	}
161
162	/*
163	 * If buf is string, give it terminal '\0' to make our life
164	 * easier. If buf is not string, that '\0' is out of space
165	 * indicated by read_sz so caller won't even notice it.
166	 */
167	((char *)buf)[read_sz] = '\0';
168
169	if (!p_buf)
170		free(buf);
171	else
172		*p_buf = buf;
173
174	if (p_read_sz)
175		*p_read_sz = read_sz;
176	return 0;
177
178errout:
179	if (file)
180		pclose(file);
181	free(buf);
182	if (p_buf)
183		*p_buf = NULL;
184	if (p_read_sz)
185		*p_read_sz = 0;
186	return err;
187}
188
189static inline void
190force_set_env(const char *var, const char *value)
191{
192	if (value) {
193		setenv(var, value, 1);
194		pr_debug("set env: %s=%s\n", var, value);
195	} else {
196		unsetenv(var);
197		pr_debug("unset env: %s\n", var);
198	}
199}
200
201static void
202version_notice(void)
203{
204	pr_err(
205"     \tLLVM 3.7 or newer is required. Which can be found from http://llvm.org\n"
206"     \tYou may want to try git trunk:\n"
207"     \t\tgit clone http://llvm.org/git/llvm.git\n"
208"     \t\t     and\n"
209"     \t\tgit clone http://llvm.org/git/clang.git\n\n"
210"     \tOr fetch the latest clang/llvm 3.7 from pre-built llvm packages for\n"
211"     \tdebian/ubuntu:\n"
212"     \t\thttp://llvm.org/apt\n\n"
213"     \tIf you are using old version of clang, change 'clang-bpf-cmd-template'\n"
214"     \toption in [llvm] section of ~/.perfconfig to:\n\n"
215"     \t  \"$CLANG_EXEC $CLANG_OPTIONS $KERNEL_INC_OPTIONS \\\n"
216"     \t     -working-directory $WORKING_DIR -c $CLANG_SOURCE \\\n"
217"     \t     -emit-llvm -o - | /path/to/llc -march=bpf -filetype=obj -o -\"\n"
218"     \t(Replace /path/to/llc with path to your llc)\n\n"
219);
220}
221
222static int detect_kbuild_dir(char **kbuild_dir)
223{
224	const char *test_dir = llvm_param.kbuild_dir;
225	const char *prefix_dir = "";
226	const char *suffix_dir = "";
227
 
 
 
228	char *autoconf_path;
229
230	int err;
231
232	if (!test_dir) {
233		/* _UTSNAME_LENGTH is 65 */
234		char release[128];
235
236		err = fetch_kernel_version(NULL, release,
237					   sizeof(release));
238		if (err)
239			return -EINVAL;
240
241		test_dir = release;
242		prefix_dir = "/lib/modules/";
243		suffix_dir = "/build";
244	}
245
246	err = asprintf(&autoconf_path, "%s%s%s/include/generated/autoconf.h",
247		       prefix_dir, test_dir, suffix_dir);
248	if (err < 0)
249		return -ENOMEM;
250
251	if (access(autoconf_path, R_OK) == 0) {
252		free(autoconf_path);
253
254		err = asprintf(kbuild_dir, "%s%s%s", prefix_dir, test_dir,
255			       suffix_dir);
256		if (err < 0)
257			return -ENOMEM;
258		return 0;
259	}
 
 
260	free(autoconf_path);
261	return -ENOENT;
262}
263
264static const char *kinc_fetch_script =
265"#!/usr/bin/env sh\n"
266"if ! test -d \"$KBUILD_DIR\"\n"
267"then\n"
268"	exit -1\n"
269"fi\n"
270"if ! test -f \"$KBUILD_DIR/include/generated/autoconf.h\"\n"
271"then\n"
272"	exit -1\n"
273"fi\n"
274"TMPDIR=`mktemp -d`\n"
275"if test -z \"$TMPDIR\"\n"
276"then\n"
277"    exit -1\n"
278"fi\n"
279"cat << EOF > $TMPDIR/Makefile\n"
280"obj-y := dummy.o\n"
281"\\$(obj)/%.o: \\$(src)/%.c\n"
282"\t@echo -n \"\\$(NOSTDINC_FLAGS) \\$(LINUXINCLUDE) \\$(EXTRA_CFLAGS)\"\n"
 
283"EOF\n"
284"touch $TMPDIR/dummy.c\n"
285"make -s -C $KBUILD_DIR M=$TMPDIR $KBUILD_OPTS dummy.o 2>/dev/null\n"
286"RET=$?\n"
287"rm -rf $TMPDIR\n"
288"exit $RET\n";
289
290void llvm__get_kbuild_opts(char **kbuild_dir, char **kbuild_include_opts)
291{
292	static char *saved_kbuild_dir;
293	static char *saved_kbuild_include_opts;
294	int err;
295
296	if (!kbuild_dir || !kbuild_include_opts)
297		return;
298
299	*kbuild_dir = NULL;
300	*kbuild_include_opts = NULL;
301
302	if (saved_kbuild_dir && saved_kbuild_include_opts &&
303	    !IS_ERR(saved_kbuild_dir) && !IS_ERR(saved_kbuild_include_opts)) {
304		*kbuild_dir = strdup(saved_kbuild_dir);
305		*kbuild_include_opts = strdup(saved_kbuild_include_opts);
306
307		if (*kbuild_dir && *kbuild_include_opts)
308			return;
309
310		zfree(kbuild_dir);
311		zfree(kbuild_include_opts);
312		/*
313		 * Don't fall through: it may breaks saved_kbuild_dir and
314		 * saved_kbuild_include_opts if detect them again when
315		 * memory is low.
316		 */
317		return;
318	}
319
320	if (llvm_param.kbuild_dir && !llvm_param.kbuild_dir[0]) {
321		pr_debug("[llvm.kbuild-dir] is set to \"\" deliberately.\n");
322		pr_debug("Skip kbuild options detection.\n");
323		goto errout;
324	}
325
326	err = detect_kbuild_dir(kbuild_dir);
327	if (err) {
328		pr_warning(
329"WARNING:\tunable to get correct kernel building directory.\n"
330"Hint:\tSet correct kbuild directory using 'kbuild-dir' option in [llvm]\n"
331"     \tsection of ~/.perfconfig or set it to \"\" to suppress kbuild\n"
332"     \tdetection.\n\n");
333		goto errout;
334	}
335
336	pr_debug("Kernel build dir is set to %s\n", *kbuild_dir);
337	force_set_env("KBUILD_DIR", *kbuild_dir);
338	force_set_env("KBUILD_OPTS", llvm_param.kbuild_opts);
339	err = read_from_pipe(kinc_fetch_script,
340			     (void **)kbuild_include_opts,
341			     NULL);
342	if (err) {
343		pr_warning(
344"WARNING:\tunable to get kernel include directories from '%s'\n"
345"Hint:\tTry set clang include options using 'clang-bpf-cmd-template'\n"
346"     \toption in [llvm] section of ~/.perfconfig and set 'kbuild-dir'\n"
347"     \toption in [llvm] to \"\" to suppress this detection.\n\n",
348			*kbuild_dir);
349
350		free(*kbuild_dir);
351		*kbuild_dir = NULL;
352		goto errout;
353	}
354
355	pr_debug("include option is set to %s\n", *kbuild_include_opts);
356
357	saved_kbuild_dir = strdup(*kbuild_dir);
358	saved_kbuild_include_opts = strdup(*kbuild_include_opts);
359
360	if (!saved_kbuild_dir || !saved_kbuild_include_opts) {
361		zfree(&saved_kbuild_dir);
362		zfree(&saved_kbuild_include_opts);
363	}
364	return;
365errout:
366	saved_kbuild_dir = ERR_PTR(-EINVAL);
367	saved_kbuild_include_opts = ERR_PTR(-EINVAL);
368}
369
370int llvm__get_nr_cpus(void)
371{
372	static int nr_cpus_avail = 0;
373	char serr[STRERR_BUFSIZE];
374
375	if (nr_cpus_avail > 0)
376		return nr_cpus_avail;
377
378	nr_cpus_avail = sysconf(_SC_NPROCESSORS_CONF);
379	if (nr_cpus_avail <= 0) {
380		pr_err(
381"WARNING:\tunable to get available CPUs in this system: %s\n"
382"        \tUse 128 instead.\n", str_error_r(errno, serr, sizeof(serr)));
383		nr_cpus_avail = 128;
384	}
385	return nr_cpus_avail;
386}
387
388void llvm__dump_obj(const char *path, void *obj_buf, size_t size)
389{
390	char *obj_path = strdup(path);
391	FILE *fp;
392	char *p;
393
394	if (!obj_path) {
395		pr_warning("WARNING: Not enough memory, skip object dumping\n");
396		return;
397	}
398
399	p = strrchr(obj_path, '.');
400	if (!p || (strcmp(p, ".c") != 0)) {
401		pr_warning("WARNING: invalid llvm source path: '%s', skip object dumping\n",
402			   obj_path);
403		goto out;
404	}
405
406	p[1] = 'o';
407	fp = fopen(obj_path, "wb");
408	if (!fp) {
409		pr_warning("WARNING: failed to open '%s': %s, skip object dumping\n",
410			   obj_path, strerror(errno));
411		goto out;
412	}
413
414	pr_info("LLVM: dumping %s\n", obj_path);
415	if (fwrite(obj_buf, size, 1, fp) != 1)
416		pr_warning("WARNING: failed to write to file '%s': %s, skip object dumping\n",
417			   obj_path, strerror(errno));
418	fclose(fp);
419out:
420	free(obj_path);
421}
422
423int llvm__compile_bpf(const char *path, void **p_obj_buf,
424		      size_t *p_obj_buf_sz)
425{
426	size_t obj_buf_sz;
427	void *obj_buf = NULL;
428	int err, nr_cpus_avail;
429	unsigned int kernel_version;
430	char linux_version_code_str[64];
431	const char *clang_opt = llvm_param.clang_opt;
432	char clang_path[PATH_MAX], abspath[PATH_MAX], nr_cpus_avail_str[64];
433	char serr[STRERR_BUFSIZE];
434	char *kbuild_dir = NULL, *kbuild_include_opts = NULL;
 
435	const char *template = llvm_param.clang_bpf_cmd_template;
436	char *command_echo, *command_out;
 
 
 
437
438	if (path[0] != '-' && realpath(path, abspath) == NULL) {
439		err = errno;
440		pr_err("ERROR: problems with path %s: %s\n",
441		       path, str_error_r(err, serr, sizeof(serr)));
442		return -err;
443	}
444
445	if (!template)
446		template = CLANG_BPF_CMD_DEFAULT_TEMPLATE;
447
448	err = search_program(llvm_param.clang_path,
449			     "clang", clang_path);
450	if (err) {
451		pr_err(
452"ERROR:\tunable to find clang.\n"
453"Hint:\tTry to install latest clang/llvm to support BPF. Check your $PATH\n"
454"     \tand 'clang-path' option in [llvm] section of ~/.perfconfig.\n");
455		version_notice();
456		return -ENOENT;
457	}
458
459	/*
460	 * This is an optional work. Even it fail we can continue our
461	 * work. Needn't to check error return.
462	 */
463	llvm__get_kbuild_opts(&kbuild_dir, &kbuild_include_opts);
464
465	nr_cpus_avail = llvm__get_nr_cpus();
466	snprintf(nr_cpus_avail_str, sizeof(nr_cpus_avail_str), "%d",
467		 nr_cpus_avail);
468
469	if (fetch_kernel_version(&kernel_version, NULL, 0))
470		kernel_version = 0;
471
472	snprintf(linux_version_code_str, sizeof(linux_version_code_str),
473		 "0x%x", kernel_version);
474
 
475	force_set_env("NR_CPUS", nr_cpus_avail_str);
476	force_set_env("LINUX_VERSION_CODE", linux_version_code_str);
477	force_set_env("CLANG_EXEC", clang_path);
478	force_set_env("CLANG_OPTIONS", clang_opt);
479	force_set_env("KERNEL_INC_OPTIONS", kbuild_include_opts);
 
480	force_set_env("WORKING_DIR", kbuild_dir ? : ".");
481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
482	/*
483	 * Since we may reset clang's working dir, path of source file
484	 * should be transferred into absolute path, except we want
485	 * stdin to be source file (testing).
486	 */
487	force_set_env("CLANG_SOURCE",
488		      (path[0] == '-') ? path : abspath);
489
490	pr_debug("llvm compiling command template: %s\n", template);
491
492	if (asprintf(&command_echo, "echo -n \"%s\"", template) < 0)
493		goto errout;
494
495	err = read_from_pipe(command_echo, (void **) &command_out, NULL);
496	if (err)
497		goto errout;
498
499	pr_debug("llvm compiling command : %s\n", command_out);
500
501	err = read_from_pipe(template, &obj_buf, &obj_buf_sz);
502	if (err) {
503		pr_err("ERROR:\tunable to compile %s\n", path);
504		pr_err("Hint:\tCheck error message shown above.\n");
505		pr_err("Hint:\tYou can also pre-compile it into .o using:\n");
506		pr_err("     \t\tclang -target bpf -O2 -c %s\n", path);
507		pr_err("     \twith proper -I and -D options.\n");
508		goto errout;
509	}
510
511	free(command_echo);
512	free(command_out);
513	free(kbuild_dir);
514	free(kbuild_include_opts);
 
 
515
516	if (!p_obj_buf)
517		free(obj_buf);
518	else
519		*p_obj_buf = obj_buf;
520
521	if (p_obj_buf_sz)
522		*p_obj_buf_sz = obj_buf_sz;
523	return 0;
524errout:
525	free(command_echo);
526	free(kbuild_dir);
527	free(kbuild_include_opts);
528	free(obj_buf);
 
 
 
529	if (p_obj_buf)
530		*p_obj_buf = NULL;
531	if (p_obj_buf_sz)
532		*p_obj_buf_sz = 0;
533	return err;
534}
535
536int llvm__search_clang(void)
537{
538	char clang_path[PATH_MAX];
539
540	return search_program(llvm_param.clang_path, "clang", clang_path);
541}