Linux Audio

Check our new training course

Linux kernel drivers training

May 6-19, 2025
Register
Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2#include <limits.h>
  3#include <stdio.h>
  4#include <stdlib.h>
  5#include <string.h>
  6#include <unistd.h>
  7#include "common.h"
  8#include "../util/env.h"
  9#include "../util/debug.h"
 10#include <linux/zalloc.h>
 11
 12const char *const arc_triplets[] = {
 13	"arc-linux-",
 14	"arc-snps-linux-uclibc-",
 15	"arc-snps-linux-gnu-",
 16	NULL
 17};
 18
 19const char *const arm_triplets[] = {
 20	"arm-eabi-",
 21	"arm-linux-androideabi-",
 22	"arm-unknown-linux-",
 23	"arm-unknown-linux-gnu-",
 24	"arm-unknown-linux-gnueabi-",
 25	"arm-linux-gnu-",
 26	"arm-linux-gnueabihf-",
 27	"arm-none-eabi-",
 28	NULL
 29};
 30
 31const char *const arm64_triplets[] = {
 32	"aarch64-linux-android-",
 33	"aarch64-linux-gnu-",
 34	NULL
 35};
 36
 37const char *const powerpc_triplets[] = {
 38	"powerpc-unknown-linux-gnu-",
 39	"powerpc-linux-gnu-",
 40	"powerpc64-unknown-linux-gnu-",
 41	"powerpc64-linux-gnu-",
 42	"powerpc64le-linux-gnu-",
 43	NULL
 44};
 45
 46const char *const s390_triplets[] = {
 47	"s390-ibm-linux-",
 48	"s390x-linux-gnu-",
 49	NULL
 50};
 51
 52const char *const sh_triplets[] = {
 53	"sh-unknown-linux-gnu-",
 54	"sh64-unknown-linux-gnu-",
 55	"sh-linux-gnu-",
 56	"sh64-linux-gnu-",
 57	NULL
 58};
 59
 60const char *const sparc_triplets[] = {
 61	"sparc-unknown-linux-gnu-",
 62	"sparc64-unknown-linux-gnu-",
 63	"sparc64-linux-gnu-",
 64	NULL
 65};
 66
 67const char *const x86_triplets[] = {
 68	"x86_64-pc-linux-gnu-",
 69	"x86_64-unknown-linux-gnu-",
 70	"i686-pc-linux-gnu-",
 71	"i586-pc-linux-gnu-",
 72	"i486-pc-linux-gnu-",
 73	"i386-pc-linux-gnu-",
 74	"i686-linux-android-",
 75	"i686-android-linux-",
 76	"x86_64-linux-gnu-",
 77	"i586-linux-gnu-",
 78	NULL
 79};
 80
 81const char *const mips_triplets[] = {
 82	"mips-unknown-linux-gnu-",
 83	"mipsel-linux-android-",
 84	"mips-linux-gnu-",
 85	"mips64-linux-gnu-",
 86	"mips64el-linux-gnuabi64-",
 87	"mips64-linux-gnuabi64-",
 88	"mipsel-linux-gnu-",
 89	NULL
 90};
 91
 92static bool lookup_path(char *name)
 93{
 94	bool found = false;
 95	char *path, *tmp = NULL;
 96	char buf[PATH_MAX];
 97	char *env = getenv("PATH");
 98
 99	if (!env)
100		return false;
101
102	env = strdup(env);
103	if (!env)
104		return false;
105
106	path = strtok_r(env, ":", &tmp);
107	while (path) {
108		scnprintf(buf, sizeof(buf), "%s/%s", path, name);
109		if (access(buf, F_OK) == 0) {
110			found = true;
111			break;
112		}
113		path = strtok_r(NULL, ":", &tmp);
114	}
115	free(env);
116	return found;
117}
118
119static int lookup_triplets(const char *const *triplets, const char *name)
120{
121	int i;
122	char buf[PATH_MAX];
123
124	for (i = 0; triplets[i] != NULL; i++) {
125		scnprintf(buf, sizeof(buf), "%s%s", triplets[i], name);
126		if (lookup_path(buf))
127			return i;
128	}
129	return -1;
130}
131
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132static int perf_env__lookup_binutils_path(struct perf_env *env,
133					  const char *name, const char **path)
134{
135	int idx;
136	const char *arch = perf_env__arch(env), *cross_env;
 
137	const char *const *path_list;
138	char *buf = NULL;
139
 
 
 
 
 
140	/*
141	 * We don't need to try to find objdump path for native system.
142	 * Just use default binutils path (e.g.: "objdump").
143	 */
144	if (!strcmp(perf_env__arch(NULL), arch))
145		goto out;
146
147	cross_env = getenv("CROSS_COMPILE");
148	if (cross_env) {
149		if (asprintf(&buf, "%s%s", cross_env, name) < 0)
150			goto out_error;
151		if (buf[0] == '/') {
152			if (access(buf, F_OK) == 0)
153				goto out;
154			goto out_error;
155		}
156		if (lookup_path(buf))
157			goto out;
158		zfree(&buf);
159	}
160
161	if (!strcmp(arch, "arc"))
162		path_list = arc_triplets;
163	else if (!strcmp(arch, "arm"))
164		path_list = arm_triplets;
165	else if (!strcmp(arch, "arm64"))
166		path_list = arm64_triplets;
167	else if (!strcmp(arch, "powerpc"))
168		path_list = powerpc_triplets;
169	else if (!strcmp(arch, "sh"))
170		path_list = sh_triplets;
171	else if (!strcmp(arch, "s390"))
172		path_list = s390_triplets;
173	else if (!strcmp(arch, "sparc"))
174		path_list = sparc_triplets;
175	else if (!strcmp(arch, "x86"))
176		path_list = x86_triplets;
177	else if (!strcmp(arch, "mips"))
178		path_list = mips_triplets;
179	else {
180		ui__error("binutils for %s not supported.\n", arch);
181		goto out_error;
182	}
183
184	idx = lookup_triplets(path_list, name);
185	if (idx < 0) {
186		ui__error("Please install %s for %s.\n"
187			  "You can add it to PATH, set CROSS_COMPILE or "
188			  "override the default using --%s.\n",
189			  name, arch, name);
190		goto out_error;
191	}
192
193	if (asprintf(&buf, "%s%s", path_list[idx], name) < 0)
194		goto out_error;
195
196out:
197	*path = buf;
198	return 0;
199out_error:
200	free(buf);
201	*path = NULL;
202	return -1;
203}
204
205int perf_env__lookup_objdump(struct perf_env *env, const char **path)
206{
207	/*
208	 * For live mode, env->arch will be NULL and we can use
209	 * the native objdump tool.
210	 */
211	if (env->arch == NULL)
212		return 0;
213
214	return perf_env__lookup_binutils_path(env, "objdump", path);
215}
216
217/*
218 * Some architectures have a single address space for kernel and user addresses,
219 * which makes it possible to determine if an address is in kernel space or user
220 * space.
221 */
222bool perf_env__single_address_space(struct perf_env *env)
223{
224	return strcmp(perf_env__arch(env), "sparc");
225}
v4.10.11
 
 
  1#include <stdio.h>
  2#include <sys/utsname.h>
 
 
  3#include "common.h"
  4#include "../util/util.h"
  5#include "../util/debug.h"
 
 
 
 
 
 
 
 
  6
  7const char *const arm_triplets[] = {
  8	"arm-eabi-",
  9	"arm-linux-androideabi-",
 10	"arm-unknown-linux-",
 11	"arm-unknown-linux-gnu-",
 12	"arm-unknown-linux-gnueabi-",
 13	"arm-linux-gnu-",
 14	"arm-linux-gnueabihf-",
 15	"arm-none-eabi-",
 16	NULL
 17};
 18
 19const char *const arm64_triplets[] = {
 20	"aarch64-linux-android-",
 21	"aarch64-linux-gnu-",
 22	NULL
 23};
 24
 25const char *const powerpc_triplets[] = {
 26	"powerpc-unknown-linux-gnu-",
 
 27	"powerpc64-unknown-linux-gnu-",
 28	"powerpc64-linux-gnu-",
 29	"powerpc64le-linux-gnu-",
 30	NULL
 31};
 32
 33const char *const s390_triplets[] = {
 34	"s390-ibm-linux-",
 35	"s390x-linux-gnu-",
 36	NULL
 37};
 38
 39const char *const sh_triplets[] = {
 40	"sh-unknown-linux-gnu-",
 41	"sh64-unknown-linux-gnu-",
 42	"sh-linux-gnu-",
 43	"sh64-linux-gnu-",
 44	NULL
 45};
 46
 47const char *const sparc_triplets[] = {
 48	"sparc-unknown-linux-gnu-",
 49	"sparc64-unknown-linux-gnu-",
 50	"sparc64-linux-gnu-",
 51	NULL
 52};
 53
 54const char *const x86_triplets[] = {
 55	"x86_64-pc-linux-gnu-",
 56	"x86_64-unknown-linux-gnu-",
 57	"i686-pc-linux-gnu-",
 58	"i586-pc-linux-gnu-",
 59	"i486-pc-linux-gnu-",
 60	"i386-pc-linux-gnu-",
 61	"i686-linux-android-",
 62	"i686-android-linux-",
 63	"x86_64-linux-gnu-",
 64	"i586-linux-gnu-",
 65	NULL
 66};
 67
 68const char *const mips_triplets[] = {
 69	"mips-unknown-linux-gnu-",
 70	"mipsel-linux-android-",
 71	"mips-linux-gnu-",
 72	"mips64-linux-gnu-",
 73	"mips64el-linux-gnuabi64-",
 74	"mips64-linux-gnuabi64-",
 75	"mipsel-linux-gnu-",
 76	NULL
 77};
 78
 79static bool lookup_path(char *name)
 80{
 81	bool found = false;
 82	char *path, *tmp = NULL;
 83	char buf[PATH_MAX];
 84	char *env = getenv("PATH");
 85
 86	if (!env)
 87		return false;
 88
 89	env = strdup(env);
 90	if (!env)
 91		return false;
 92
 93	path = strtok_r(env, ":", &tmp);
 94	while (path) {
 95		scnprintf(buf, sizeof(buf), "%s/%s", path, name);
 96		if (access(buf, F_OK) == 0) {
 97			found = true;
 98			break;
 99		}
100		path = strtok_r(NULL, ":", &tmp);
101	}
102	free(env);
103	return found;
104}
105
106static int lookup_triplets(const char *const *triplets, const char *name)
107{
108	int i;
109	char buf[PATH_MAX];
110
111	for (i = 0; triplets[i] != NULL; i++) {
112		scnprintf(buf, sizeof(buf), "%s%s", triplets[i], name);
113		if (lookup_path(buf))
114			return i;
115	}
116	return -1;
117}
118
119/*
120 * Return architecture name in a normalized form.
121 * The conversion logic comes from the Makefile.
122 */
123const char *normalize_arch(char *arch)
124{
125	if (!strcmp(arch, "x86_64"))
126		return "x86";
127	if (arch[0] == 'i' && arch[2] == '8' && arch[3] == '6')
128		return "x86";
129	if (!strcmp(arch, "sun4u") || !strncmp(arch, "sparc", 5))
130		return "sparc";
131	if (!strcmp(arch, "aarch64") || !strcmp(arch, "arm64"))
132		return "arm64";
133	if (!strncmp(arch, "arm", 3) || !strcmp(arch, "sa110"))
134		return "arm";
135	if (!strncmp(arch, "s390", 4))
136		return "s390";
137	if (!strncmp(arch, "parisc", 6))
138		return "parisc";
139	if (!strncmp(arch, "powerpc", 7) || !strncmp(arch, "ppc", 3))
140		return "powerpc";
141	if (!strncmp(arch, "mips", 4))
142		return "mips";
143	if (!strncmp(arch, "sh", 2) && isdigit(arch[2]))
144		return "sh";
145
146	return arch;
147}
148
149static int perf_env__lookup_binutils_path(struct perf_env *env,
150					  const char *name, const char **path)
151{
152	int idx;
153	const char *arch, *cross_env;
154	struct utsname uts;
155	const char *const *path_list;
156	char *buf = NULL;
157
158	arch = normalize_arch(env->arch);
159
160	if (uname(&uts) < 0)
161		goto out;
162
163	/*
164	 * We don't need to try to find objdump path for native system.
165	 * Just use default binutils path (e.g.: "objdump").
166	 */
167	if (!strcmp(normalize_arch(uts.machine), arch))
168		goto out;
169
170	cross_env = getenv("CROSS_COMPILE");
171	if (cross_env) {
172		if (asprintf(&buf, "%s%s", cross_env, name) < 0)
173			goto out_error;
174		if (buf[0] == '/') {
175			if (access(buf, F_OK) == 0)
176				goto out;
177			goto out_error;
178		}
179		if (lookup_path(buf))
180			goto out;
181		zfree(&buf);
182	}
183
184	if (!strcmp(arch, "arm"))
 
 
185		path_list = arm_triplets;
186	else if (!strcmp(arch, "arm64"))
187		path_list = arm64_triplets;
188	else if (!strcmp(arch, "powerpc"))
189		path_list = powerpc_triplets;
190	else if (!strcmp(arch, "sh"))
191		path_list = sh_triplets;
192	else if (!strcmp(arch, "s390"))
193		path_list = s390_triplets;
194	else if (!strcmp(arch, "sparc"))
195		path_list = sparc_triplets;
196	else if (!strcmp(arch, "x86"))
197		path_list = x86_triplets;
198	else if (!strcmp(arch, "mips"))
199		path_list = mips_triplets;
200	else {
201		ui__error("binutils for %s not supported.\n", arch);
202		goto out_error;
203	}
204
205	idx = lookup_triplets(path_list, name);
206	if (idx < 0) {
207		ui__error("Please install %s for %s.\n"
208			  "You can add it to PATH, set CROSS_COMPILE or "
209			  "override the default using --%s.\n",
210			  name, arch, name);
211		goto out_error;
212	}
213
214	if (asprintf(&buf, "%s%s", path_list[idx], name) < 0)
215		goto out_error;
216
217out:
218	*path = buf;
219	return 0;
220out_error:
221	free(buf);
222	*path = NULL;
223	return -1;
224}
225
226int perf_env__lookup_objdump(struct perf_env *env)
227{
228	/*
229	 * For live mode, env->arch will be NULL and we can use
230	 * the native objdump tool.
231	 */
232	if (env->arch == NULL)
233		return 0;
234
235	return perf_env__lookup_binutils_path(env, "objdump", &objdump_path);
 
 
 
 
 
 
 
 
 
 
236}