Linux Audio

Check our new training course

Loading...
v4.17
   1// SPDX-License-Identifier: GPL-2.0
   2#include <asm/bug.h>
   3#include <linux/kernel.h>
 
 
   4#include <sys/time.h>
   5#include <sys/resource.h>
   6#include <sys/types.h>
   7#include <sys/stat.h>
   8#include <unistd.h>
   9#include <errno.h>
  10#include <fcntl.h>
 
 
 
 
 
 
  11#include "compress.h"
 
 
  12#include "path.h"
 
  13#include "symbol.h"
  14#include "srcline.h"
  15#include "dso.h"
 
  16#include "machine.h"
  17#include "auxtrace.h"
  18#include "util.h"
  19#include "debug.h"
  20#include "string2.h"
  21#include "vdso.h"
 
  22
  23static const char * const debuglink_paths[] = {
  24	"%.0s%s",
  25	"%s/%s",
  26	"%s/.debug/%s",
  27	"/usr/lib/debug%s/%s"
  28};
  29
  30char dso__symtab_origin(const struct dso *dso)
  31{
  32	static const char origin[] = {
  33		[DSO_BINARY_TYPE__KALLSYMS]			= 'k',
  34		[DSO_BINARY_TYPE__VMLINUX]			= 'v',
  35		[DSO_BINARY_TYPE__JAVA_JIT]			= 'j',
  36		[DSO_BINARY_TYPE__DEBUGLINK]			= 'l',
  37		[DSO_BINARY_TYPE__BUILD_ID_CACHE]		= 'B',
  38		[DSO_BINARY_TYPE__BUILD_ID_CACHE_DEBUGINFO]	= 'D',
  39		[DSO_BINARY_TYPE__FEDORA_DEBUGINFO]		= 'f',
  40		[DSO_BINARY_TYPE__UBUNTU_DEBUGINFO]		= 'u',
 
  41		[DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO]	= 'o',
  42		[DSO_BINARY_TYPE__BUILDID_DEBUGINFO]		= 'b',
  43		[DSO_BINARY_TYPE__SYSTEM_PATH_DSO]		= 'd',
  44		[DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE]		= 'K',
  45		[DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP]	= 'm',
  46		[DSO_BINARY_TYPE__GUEST_KALLSYMS]		= 'g',
  47		[DSO_BINARY_TYPE__GUEST_KMODULE]		= 'G',
  48		[DSO_BINARY_TYPE__GUEST_KMODULE_COMP]		= 'M',
  49		[DSO_BINARY_TYPE__GUEST_VMLINUX]		= 'V',
  50	};
  51
  52	if (dso == NULL || dso->symtab_type == DSO_BINARY_TYPE__NOT_FOUND)
  53		return '!';
  54	return origin[dso->symtab_type];
  55}
  56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  57int dso__read_binary_type_filename(const struct dso *dso,
  58				   enum dso_binary_type type,
  59				   char *root_dir, char *filename, size_t size)
  60{
  61	char build_id_hex[SBUILD_ID_SIZE];
  62	int ret = 0;
  63	size_t len;
  64
  65	switch (type) {
  66	case DSO_BINARY_TYPE__DEBUGLINK:
  67	{
  68		const char *last_slash;
  69		char dso_dir[PATH_MAX];
  70		char symfile[PATH_MAX];
  71		unsigned int i;
  72
  73		len = __symbol__join_symfs(filename, size, dso->long_name);
  74		last_slash = filename + len;
  75		while (last_slash != filename && *last_slash != '/')
  76			last_slash--;
  77
  78		strncpy(dso_dir, filename, last_slash - filename);
  79		dso_dir[last_slash-filename] = '\0';
  80
  81		if (!is_regular_file(filename)) {
  82			ret = -1;
  83			break;
  84		}
  85
  86		ret = filename__read_debuglink(filename, symfile, PATH_MAX);
  87		if (ret)
  88			break;
  89
  90		/* Check predefined locations where debug file might reside */
  91		ret = -1;
  92		for (i = 0; i < ARRAY_SIZE(debuglink_paths); i++) {
  93			snprintf(filename, size,
  94					debuglink_paths[i], dso_dir, symfile);
  95			if (is_regular_file(filename)) {
  96				ret = 0;
  97				break;
  98			}
  99		}
 100
 101		break;
 102	}
 103	case DSO_BINARY_TYPE__BUILD_ID_CACHE:
 104		if (dso__build_id_filename(dso, filename, size, false) == NULL)
 105			ret = -1;
 106		break;
 107
 108	case DSO_BINARY_TYPE__BUILD_ID_CACHE_DEBUGINFO:
 109		if (dso__build_id_filename(dso, filename, size, true) == NULL)
 110			ret = -1;
 111		break;
 112
 113	case DSO_BINARY_TYPE__FEDORA_DEBUGINFO:
 114		len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
 115		snprintf(filename + len, size - len, "%s.debug", dso->long_name);
 116		break;
 117
 118	case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO:
 119		len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
 120		snprintf(filename + len, size - len, "%s", dso->long_name);
 121		break;
 122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 123	case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO:
 124	{
 125		const char *last_slash;
 126		size_t dir_size;
 127
 128		last_slash = dso->long_name + dso->long_name_len;
 129		while (last_slash != dso->long_name && *last_slash != '/')
 130			last_slash--;
 131
 132		len = __symbol__join_symfs(filename, size, "");
 133		dir_size = last_slash - dso->long_name + 2;
 134		if (dir_size > (size - len)) {
 135			ret = -1;
 136			break;
 137		}
 138		len += scnprintf(filename + len, dir_size, "%s",  dso->long_name);
 139		len += scnprintf(filename + len , size - len, ".debug%s",
 140								last_slash);
 141		break;
 142	}
 143
 144	case DSO_BINARY_TYPE__BUILDID_DEBUGINFO:
 145		if (!dso->has_build_id) {
 146			ret = -1;
 147			break;
 148		}
 149
 150		build_id__sprintf(dso->build_id,
 151				  sizeof(dso->build_id),
 152				  build_id_hex);
 153		len = __symbol__join_symfs(filename, size, "/usr/lib/debug/.build-id/");
 154		snprintf(filename + len, size - len, "%.2s/%s.debug",
 155			 build_id_hex, build_id_hex + 2);
 156		break;
 157
 158	case DSO_BINARY_TYPE__VMLINUX:
 159	case DSO_BINARY_TYPE__GUEST_VMLINUX:
 160	case DSO_BINARY_TYPE__SYSTEM_PATH_DSO:
 161		__symbol__join_symfs(filename, size, dso->long_name);
 162		break;
 163
 164	case DSO_BINARY_TYPE__GUEST_KMODULE:
 165	case DSO_BINARY_TYPE__GUEST_KMODULE_COMP:
 166		path__join3(filename, size, symbol_conf.symfs,
 167			    root_dir, dso->long_name);
 168		break;
 169
 170	case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE:
 171	case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP:
 172		__symbol__join_symfs(filename, size, dso->long_name);
 173		break;
 174
 175	case DSO_BINARY_TYPE__KCORE:
 176	case DSO_BINARY_TYPE__GUEST_KCORE:
 177		snprintf(filename, size, "%s", dso->long_name);
 178		break;
 179
 180	default:
 181	case DSO_BINARY_TYPE__KALLSYMS:
 182	case DSO_BINARY_TYPE__GUEST_KALLSYMS:
 183	case DSO_BINARY_TYPE__JAVA_JIT:
 
 
 
 184	case DSO_BINARY_TYPE__NOT_FOUND:
 185		ret = -1;
 186		break;
 187	}
 188
 189	return ret;
 190}
 191
 
 
 
 
 192static const struct {
 193	const char *fmt;
 194	int (*decompress)(const char *input, int output);
 
 195} compressions[] = {
 
 196#ifdef HAVE_ZLIB_SUPPORT
 197	{ "gz", gzip_decompress_to_file },
 198#endif
 199#ifdef HAVE_LZMA_SUPPORT
 200	{ "xz", lzma_decompress_to_file },
 201#endif
 202	{ NULL, NULL },
 203};
 204
 205bool is_supported_compression(const char *ext)
 206{
 207	unsigned i;
 208
 209	for (i = 0; compressions[i].fmt; i++) {
 210		if (!strcmp(ext, compressions[i].fmt))
 211			return true;
 212	}
 213	return false;
 214}
 215
 216bool is_kernel_module(const char *pathname, int cpumode)
 217{
 218	struct kmod_path m;
 219	int mode = cpumode & PERF_RECORD_MISC_CPUMODE_MASK;
 220
 221	WARN_ONCE(mode != cpumode,
 222		  "Internal error: passing unmasked cpumode (%x) to is_kernel_module",
 223		  cpumode);
 224
 225	switch (mode) {
 226	case PERF_RECORD_MISC_USER:
 227	case PERF_RECORD_MISC_HYPERVISOR:
 228	case PERF_RECORD_MISC_GUEST_USER:
 229		return false;
 230	/* Treat PERF_RECORD_MISC_CPUMODE_UNKNOWN as kernel */
 231	default:
 232		if (kmod_path__parse(&m, pathname)) {
 233			pr_err("Failed to check whether %s is a kernel module or not. Assume it is.",
 234					pathname);
 235			return true;
 236		}
 237	}
 238
 239	return m.kmod;
 240}
 241
 242bool decompress_to_file(const char *ext, const char *filename, int output_fd)
 243{
 244	unsigned i;
 245
 246	for (i = 0; compressions[i].fmt; i++) {
 247		if (!strcmp(ext, compressions[i].fmt))
 248			return !compressions[i].decompress(filename,
 249							   output_fd);
 250	}
 251	return false;
 252}
 253
 254bool dso__needs_decompress(struct dso *dso)
 255{
 256	return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP ||
 257		dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE_COMP;
 258}
 259
 260static int decompress_kmodule(struct dso *dso, const char *name, char *tmpbuf)
 
 261{
 
 262	int fd = -1;
 263	struct kmod_path m;
 264
 265	if (!dso__needs_decompress(dso))
 266		return -1;
 267
 268	if (kmod_path__parse_ext(&m, dso->long_name))
 269		return -1;
 270
 271	if (!m.comp)
 272		goto out;
 
 
 
 
 
 
 
 
 
 
 273
 274	fd = mkstemp(tmpbuf);
 275	if (fd < 0) {
 276		dso->load_errno = errno;
 277		goto out;
 278	}
 279
 280	if (!decompress_to_file(m.ext, name, fd)) {
 281		dso->load_errno = DSO_LOAD_ERRNO__DECOMPRESSION_FAILURE;
 282		close(fd);
 283		fd = -1;
 284	}
 285
 286out:
 287	free(m.ext);
 
 
 
 
 288	return fd;
 289}
 290
 291int dso__decompress_kmodule_fd(struct dso *dso, const char *name)
 
 292{
 293	char tmpbuf[] = KMOD_DECOMP_NAME;
 294	int fd;
 295
 296	fd = decompress_kmodule(dso, name, tmpbuf);
 297	unlink(tmpbuf);
 298	return fd;
 
 
 
 
 
 
 
 299}
 300
 301int dso__decompress_kmodule_path(struct dso *dso, const char *name,
 302				 char *pathname, size_t len)
 303{
 304	char tmpbuf[] = KMOD_DECOMP_NAME;
 305	int fd;
 306
 307	fd = decompress_kmodule(dso, name, tmpbuf);
 308	if (fd < 0) {
 309		unlink(tmpbuf);
 310		return -1;
 311	}
 312
 313	strncpy(pathname, tmpbuf, len);
 314	close(fd);
 315	return 0;
 316}
 317
 318/*
 319 * Parses kernel module specified in @path and updates
 320 * @m argument like:
 321 *
 322 *    @comp - true if @path contains supported compression suffix,
 323 *            false otherwise
 324 *    @kmod - true if @path contains '.ko' suffix in right position,
 325 *            false otherwise
 326 *    @name - if (@alloc_name && @kmod) is true, it contains strdup-ed base name
 327 *            of the kernel module without suffixes, otherwise strudup-ed
 328 *            base name of @path
 329 *    @ext  - if (@alloc_ext && @comp) is true, it contains strdup-ed string
 330 *            the compression suffix
 331 *
 332 * Returns 0 if there's no strdup error, -ENOMEM otherwise.
 333 */
 334int __kmod_path__parse(struct kmod_path *m, const char *path,
 335		       bool alloc_name, bool alloc_ext)
 336{
 337	const char *name = strrchr(path, '/');
 338	const char *ext  = strrchr(path, '.');
 339	bool is_simple_name = false;
 340
 341	memset(m, 0x0, sizeof(*m));
 342	name = name ? name + 1 : path;
 343
 344	/*
 345	 * '.' is also a valid character for module name. For example:
 346	 * [aaa.bbb] is a valid module name. '[' should have higher
 347	 * priority than '.ko' suffix.
 348	 *
 349	 * The kernel names are from machine__mmap_name. Such
 350	 * name should belong to kernel itself, not kernel module.
 351	 */
 352	if (name[0] == '[') {
 353		is_simple_name = true;
 354		if ((strncmp(name, "[kernel.kallsyms]", 17) == 0) ||
 355		    (strncmp(name, "[guest.kernel.kallsyms", 22) == 0) ||
 356		    (strncmp(name, "[vdso]", 6) == 0) ||
 
 
 357		    (strncmp(name, "[vsyscall]", 10) == 0)) {
 358			m->kmod = false;
 359
 360		} else
 361			m->kmod = true;
 362	}
 363
 364	/* No extension, just return name. */
 365	if ((ext == NULL) || is_simple_name) {
 366		if (alloc_name) {
 367			m->name = strdup(name);
 368			return m->name ? 0 : -ENOMEM;
 369		}
 370		return 0;
 371	}
 372
 373	if (is_supported_compression(ext + 1)) {
 374		m->comp = true;
 375		ext -= 3;
 376	}
 377
 378	/* Check .ko extension only if there's enough name left. */
 379	if (ext > name)
 380		m->kmod = !strncmp(ext, ".ko", 3);
 381
 382	if (alloc_name) {
 383		if (m->kmod) {
 384			if (asprintf(&m->name, "[%.*s]", (int) (ext - name), name) == -1)
 385				return -ENOMEM;
 386		} else {
 387			if (asprintf(&m->name, "%s", name) == -1)
 388				return -ENOMEM;
 389		}
 390
 391		strxfrchar(m->name, '-', '_');
 392	}
 393
 394	if (alloc_ext && m->comp) {
 395		m->ext = strdup(ext + 4);
 396		if (!m->ext) {
 397			free((void *) m->name);
 398			return -ENOMEM;
 399		}
 400	}
 401
 402	return 0;
 403}
 404
 405void dso__set_module_info(struct dso *dso, struct kmod_path *m,
 406			  struct machine *machine)
 407{
 408	if (machine__is_host(machine))
 409		dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
 410	else
 411		dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
 412
 413	/* _KMODULE_COMP should be next to _KMODULE */
 414	if (m->kmod && m->comp)
 415		dso->symtab_type++;
 
 
 416
 
 417	dso__set_short_name(dso, strdup(m->name), true);
 418}
 419
 420/*
 421 * Global list of open DSOs and the counter.
 422 */
 423static LIST_HEAD(dso__data_open);
 424static long dso__data_open_cnt;
 425static pthread_mutex_t dso__data_open_lock = PTHREAD_MUTEX_INITIALIZER;
 426
 427static void dso__list_add(struct dso *dso)
 428{
 429	list_add_tail(&dso->data.open_entry, &dso__data_open);
 430	dso__data_open_cnt++;
 431}
 432
 433static void dso__list_del(struct dso *dso)
 434{
 435	list_del(&dso->data.open_entry);
 436	WARN_ONCE(dso__data_open_cnt <= 0,
 437		  "DSO data fd counter out of bounds.");
 438	dso__data_open_cnt--;
 439}
 440
 441static void close_first_dso(void);
 442
 443static int do_open(char *name)
 444{
 445	int fd;
 446	char sbuf[STRERR_BUFSIZE];
 447
 448	do {
 449		fd = open(name, O_RDONLY|O_CLOEXEC);
 450		if (fd >= 0)
 451			return fd;
 452
 453		pr_debug("dso open failed: %s\n",
 454			 str_error_r(errno, sbuf, sizeof(sbuf)));
 455		if (!dso__data_open_cnt || errno != EMFILE)
 456			break;
 457
 458		close_first_dso();
 459	} while (1);
 460
 461	return -1;
 462}
 463
 
 
 
 
 
 464static int __open_dso(struct dso *dso, struct machine *machine)
 465{
 466	int fd = -EINVAL;
 467	char *root_dir = (char *)"";
 468	char *name = malloc(PATH_MAX);
 
 469
 470	if (!name)
 471		return -ENOMEM;
 472
 
 473	if (machine)
 474		root_dir = machine->root_dir;
 475
 476	if (dso__read_binary_type_filename(dso, dso->binary_type,
 477					    root_dir, name, PATH_MAX))
 478		goto out;
 479
 480	if (!is_regular_file(name))
 481		goto out;
 
 
 
 
 
 
 
 
 
 
 
 482
 483	if (dso__needs_decompress(dso)) {
 484		char newpath[KMOD_DECOMP_LEN];
 485		size_t len = sizeof(newpath);
 486
 487		if (dso__decompress_kmodule_path(dso, name, newpath, len) < 0) {
 488			fd = -dso->load_errno;
 489			goto out;
 490		}
 491
 
 492		strcpy(name, newpath);
 493	}
 494
 495	fd = do_open(name);
 496
 497	if (dso__needs_decompress(dso))
 498		unlink(name);
 499
 500out:
 
 501	free(name);
 502	return fd;
 503}
 504
 505static void check_data_close(void);
 506
 507/**
 508 * dso_close - Open DSO data file
 509 * @dso: dso object
 510 *
 511 * Open @dso's data file descriptor and updates
 512 * list/count of open DSO objects.
 513 */
 514static int open_dso(struct dso *dso, struct machine *machine)
 515{
 516	int fd;
 517	struct nscookie nsc;
 518
 519	if (dso->binary_type != DSO_BINARY_TYPE__BUILD_ID_CACHE)
 
 520		nsinfo__mountns_enter(dso->nsinfo, &nsc);
 
 
 521	fd = __open_dso(dso, machine);
 522	if (dso->binary_type != DSO_BINARY_TYPE__BUILD_ID_CACHE)
 523		nsinfo__mountns_exit(&nsc);
 524
 525	if (fd >= 0) {
 526		dso__list_add(dso);
 527		/*
 528		 * Check if we crossed the allowed number
 529		 * of opened DSOs and close one if needed.
 530		 */
 531		check_data_close();
 532	}
 533
 534	return fd;
 535}
 536
 537static void close_data_fd(struct dso *dso)
 538{
 539	if (dso->data.fd >= 0) {
 540		close(dso->data.fd);
 541		dso->data.fd = -1;
 542		dso->data.file_size = 0;
 543		dso__list_del(dso);
 544	}
 545}
 546
 547/**
 548 * dso_close - Close DSO data file
 549 * @dso: dso object
 550 *
 551 * Close @dso's data file descriptor and updates
 552 * list/count of open DSO objects.
 553 */
 554static void close_dso(struct dso *dso)
 555{
 556	close_data_fd(dso);
 557}
 558
 559static void close_first_dso(void)
 560{
 561	struct dso *dso;
 562
 563	dso = list_first_entry(&dso__data_open, struct dso, data.open_entry);
 564	close_dso(dso);
 565}
 566
 567static rlim_t get_fd_limit(void)
 568{
 569	struct rlimit l;
 570	rlim_t limit = 0;
 571
 572	/* Allow half of the current open fd limit. */
 573	if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
 574		if (l.rlim_cur == RLIM_INFINITY)
 575			limit = l.rlim_cur;
 576		else
 577			limit = l.rlim_cur / 2;
 578	} else {
 579		pr_err("failed to get fd limit\n");
 580		limit = 1;
 581	}
 582
 583	return limit;
 584}
 585
 586static rlim_t fd_limit;
 587
 588/*
 589 * Used only by tests/dso-data.c to reset the environment
 590 * for tests. I dont expect we should change this during
 591 * standard runtime.
 592 */
 593void reset_fd_limit(void)
 594{
 595	fd_limit = 0;
 596}
 597
 598static bool may_cache_fd(void)
 599{
 600	if (!fd_limit)
 601		fd_limit = get_fd_limit();
 602
 603	if (fd_limit == RLIM_INFINITY)
 604		return true;
 605
 606	return fd_limit > (rlim_t) dso__data_open_cnt;
 607}
 608
 609/*
 610 * Check and close LRU dso if we crossed allowed limit
 611 * for opened dso file descriptors. The limit is half
 612 * of the RLIMIT_NOFILE files opened.
 613*/
 614static void check_data_close(void)
 615{
 616	bool cache_fd = may_cache_fd();
 617
 618	if (!cache_fd)
 619		close_first_dso();
 620}
 621
 622/**
 623 * dso__data_close - Close DSO data file
 624 * @dso: dso object
 625 *
 626 * External interface to close @dso's data file descriptor.
 627 */
 628void dso__data_close(struct dso *dso)
 629{
 630	pthread_mutex_lock(&dso__data_open_lock);
 631	close_dso(dso);
 632	pthread_mutex_unlock(&dso__data_open_lock);
 633}
 634
 635static void try_to_open_dso(struct dso *dso, struct machine *machine)
 636{
 637	enum dso_binary_type binary_type_data[] = {
 638		DSO_BINARY_TYPE__BUILD_ID_CACHE,
 639		DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
 640		DSO_BINARY_TYPE__NOT_FOUND,
 641	};
 642	int i = 0;
 643
 644	if (dso->data.fd >= 0)
 645		return;
 646
 647	if (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND) {
 648		dso->data.fd = open_dso(dso, machine);
 649		goto out;
 650	}
 651
 652	do {
 653		dso->binary_type = binary_type_data[i++];
 654
 655		dso->data.fd = open_dso(dso, machine);
 656		if (dso->data.fd >= 0)
 657			goto out;
 658
 659	} while (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND);
 660out:
 661	if (dso->data.fd >= 0)
 662		dso->data.status = DSO_DATA_STATUS_OK;
 663	else
 664		dso->data.status = DSO_DATA_STATUS_ERROR;
 665}
 666
 667/**
 668 * dso__data_get_fd - Get dso's data file descriptor
 669 * @dso: dso object
 670 * @machine: machine object
 671 *
 672 * External interface to find dso's file, open it and
 673 * returns file descriptor.  It should be paired with
 674 * dso__data_put_fd() if it returns non-negative value.
 675 */
 676int dso__data_get_fd(struct dso *dso, struct machine *machine)
 677{
 678	if (dso->data.status == DSO_DATA_STATUS_ERROR)
 679		return -1;
 680
 681	if (pthread_mutex_lock(&dso__data_open_lock) < 0)
 682		return -1;
 683
 684	try_to_open_dso(dso, machine);
 685
 686	if (dso->data.fd < 0)
 687		pthread_mutex_unlock(&dso__data_open_lock);
 688
 689	return dso->data.fd;
 690}
 691
 692void dso__data_put_fd(struct dso *dso __maybe_unused)
 693{
 694	pthread_mutex_unlock(&dso__data_open_lock);
 695}
 696
 697bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by)
 698{
 699	u32 flag = 1 << by;
 700
 701	if (dso->data.status_seen & flag)
 702		return true;
 703
 704	dso->data.status_seen |= flag;
 705
 706	return false;
 707}
 708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 709static void
 710dso_cache__free(struct dso *dso)
 711{
 712	struct rb_root *root = &dso->data.cache;
 713	struct rb_node *next = rb_first(root);
 714
 715	pthread_mutex_lock(&dso->lock);
 716	while (next) {
 717		struct dso_cache *cache;
 718
 719		cache = rb_entry(next, struct dso_cache, rb_node);
 720		next = rb_next(&cache->rb_node);
 721		rb_erase(&cache->rb_node, root);
 722		free(cache);
 723	}
 724	pthread_mutex_unlock(&dso->lock);
 725}
 726
 727static struct dso_cache *dso_cache__find(struct dso *dso, u64 offset)
 728{
 729	const struct rb_root *root = &dso->data.cache;
 730	struct rb_node * const *p = &root->rb_node;
 731	const struct rb_node *parent = NULL;
 732	struct dso_cache *cache;
 733
 734	while (*p != NULL) {
 735		u64 end;
 736
 737		parent = *p;
 738		cache = rb_entry(parent, struct dso_cache, rb_node);
 739		end = cache->offset + DSO__DATA_CACHE_SIZE;
 740
 741		if (offset < cache->offset)
 742			p = &(*p)->rb_left;
 743		else if (offset >= end)
 744			p = &(*p)->rb_right;
 745		else
 746			return cache;
 747	}
 748
 749	return NULL;
 750}
 751
 752static struct dso_cache *
 753dso_cache__insert(struct dso *dso, struct dso_cache *new)
 754{
 755	struct rb_root *root = &dso->data.cache;
 756	struct rb_node **p = &root->rb_node;
 757	struct rb_node *parent = NULL;
 758	struct dso_cache *cache;
 759	u64 offset = new->offset;
 760
 761	pthread_mutex_lock(&dso->lock);
 762	while (*p != NULL) {
 763		u64 end;
 764
 765		parent = *p;
 766		cache = rb_entry(parent, struct dso_cache, rb_node);
 767		end = cache->offset + DSO__DATA_CACHE_SIZE;
 768
 769		if (offset < cache->offset)
 770			p = &(*p)->rb_left;
 771		else if (offset >= end)
 772			p = &(*p)->rb_right;
 773		else
 774			goto out;
 775	}
 776
 777	rb_link_node(&new->rb_node, parent, p);
 778	rb_insert_color(&new->rb_node, root);
 779
 780	cache = NULL;
 781out:
 782	pthread_mutex_unlock(&dso->lock);
 783	return cache;
 784}
 785
 786static ssize_t
 787dso_cache__memcpy(struct dso_cache *cache, u64 offset,
 788		  u8 *data, u64 size)
 789{
 790	u64 cache_offset = offset - cache->offset;
 791	u64 cache_size   = min(cache->size - cache_offset, size);
 792
 793	memcpy(data, cache->data + cache_offset, cache_size);
 
 
 
 794	return cache_size;
 795}
 796
 797static ssize_t
 798dso_cache__read(struct dso *dso, struct machine *machine,
 799		u64 offset, u8 *data, ssize_t size)
 800{
 801	struct dso_cache *cache;
 802	struct dso_cache *old;
 803	ssize_t ret;
 804
 805	do {
 806		u64 cache_offset;
 807
 808		cache = zalloc(sizeof(*cache) + DSO__DATA_CACHE_SIZE);
 809		if (!cache)
 810			return -ENOMEM;
 811
 812		pthread_mutex_lock(&dso__data_open_lock);
 813
 814		/*
 815		 * dso->data.fd might be closed if other thread opened another
 816		 * file (dso) due to open file limit (RLIMIT_NOFILE).
 817		 */
 818		try_to_open_dso(dso, machine);
 819
 820		if (dso->data.fd < 0) {
 821			ret = -errno;
 822			dso->data.status = DSO_DATA_STATUS_ERROR;
 823			break;
 824		}
 825
 826		cache_offset = offset & DSO__DATA_CACHE_MASK;
 
 
 
 
 827
 828		ret = pread(dso->data.fd, cache->data, DSO__DATA_CACHE_SIZE, cache_offset);
 829		if (ret <= 0)
 830			break;
 
 
 
 
 831
 832		cache->offset = cache_offset;
 833		cache->size   = ret;
 834	} while (0);
 
 
 
 
 
 
 
 
 
 
 
 835
 836	pthread_mutex_unlock(&dso__data_open_lock);
 
 
 
 837
 838	if (ret > 0) {
 839		old = dso_cache__insert(dso, cache);
 840		if (old) {
 841			/* we lose the race */
 842			free(cache);
 843			cache = old;
 844		}
 845
 846		ret = dso_cache__memcpy(cache, offset, data, size);
 
 
 
 
 847	}
 848
 849	if (ret <= 0)
 850		free(cache);
 851
 852	return ret;
 
 
 
 
 
 
 
 853}
 854
 855static ssize_t dso_cache_read(struct dso *dso, struct machine *machine,
 856			      u64 offset, u8 *data, ssize_t size)
 857{
 858	struct dso_cache *cache;
 
 859
 860	cache = dso_cache__find(dso, offset);
 861	if (cache)
 862		return dso_cache__memcpy(cache, offset, data, size);
 863	else
 864		return dso_cache__read(dso, machine, offset, data, size);
 865}
 866
 867/*
 868 * Reads and caches dso data DSO__DATA_CACHE_SIZE size chunks
 869 * in the rb_tree. Any read to already cached data is served
 870 * by cached data.
 871 */
 872static ssize_t cached_read(struct dso *dso, struct machine *machine,
 873			   u64 offset, u8 *data, ssize_t size)
 874{
 875	ssize_t r = 0;
 876	u8 *p = data;
 877
 878	do {
 879		ssize_t ret;
 880
 881		ret = dso_cache_read(dso, machine, offset, p, size);
 882		if (ret < 0)
 883			return ret;
 884
 885		/* Reached EOF, return what we have. */
 886		if (!ret)
 887			break;
 888
 889		BUG_ON(ret > size);
 890
 891		r      += ret;
 892		p      += ret;
 893		offset += ret;
 894		size   -= ret;
 895
 896	} while (size);
 897
 898	return r;
 899}
 900
 901static int data_file_size(struct dso *dso, struct machine *machine)
 902{
 903	int ret = 0;
 904	struct stat st;
 905	char sbuf[STRERR_BUFSIZE];
 906
 907	if (dso->data.file_size)
 908		return 0;
 909
 910	if (dso->data.status == DSO_DATA_STATUS_ERROR)
 911		return -1;
 912
 913	pthread_mutex_lock(&dso__data_open_lock);
 914
 915	/*
 916	 * dso->data.fd might be closed if other thread opened another
 917	 * file (dso) due to open file limit (RLIMIT_NOFILE).
 918	 */
 919	try_to_open_dso(dso, machine);
 920
 921	if (dso->data.fd < 0) {
 922		ret = -errno;
 923		dso->data.status = DSO_DATA_STATUS_ERROR;
 924		goto out;
 925	}
 926
 927	if (fstat(dso->data.fd, &st) < 0) {
 928		ret = -errno;
 929		pr_err("dso cache fstat failed: %s\n",
 930		       str_error_r(errno, sbuf, sizeof(sbuf)));
 931		dso->data.status = DSO_DATA_STATUS_ERROR;
 932		goto out;
 933	}
 934	dso->data.file_size = st.st_size;
 935
 936out:
 937	pthread_mutex_unlock(&dso__data_open_lock);
 938	return ret;
 939}
 940
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 941/**
 942 * dso__data_size - Return dso data size
 943 * @dso: dso object
 944 * @machine: machine object
 945 *
 946 * Return: dso data size
 947 */
 948off_t dso__data_size(struct dso *dso, struct machine *machine)
 949{
 950	if (data_file_size(dso, machine))
 951		return -1;
 952
 953	/* For now just estimate dso data size is close to file size */
 954	return dso->data.file_size;
 955}
 956
 957static ssize_t data_read_offset(struct dso *dso, struct machine *machine,
 958				u64 offset, u8 *data, ssize_t size)
 
 959{
 960	if (data_file_size(dso, machine))
 961		return -1;
 962
 963	/* Check the offset sanity. */
 964	if (offset > dso->data.file_size)
 965		return -1;
 966
 967	if (offset + size < offset)
 968		return -1;
 969
 970	return cached_read(dso, machine, offset, data, size);
 971}
 972
 973/**
 974 * dso__data_read_offset - Read data from dso file offset
 975 * @dso: dso object
 976 * @machine: machine object
 977 * @offset: file offset
 978 * @data: buffer to store data
 979 * @size: size of the @data buffer
 980 *
 981 * External interface to read data from dso file offset. Open
 982 * dso data file and use cached_read to get the data.
 983 */
 984ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
 985			      u64 offset, u8 *data, ssize_t size)
 986{
 987	if (dso->data.status == DSO_DATA_STATUS_ERROR)
 988		return -1;
 989
 990	return data_read_offset(dso, machine, offset, data, size);
 991}
 992
 993/**
 994 * dso__data_read_addr - Read data from dso address
 995 * @dso: dso object
 996 * @machine: machine object
 997 * @add: virtual memory address
 998 * @data: buffer to store data
 999 * @size: size of the @data buffer
1000 *
1001 * External interface to read data from dso address.
1002 */
1003ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
1004			    struct machine *machine, u64 addr,
1005			    u8 *data, ssize_t size)
1006{
1007	u64 offset = map->map_ip(map, addr);
 
1008	return dso__data_read_offset(dso, machine, offset, data, size);
1009}
1010
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1011struct map *dso__new_map(const char *name)
1012{
1013	struct map *map = NULL;
1014	struct dso *dso = dso__new(name);
1015
1016	if (dso)
1017		map = map__new2(0, dso, MAP__FUNCTION);
 
 
1018
1019	return map;
1020}
1021
1022struct dso *machine__findnew_kernel(struct machine *machine, const char *name,
1023				    const char *short_name, int dso_type)
1024{
1025	/*
1026	 * The kernel dso could be created by build_id processing.
1027	 */
1028	struct dso *dso = machine__findnew_dso(machine, name);
1029
1030	/*
1031	 * We need to run this in all cases, since during the build_id
1032	 * processing we had no idea this was the kernel dso.
1033	 */
1034	if (dso != NULL) {
1035		dso__set_short_name(dso, short_name, false);
1036		dso->kernel = dso_type;
1037	}
1038
1039	return dso;
1040}
1041
1042/*
1043 * Find a matching entry and/or link current entry to RB tree.
1044 * Either one of the dso or name parameter must be non-NULL or the
1045 * function will not work.
1046 */
1047static struct dso *__dso__findlink_by_longname(struct rb_root *root,
1048					       struct dso *dso, const char *name)
1049{
1050	struct rb_node **p = &root->rb_node;
1051	struct rb_node  *parent = NULL;
1052
1053	if (!name)
1054		name = dso->long_name;
1055	/*
1056	 * Find node with the matching name
1057	 */
1058	while (*p) {
1059		struct dso *this = rb_entry(*p, struct dso, rb_node);
1060		int rc = strcmp(name, this->long_name);
1061
1062		parent = *p;
1063		if (rc == 0) {
1064			/*
1065			 * In case the new DSO is a duplicate of an existing
1066			 * one, print a one-time warning & put the new entry
1067			 * at the end of the list of duplicates.
1068			 */
1069			if (!dso || (dso == this))
1070				return this;	/* Find matching dso */
1071			/*
1072			 * The core kernel DSOs may have duplicated long name.
1073			 * In this case, the short name should be different.
1074			 * Comparing the short names to differentiate the DSOs.
1075			 */
1076			rc = strcmp(dso->short_name, this->short_name);
1077			if (rc == 0) {
1078				pr_err("Duplicated dso name: %s\n", name);
1079				return NULL;
1080			}
1081		}
1082		if (rc < 0)
1083			p = &parent->rb_left;
1084		else
1085			p = &parent->rb_right;
1086	}
1087	if (dso) {
1088		/* Add new node and rebalance tree */
1089		rb_link_node(&dso->rb_node, parent, p);
1090		rb_insert_color(&dso->rb_node, root);
1091		dso->root = root;
1092	}
1093	return NULL;
1094}
1095
1096static inline struct dso *__dso__find_by_longname(struct rb_root *root,
1097						  const char *name)
1098{
1099	return __dso__findlink_by_longname(root, NULL, name);
1100}
1101
1102void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated)
1103{
1104	struct rb_root *root = dso->root;
1105
1106	if (name == NULL)
1107		return;
1108
1109	if (dso->long_name_allocated)
1110		free((char *)dso->long_name);
1111
1112	if (root) {
1113		rb_erase(&dso->rb_node, root);
1114		/*
1115		 * __dso__findlink_by_longname() isn't guaranteed to add it
1116		 * back, so a clean removal is required here.
1117		 */
1118		RB_CLEAR_NODE(&dso->rb_node);
1119		dso->root = NULL;
1120	}
1121
1122	dso->long_name		 = name;
1123	dso->long_name_len	 = strlen(name);
1124	dso->long_name_allocated = name_allocated;
1125
1126	if (root)
1127		__dso__findlink_by_longname(root, dso, NULL);
 
 
 
 
 
1128}
1129
1130void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated)
1131{
1132	if (name == NULL)
1133		return;
1134
1135	if (dso->short_name_allocated)
1136		free((char *)dso->short_name);
1137
1138	dso->short_name		  = name;
1139	dso->short_name_len	  = strlen(name);
1140	dso->short_name_allocated = name_allocated;
1141}
1142
1143static void dso__set_basename(struct dso *dso)
1144{
1145       /*
1146        * basename() may modify path buffer, so we must pass
1147        * a copy.
1148        */
1149       char *base, *lname = strdup(dso->long_name);
1150
1151       if (!lname)
1152               return;
1153
1154       /*
1155        * basename() may return a pointer to internal
1156        * storage which is reused in subsequent calls
1157        * so copy the result.
1158        */
1159       base = strdup(basename(lname));
1160
1161       free(lname);
1162
1163       if (!base)
1164               return;
1165
1166       dso__set_short_name(dso, base, true);
1167}
1168
1169int dso__name_len(const struct dso *dso)
1170{
1171	if (!dso)
1172		return strlen("[unknown]");
1173	if (verbose > 0)
1174		return dso->long_name_len;
1175
1176	return dso->short_name_len;
1177}
1178
1179bool dso__loaded(const struct dso *dso, enum map_type type)
1180{
1181	return dso->loaded & (1 << type);
1182}
1183
1184bool dso__sorted_by_name(const struct dso *dso, enum map_type type)
1185{
1186	return dso->sorted_by_name & (1 << type);
1187}
1188
1189void dso__set_sorted_by_name(struct dso *dso, enum map_type type)
1190{
1191	dso->sorted_by_name |= (1 << type);
1192}
1193
1194struct dso *dso__new(const char *name)
1195{
1196	struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1);
1197
1198	if (dso != NULL) {
1199		int i;
1200		strcpy(dso->name, name);
1201		dso__set_long_name(dso, dso->name, false);
 
 
1202		dso__set_short_name(dso, dso->name, false);
1203		for (i = 0; i < MAP__NR_TYPES; ++i)
1204			dso->symbols[i] = dso->symbol_names[i] = RB_ROOT;
 
1205		dso->data.cache = RB_ROOT;
1206		dso->inlined_nodes = RB_ROOT;
1207		dso->srclines = RB_ROOT;
 
1208		dso->data.fd = -1;
1209		dso->data.status = DSO_DATA_STATUS_UNKNOWN;
1210		dso->symtab_type = DSO_BINARY_TYPE__NOT_FOUND;
1211		dso->binary_type = DSO_BINARY_TYPE__NOT_FOUND;
1212		dso->is_64_bit = (sizeof(void *) == 8);
1213		dso->loaded = 0;
1214		dso->rel = 0;
1215		dso->sorted_by_name = 0;
1216		dso->has_build_id = 0;
1217		dso->has_srcline = 1;
1218		dso->a2l_fails = 1;
1219		dso->kernel = DSO_TYPE_USER;
 
1220		dso->needs_swap = DSO_SWAP__UNSET;
 
1221		RB_CLEAR_NODE(&dso->rb_node);
1222		dso->root = NULL;
1223		INIT_LIST_HEAD(&dso->node);
1224		INIT_LIST_HEAD(&dso->data.open_entry);
1225		pthread_mutex_init(&dso->lock, NULL);
1226		refcount_set(&dso->refcnt, 1);
1227	}
1228
1229	return dso;
1230}
1231
1232void dso__delete(struct dso *dso)
1233{
1234	int i;
 
1235
 
 
1236	if (!RB_EMPTY_NODE(&dso->rb_node))
1237		pr_err("DSO %s is still in rbtree when being deleted!\n",
1238		       dso->long_name);
1239
1240	/* free inlines first, as they reference symbols */
1241	inlines__tree_delete(&dso->inlined_nodes);
1242	srcline__tree_delete(&dso->srclines);
1243	for (i = 0; i < MAP__NR_TYPES; ++i)
1244		symbols__delete(&dso->symbols[i]);
 
 
1245
1246	if (dso->short_name_allocated) {
1247		zfree((char **)&dso->short_name);
1248		dso->short_name_allocated = false;
1249	}
1250
1251	if (dso->long_name_allocated) {
1252		zfree((char **)&dso->long_name);
1253		dso->long_name_allocated = false;
1254	}
1255
1256	dso__data_close(dso);
1257	auxtrace_cache__free(dso->auxtrace_cache);
1258	dso_cache__free(dso);
1259	dso__free_a2l(dso);
1260	zfree(&dso->symsrc_filename);
1261	nsinfo__zput(dso->nsinfo);
1262	pthread_mutex_destroy(&dso->lock);
1263	free(dso);
1264}
1265
1266struct dso *dso__get(struct dso *dso)
1267{
1268	if (dso)
1269		refcount_inc(&dso->refcnt);
1270	return dso;
1271}
1272
1273void dso__put(struct dso *dso)
1274{
1275	if (dso && refcount_dec_and_test(&dso->refcnt))
1276		dso__delete(dso);
1277}
1278
1279void dso__set_build_id(struct dso *dso, void *build_id)
1280{
1281	memcpy(dso->build_id, build_id, sizeof(dso->build_id));
1282	dso->has_build_id = 1;
1283}
1284
1285bool dso__build_id_equal(const struct dso *dso, u8 *build_id)
1286{
1287	return memcmp(dso->build_id, build_id, sizeof(dso->build_id)) == 0;
 
 
 
 
 
 
 
 
 
 
 
1288}
1289
1290void dso__read_running_kernel_build_id(struct dso *dso, struct machine *machine)
1291{
1292	char path[PATH_MAX];
1293
1294	if (machine__is_default_guest(machine))
1295		return;
1296	sprintf(path, "%s/sys/kernel/notes", machine->root_dir);
1297	if (sysfs__read_build_id(path, dso->build_id,
1298				 sizeof(dso->build_id)) == 0)
1299		dso->has_build_id = true;
1300}
1301
1302int dso__kernel_module_get_build_id(struct dso *dso,
1303				    const char *root_dir)
1304{
1305	char filename[PATH_MAX];
1306	/*
1307	 * kernel module short names are of the form "[module]" and
1308	 * we need just "module" here.
1309	 */
1310	const char *name = dso->short_name + 1;
1311
1312	snprintf(filename, sizeof(filename),
1313		 "%s/sys/module/%.*s/notes/.note.gnu.build-id",
1314		 root_dir, (int)strlen(name) - 1, name);
1315
1316	if (sysfs__read_build_id(filename, dso->build_id,
1317				 sizeof(dso->build_id)) == 0)
1318		dso->has_build_id = true;
1319
1320	return 0;
1321}
1322
1323bool __dsos__read_build_ids(struct list_head *head, bool with_hits)
1324{
1325	bool have_build_id = false;
1326	struct dso *pos;
1327	struct nscookie nsc;
1328
1329	list_for_each_entry(pos, head, node) {
1330		if (with_hits && !pos->hit && !dso__is_vdso(pos))
1331			continue;
1332		if (pos->has_build_id) {
1333			have_build_id = true;
1334			continue;
1335		}
1336		nsinfo__mountns_enter(pos->nsinfo, &nsc);
1337		if (filename__read_build_id(pos->long_name, pos->build_id,
1338					    sizeof(pos->build_id)) > 0) {
1339			have_build_id	  = true;
1340			pos->has_build_id = true;
1341		}
1342		nsinfo__mountns_exit(&nsc);
1343	}
1344
1345	return have_build_id;
1346}
1347
1348void __dsos__add(struct dsos *dsos, struct dso *dso)
1349{
1350	list_add_tail(&dso->node, &dsos->head);
1351	__dso__findlink_by_longname(&dsos->root, dso, NULL);
1352	/*
1353	 * It is now in the linked list, grab a reference, then garbage collect
1354	 * this when needing memory, by looking at LRU dso instances in the
1355	 * list with atomic_read(&dso->refcnt) == 1, i.e. no references
1356	 * anywhere besides the one for the list, do, under a lock for the
1357	 * list: remove it from the list, then a dso__put(), that probably will
1358	 * be the last and will then call dso__delete(), end of life.
1359	 *
1360	 * That, or at the end of the 'struct machine' lifetime, when all
1361	 * 'struct dso' instances will be removed from the list, in
1362	 * dsos__exit(), if they have no other reference from some other data
1363	 * structure.
1364	 *
1365	 * E.g.: after processing a 'perf.data' file and storing references
1366	 * to objects instantiated while processing events, we will have
1367	 * references to the 'thread', 'map', 'dso' structs all from 'struct
1368	 * hist_entry' instances, but we may not need anything not referenced,
1369	 * so we might as well call machines__exit()/machines__delete() and
1370	 * garbage collect it.
1371	 */
1372	dso__get(dso);
1373}
1374
1375void dsos__add(struct dsos *dsos, struct dso *dso)
1376{
1377	down_write(&dsos->lock);
1378	__dsos__add(dsos, dso);
1379	up_write(&dsos->lock);
1380}
1381
1382struct dso *__dsos__find(struct dsos *dsos, const char *name, bool cmp_short)
1383{
1384	struct dso *pos;
1385
1386	if (cmp_short) {
1387		list_for_each_entry(pos, &dsos->head, node)
1388			if (strcmp(pos->short_name, name) == 0)
1389				return pos;
1390		return NULL;
1391	}
1392	return __dso__find_by_longname(&dsos->root, name);
1393}
1394
1395struct dso *dsos__find(struct dsos *dsos, const char *name, bool cmp_short)
1396{
1397	struct dso *dso;
1398	down_read(&dsos->lock);
1399	dso = __dsos__find(dsos, name, cmp_short);
1400	up_read(&dsos->lock);
1401	return dso;
1402}
1403
1404struct dso *__dsos__addnew(struct dsos *dsos, const char *name)
1405{
1406	struct dso *dso = dso__new(name);
1407
1408	if (dso != NULL) {
1409		__dsos__add(dsos, dso);
1410		dso__set_basename(dso);
1411		/* Put dso here because __dsos_add already got it */
1412		dso__put(dso);
1413	}
1414	return dso;
1415}
1416
1417struct dso *__dsos__findnew(struct dsos *dsos, const char *name)
1418{
1419	struct dso *dso = __dsos__find(dsos, name, false);
1420
1421	return dso ? dso : __dsos__addnew(dsos, name);
1422}
1423
1424struct dso *dsos__findnew(struct dsos *dsos, const char *name)
1425{
1426	struct dso *dso;
1427	down_write(&dsos->lock);
1428	dso = dso__get(__dsos__findnew(dsos, name));
1429	up_write(&dsos->lock);
1430	return dso;
1431}
1432
1433size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
1434			       bool (skip)(struct dso *dso, int parm), int parm)
1435{
1436	struct dso *pos;
1437	size_t ret = 0;
1438
1439	list_for_each_entry(pos, head, node) {
1440		if (skip && skip(pos, parm))
1441			continue;
1442		ret += dso__fprintf_buildid(pos, fp);
1443		ret += fprintf(fp, " %s\n", pos->long_name);
1444	}
1445	return ret;
1446}
1447
1448size_t __dsos__fprintf(struct list_head *head, FILE *fp)
1449{
1450	struct dso *pos;
1451	size_t ret = 0;
1452
1453	list_for_each_entry(pos, head, node) {
1454		int i;
1455		for (i = 0; i < MAP__NR_TYPES; ++i)
1456			ret += dso__fprintf(pos, i, fp);
1457	}
1458
1459	return ret;
1460}
1461
1462size_t dso__fprintf_buildid(struct dso *dso, FILE *fp)
1463{
1464	char sbuild_id[SBUILD_ID_SIZE];
1465
1466	build_id__sprintf(dso->build_id, sizeof(dso->build_id), sbuild_id);
1467	return fprintf(fp, "%s", sbuild_id);
1468}
1469
1470size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp)
1471{
1472	struct rb_node *nd;
1473	size_t ret = fprintf(fp, "dso: %s (", dso->short_name);
1474
1475	if (dso->short_name != dso->long_name)
1476		ret += fprintf(fp, "%s, ", dso->long_name);
1477	ret += fprintf(fp, "%s, %sloaded, ", map_type__name[type],
1478		       dso__loaded(dso, type) ? "" : "NOT ");
1479	ret += dso__fprintf_buildid(dso, fp);
1480	ret += fprintf(fp, ")\n");
1481	for (nd = rb_first(&dso->symbols[type]); nd; nd = rb_next(nd)) {
1482		struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
1483		ret += symbol__fprintf(pos, fp);
1484	}
1485
1486	return ret;
1487}
1488
1489enum dso_type dso__type(struct dso *dso, struct machine *machine)
1490{
1491	int fd;
1492	enum dso_type type = DSO__TYPE_UNKNOWN;
1493
1494	fd = dso__data_get_fd(dso, machine);
1495	if (fd >= 0) {
1496		type = dso__type_fd(fd);
1497		dso__data_put_fd(dso);
1498	}
1499
1500	return type;
1501}
1502
1503int dso__strerror_load(struct dso *dso, char *buf, size_t buflen)
1504{
1505	int idx, errnum = dso->load_errno;
1506	/*
1507	 * This must have a same ordering as the enum dso_load_errno.
1508	 */
1509	static const char *dso_load__error_str[] = {
1510	"Internal tools/perf/ library error",
1511	"Invalid ELF file",
1512	"Can not read build id",
1513	"Mismatching build id",
1514	"Decompression failure",
1515	};
1516
1517	BUG_ON(buflen == 0);
1518
1519	if (errnum >= 0) {
1520		const char *err = str_error_r(errnum, buf, buflen);
1521
1522		if (err != buf)
1523			scnprintf(buf, buflen, "%s", err);
1524
1525		return 0;
1526	}
1527
1528	if (errnum <  __DSO_LOAD_ERRNO__START || errnum >= __DSO_LOAD_ERRNO__END)
1529		return -1;
1530
1531	idx = errnum - __DSO_LOAD_ERRNO__START;
1532	scnprintf(buf, buflen, "%s", dso_load__error_str[idx]);
1533	return 0;
1534}
v6.8
   1// SPDX-License-Identifier: GPL-2.0
   2#include <asm/bug.h>
   3#include <linux/kernel.h>
   4#include <linux/string.h>
   5#include <linux/zalloc.h>
   6#include <sys/time.h>
   7#include <sys/resource.h>
   8#include <sys/types.h>
   9#include <sys/stat.h>
  10#include <unistd.h>
  11#include <errno.h>
  12#include <fcntl.h>
  13#include <stdlib.h>
  14#ifdef HAVE_LIBBPF_SUPPORT
  15#include <bpf/libbpf.h>
  16#include "bpf-event.h"
  17#include "bpf-utils.h"
  18#endif
  19#include "compress.h"
  20#include "env.h"
  21#include "namespaces.h"
  22#include "path.h"
  23#include "map.h"
  24#include "symbol.h"
  25#include "srcline.h"
  26#include "dso.h"
  27#include "dsos.h"
  28#include "machine.h"
  29#include "auxtrace.h"
  30#include "util.h" /* O_CLOEXEC for older systems */
  31#include "debug.h"
  32#include "string2.h"
  33#include "vdso.h"
  34#include "annotate-data.h"
  35
  36static const char * const debuglink_paths[] = {
  37	"%.0s%s",
  38	"%s/%s",
  39	"%s/.debug/%s",
  40	"/usr/lib/debug%s/%s"
  41};
  42
  43char dso__symtab_origin(const struct dso *dso)
  44{
  45	static const char origin[] = {
  46		[DSO_BINARY_TYPE__KALLSYMS]			= 'k',
  47		[DSO_BINARY_TYPE__VMLINUX]			= 'v',
  48		[DSO_BINARY_TYPE__JAVA_JIT]			= 'j',
  49		[DSO_BINARY_TYPE__DEBUGLINK]			= 'l',
  50		[DSO_BINARY_TYPE__BUILD_ID_CACHE]		= 'B',
  51		[DSO_BINARY_TYPE__BUILD_ID_CACHE_DEBUGINFO]	= 'D',
  52		[DSO_BINARY_TYPE__FEDORA_DEBUGINFO]		= 'f',
  53		[DSO_BINARY_TYPE__UBUNTU_DEBUGINFO]		= 'u',
  54		[DSO_BINARY_TYPE__MIXEDUP_UBUNTU_DEBUGINFO]	= 'x',
  55		[DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO]	= 'o',
  56		[DSO_BINARY_TYPE__BUILDID_DEBUGINFO]		= 'b',
  57		[DSO_BINARY_TYPE__SYSTEM_PATH_DSO]		= 'd',
  58		[DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE]		= 'K',
  59		[DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP]	= 'm',
  60		[DSO_BINARY_TYPE__GUEST_KALLSYMS]		= 'g',
  61		[DSO_BINARY_TYPE__GUEST_KMODULE]		= 'G',
  62		[DSO_BINARY_TYPE__GUEST_KMODULE_COMP]		= 'M',
  63		[DSO_BINARY_TYPE__GUEST_VMLINUX]		= 'V',
  64	};
  65
  66	if (dso == NULL || dso->symtab_type == DSO_BINARY_TYPE__NOT_FOUND)
  67		return '!';
  68	return origin[dso->symtab_type];
  69}
  70
  71bool dso__is_object_file(const struct dso *dso)
  72{
  73	switch (dso->binary_type) {
  74	case DSO_BINARY_TYPE__KALLSYMS:
  75	case DSO_BINARY_TYPE__GUEST_KALLSYMS:
  76	case DSO_BINARY_TYPE__JAVA_JIT:
  77	case DSO_BINARY_TYPE__BPF_PROG_INFO:
  78	case DSO_BINARY_TYPE__BPF_IMAGE:
  79	case DSO_BINARY_TYPE__OOL:
  80		return false;
  81	case DSO_BINARY_TYPE__VMLINUX:
  82	case DSO_BINARY_TYPE__GUEST_VMLINUX:
  83	case DSO_BINARY_TYPE__DEBUGLINK:
  84	case DSO_BINARY_TYPE__BUILD_ID_CACHE:
  85	case DSO_BINARY_TYPE__BUILD_ID_CACHE_DEBUGINFO:
  86	case DSO_BINARY_TYPE__FEDORA_DEBUGINFO:
  87	case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO:
  88	case DSO_BINARY_TYPE__MIXEDUP_UBUNTU_DEBUGINFO:
  89	case DSO_BINARY_TYPE__BUILDID_DEBUGINFO:
  90	case DSO_BINARY_TYPE__SYSTEM_PATH_DSO:
  91	case DSO_BINARY_TYPE__GUEST_KMODULE:
  92	case DSO_BINARY_TYPE__GUEST_KMODULE_COMP:
  93	case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE:
  94	case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP:
  95	case DSO_BINARY_TYPE__KCORE:
  96	case DSO_BINARY_TYPE__GUEST_KCORE:
  97	case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO:
  98	case DSO_BINARY_TYPE__NOT_FOUND:
  99	default:
 100		return true;
 101	}
 102}
 103
 104int dso__read_binary_type_filename(const struct dso *dso,
 105				   enum dso_binary_type type,
 106				   char *root_dir, char *filename, size_t size)
 107{
 108	char build_id_hex[SBUILD_ID_SIZE];
 109	int ret = 0;
 110	size_t len;
 111
 112	switch (type) {
 113	case DSO_BINARY_TYPE__DEBUGLINK:
 114	{
 115		const char *last_slash;
 116		char dso_dir[PATH_MAX];
 117		char symfile[PATH_MAX];
 118		unsigned int i;
 119
 120		len = __symbol__join_symfs(filename, size, dso->long_name);
 121		last_slash = filename + len;
 122		while (last_slash != filename && *last_slash != '/')
 123			last_slash--;
 124
 125		strncpy(dso_dir, filename, last_slash - filename);
 126		dso_dir[last_slash-filename] = '\0';
 127
 128		if (!is_regular_file(filename)) {
 129			ret = -1;
 130			break;
 131		}
 132
 133		ret = filename__read_debuglink(filename, symfile, PATH_MAX);
 134		if (ret)
 135			break;
 136
 137		/* Check predefined locations where debug file might reside */
 138		ret = -1;
 139		for (i = 0; i < ARRAY_SIZE(debuglink_paths); i++) {
 140			snprintf(filename, size,
 141					debuglink_paths[i], dso_dir, symfile);
 142			if (is_regular_file(filename)) {
 143				ret = 0;
 144				break;
 145			}
 146		}
 147
 148		break;
 149	}
 150	case DSO_BINARY_TYPE__BUILD_ID_CACHE:
 151		if (dso__build_id_filename(dso, filename, size, false) == NULL)
 152			ret = -1;
 153		break;
 154
 155	case DSO_BINARY_TYPE__BUILD_ID_CACHE_DEBUGINFO:
 156		if (dso__build_id_filename(dso, filename, size, true) == NULL)
 157			ret = -1;
 158		break;
 159
 160	case DSO_BINARY_TYPE__FEDORA_DEBUGINFO:
 161		len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
 162		snprintf(filename + len, size - len, "%s.debug", dso->long_name);
 163		break;
 164
 165	case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO:
 166		len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
 167		snprintf(filename + len, size - len, "%s", dso->long_name);
 168		break;
 169
 170	case DSO_BINARY_TYPE__MIXEDUP_UBUNTU_DEBUGINFO:
 171		/*
 172		 * Ubuntu can mixup /usr/lib with /lib, putting debuginfo in
 173		 * /usr/lib/debug/lib when it is expected to be in
 174		 * /usr/lib/debug/usr/lib
 175		 */
 176		if (strlen(dso->long_name) < 9 ||
 177		    strncmp(dso->long_name, "/usr/lib/", 9)) {
 178			ret = -1;
 179			break;
 180		}
 181		len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
 182		snprintf(filename + len, size - len, "%s", dso->long_name + 4);
 183		break;
 184
 185	case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO:
 186	{
 187		const char *last_slash;
 188		size_t dir_size;
 189
 190		last_slash = dso->long_name + dso->long_name_len;
 191		while (last_slash != dso->long_name && *last_slash != '/')
 192			last_slash--;
 193
 194		len = __symbol__join_symfs(filename, size, "");
 195		dir_size = last_slash - dso->long_name + 2;
 196		if (dir_size > (size - len)) {
 197			ret = -1;
 198			break;
 199		}
 200		len += scnprintf(filename + len, dir_size, "%s",  dso->long_name);
 201		len += scnprintf(filename + len , size - len, ".debug%s",
 202								last_slash);
 203		break;
 204	}
 205
 206	case DSO_BINARY_TYPE__BUILDID_DEBUGINFO:
 207		if (!dso->has_build_id) {
 208			ret = -1;
 209			break;
 210		}
 211
 212		build_id__sprintf(&dso->bid, build_id_hex);
 
 
 213		len = __symbol__join_symfs(filename, size, "/usr/lib/debug/.build-id/");
 214		snprintf(filename + len, size - len, "%.2s/%s.debug",
 215			 build_id_hex, build_id_hex + 2);
 216		break;
 217
 218	case DSO_BINARY_TYPE__VMLINUX:
 219	case DSO_BINARY_TYPE__GUEST_VMLINUX:
 220	case DSO_BINARY_TYPE__SYSTEM_PATH_DSO:
 221		__symbol__join_symfs(filename, size, dso->long_name);
 222		break;
 223
 224	case DSO_BINARY_TYPE__GUEST_KMODULE:
 225	case DSO_BINARY_TYPE__GUEST_KMODULE_COMP:
 226		path__join3(filename, size, symbol_conf.symfs,
 227			    root_dir, dso->long_name);
 228		break;
 229
 230	case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE:
 231	case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP:
 232		__symbol__join_symfs(filename, size, dso->long_name);
 233		break;
 234
 235	case DSO_BINARY_TYPE__KCORE:
 236	case DSO_BINARY_TYPE__GUEST_KCORE:
 237		snprintf(filename, size, "%s", dso->long_name);
 238		break;
 239
 240	default:
 241	case DSO_BINARY_TYPE__KALLSYMS:
 242	case DSO_BINARY_TYPE__GUEST_KALLSYMS:
 243	case DSO_BINARY_TYPE__JAVA_JIT:
 244	case DSO_BINARY_TYPE__BPF_PROG_INFO:
 245	case DSO_BINARY_TYPE__BPF_IMAGE:
 246	case DSO_BINARY_TYPE__OOL:
 247	case DSO_BINARY_TYPE__NOT_FOUND:
 248		ret = -1;
 249		break;
 250	}
 251
 252	return ret;
 253}
 254
 255enum {
 256	COMP_ID__NONE = 0,
 257};
 258
 259static const struct {
 260	const char *fmt;
 261	int (*decompress)(const char *input, int output);
 262	bool (*is_compressed)(const char *input);
 263} compressions[] = {
 264	[COMP_ID__NONE] = { .fmt = NULL, },
 265#ifdef HAVE_ZLIB_SUPPORT
 266	{ "gz", gzip_decompress_to_file, gzip_is_compressed },
 267#endif
 268#ifdef HAVE_LZMA_SUPPORT
 269	{ "xz", lzma_decompress_to_file, lzma_is_compressed },
 270#endif
 271	{ NULL, NULL, NULL },
 272};
 273
 274static int is_supported_compression(const char *ext)
 275{
 276	unsigned i;
 277
 278	for (i = 1; compressions[i].fmt; i++) {
 279		if (!strcmp(ext, compressions[i].fmt))
 280			return i;
 281	}
 282	return COMP_ID__NONE;
 283}
 284
 285bool is_kernel_module(const char *pathname, int cpumode)
 286{
 287	struct kmod_path m;
 288	int mode = cpumode & PERF_RECORD_MISC_CPUMODE_MASK;
 289
 290	WARN_ONCE(mode != cpumode,
 291		  "Internal error: passing unmasked cpumode (%x) to is_kernel_module",
 292		  cpumode);
 293
 294	switch (mode) {
 295	case PERF_RECORD_MISC_USER:
 296	case PERF_RECORD_MISC_HYPERVISOR:
 297	case PERF_RECORD_MISC_GUEST_USER:
 298		return false;
 299	/* Treat PERF_RECORD_MISC_CPUMODE_UNKNOWN as kernel */
 300	default:
 301		if (kmod_path__parse(&m, pathname)) {
 302			pr_err("Failed to check whether %s is a kernel module or not. Assume it is.",
 303					pathname);
 304			return true;
 305		}
 306	}
 307
 308	return m.kmod;
 309}
 310
 
 
 
 
 
 
 
 
 
 
 
 
 311bool dso__needs_decompress(struct dso *dso)
 312{
 313	return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP ||
 314		dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE_COMP;
 315}
 316
 317int filename__decompress(const char *name, char *pathname,
 318			 size_t len, int comp, int *err)
 319{
 320	char tmpbuf[] = KMOD_DECOMP_NAME;
 321	int fd = -1;
 
 
 
 
 322
 323	/*
 324	 * We have proper compression id for DSO and yet the file
 325	 * behind the 'name' can still be plain uncompressed object.
 326	 *
 327	 * The reason is behind the logic we open the DSO object files,
 328	 * when we try all possible 'debug' objects until we find the
 329	 * data. So even if the DSO is represented by 'krava.xz' module,
 330	 * we can end up here opening ~/.debug/....23432432/debug' file
 331	 * which is not compressed.
 332	 *
 333	 * To keep this transparent, we detect this and return the file
 334	 * descriptor to the uncompressed file.
 335	 */
 336	if (!compressions[comp].is_compressed(name))
 337		return open(name, O_RDONLY);
 338
 339	fd = mkstemp(tmpbuf);
 340	if (fd < 0) {
 341		*err = errno;
 342		return -1;
 343	}
 344
 345	if (compressions[comp].decompress(name, fd)) {
 346		*err = DSO_LOAD_ERRNO__DECOMPRESSION_FAILURE;
 347		close(fd);
 348		fd = -1;
 349	}
 350
 351	if (!pathname || (fd < 0))
 352		unlink(tmpbuf);
 353
 354	if (pathname && (fd >= 0))
 355		strlcpy(pathname, tmpbuf, len);
 356
 357	return fd;
 358}
 359
 360static int decompress_kmodule(struct dso *dso, const char *name,
 361			      char *pathname, size_t len)
 362{
 363	if (!dso__needs_decompress(dso))
 364		return -1;
 365
 366	if (dso->comp == COMP_ID__NONE)
 367		return -1;
 368
 369	return filename__decompress(name, pathname, len, dso->comp,
 370				    &dso->load_errno);
 371}
 372
 373int dso__decompress_kmodule_fd(struct dso *dso, const char *name)
 374{
 375	return decompress_kmodule(dso, name, NULL, 0);
 376}
 377
 378int dso__decompress_kmodule_path(struct dso *dso, const char *name,
 379				 char *pathname, size_t len)
 380{
 381	int fd = decompress_kmodule(dso, name, pathname, len);
 
 382
 
 
 
 
 
 
 
 383	close(fd);
 384	return fd >= 0 ? 0 : -1;
 385}
 386
 387/*
 388 * Parses kernel module specified in @path and updates
 389 * @m argument like:
 390 *
 391 *    @comp - true if @path contains supported compression suffix,
 392 *            false otherwise
 393 *    @kmod - true if @path contains '.ko' suffix in right position,
 394 *            false otherwise
 395 *    @name - if (@alloc_name && @kmod) is true, it contains strdup-ed base name
 396 *            of the kernel module without suffixes, otherwise strudup-ed
 397 *            base name of @path
 398 *    @ext  - if (@alloc_ext && @comp) is true, it contains strdup-ed string
 399 *            the compression suffix
 400 *
 401 * Returns 0 if there's no strdup error, -ENOMEM otherwise.
 402 */
 403int __kmod_path__parse(struct kmod_path *m, const char *path,
 404		       bool alloc_name)
 405{
 406	const char *name = strrchr(path, '/');
 407	const char *ext  = strrchr(path, '.');
 408	bool is_simple_name = false;
 409
 410	memset(m, 0x0, sizeof(*m));
 411	name = name ? name + 1 : path;
 412
 413	/*
 414	 * '.' is also a valid character for module name. For example:
 415	 * [aaa.bbb] is a valid module name. '[' should have higher
 416	 * priority than '.ko' suffix.
 417	 *
 418	 * The kernel names are from machine__mmap_name. Such
 419	 * name should belong to kernel itself, not kernel module.
 420	 */
 421	if (name[0] == '[') {
 422		is_simple_name = true;
 423		if ((strncmp(name, "[kernel.kallsyms]", 17) == 0) ||
 424		    (strncmp(name, "[guest.kernel.kallsyms", 22) == 0) ||
 425		    (strncmp(name, "[vdso]", 6) == 0) ||
 426		    (strncmp(name, "[vdso32]", 8) == 0) ||
 427		    (strncmp(name, "[vdsox32]", 9) == 0) ||
 428		    (strncmp(name, "[vsyscall]", 10) == 0)) {
 429			m->kmod = false;
 430
 431		} else
 432			m->kmod = true;
 433	}
 434
 435	/* No extension, just return name. */
 436	if ((ext == NULL) || is_simple_name) {
 437		if (alloc_name) {
 438			m->name = strdup(name);
 439			return m->name ? 0 : -ENOMEM;
 440		}
 441		return 0;
 442	}
 443
 444	m->comp = is_supported_compression(ext + 1);
 445	if (m->comp > COMP_ID__NONE)
 446		ext -= 3;
 
 447
 448	/* Check .ko extension only if there's enough name left. */
 449	if (ext > name)
 450		m->kmod = !strncmp(ext, ".ko", 3);
 451
 452	if (alloc_name) {
 453		if (m->kmod) {
 454			if (asprintf(&m->name, "[%.*s]", (int) (ext - name), name) == -1)
 455				return -ENOMEM;
 456		} else {
 457			if (asprintf(&m->name, "%s", name) == -1)
 458				return -ENOMEM;
 459		}
 460
 461		strreplace(m->name, '-', '_');
 
 
 
 
 
 
 
 
 462	}
 463
 464	return 0;
 465}
 466
 467void dso__set_module_info(struct dso *dso, struct kmod_path *m,
 468			  struct machine *machine)
 469{
 470	if (machine__is_host(machine))
 471		dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
 472	else
 473		dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
 474
 475	/* _KMODULE_COMP should be next to _KMODULE */
 476	if (m->kmod && m->comp) {
 477		dso->symtab_type++;
 478		dso->comp = m->comp;
 479	}
 480
 481	dso->is_kmod = 1;
 482	dso__set_short_name(dso, strdup(m->name), true);
 483}
 484
 485/*
 486 * Global list of open DSOs and the counter.
 487 */
 488static LIST_HEAD(dso__data_open);
 489static long dso__data_open_cnt;
 490static pthread_mutex_t dso__data_open_lock = PTHREAD_MUTEX_INITIALIZER;
 491
 492static void dso__list_add(struct dso *dso)
 493{
 494	list_add_tail(&dso->data.open_entry, &dso__data_open);
 495	dso__data_open_cnt++;
 496}
 497
 498static void dso__list_del(struct dso *dso)
 499{
 500	list_del_init(&dso->data.open_entry);
 501	WARN_ONCE(dso__data_open_cnt <= 0,
 502		  "DSO data fd counter out of bounds.");
 503	dso__data_open_cnt--;
 504}
 505
 506static void close_first_dso(void);
 507
 508static int do_open(char *name)
 509{
 510	int fd;
 511	char sbuf[STRERR_BUFSIZE];
 512
 513	do {
 514		fd = open(name, O_RDONLY|O_CLOEXEC);
 515		if (fd >= 0)
 516			return fd;
 517
 518		pr_debug("dso open failed: %s\n",
 519			 str_error_r(errno, sbuf, sizeof(sbuf)));
 520		if (!dso__data_open_cnt || errno != EMFILE)
 521			break;
 522
 523		close_first_dso();
 524	} while (1);
 525
 526	return -1;
 527}
 528
 529char *dso__filename_with_chroot(const struct dso *dso, const char *filename)
 530{
 531	return filename_with_chroot(nsinfo__pid(dso->nsinfo), filename);
 532}
 533
 534static int __open_dso(struct dso *dso, struct machine *machine)
 535{
 536	int fd = -EINVAL;
 537	char *root_dir = (char *)"";
 538	char *name = malloc(PATH_MAX);
 539	bool decomp = false;
 540
 541	if (!name)
 542		return -ENOMEM;
 543
 544	mutex_lock(&dso->lock);
 545	if (machine)
 546		root_dir = machine->root_dir;
 547
 548	if (dso__read_binary_type_filename(dso, dso->binary_type,
 549					    root_dir, name, PATH_MAX))
 550		goto out;
 551
 552	if (!is_regular_file(name)) {
 553		char *new_name;
 554
 555		if (errno != ENOENT || dso->nsinfo == NULL)
 556			goto out;
 557
 558		new_name = dso__filename_with_chroot(dso, name);
 559		if (!new_name)
 560			goto out;
 561
 562		free(name);
 563		name = new_name;
 564	}
 565
 566	if (dso__needs_decompress(dso)) {
 567		char newpath[KMOD_DECOMP_LEN];
 568		size_t len = sizeof(newpath);
 569
 570		if (dso__decompress_kmodule_path(dso, name, newpath, len) < 0) {
 571			fd = -dso->load_errno;
 572			goto out;
 573		}
 574
 575		decomp = true;
 576		strcpy(name, newpath);
 577	}
 578
 579	fd = do_open(name);
 580
 581	if (decomp)
 582		unlink(name);
 583
 584out:
 585	mutex_unlock(&dso->lock);
 586	free(name);
 587	return fd;
 588}
 589
 590static void check_data_close(void);
 591
 592/**
 593 * dso_close - Open DSO data file
 594 * @dso: dso object
 595 *
 596 * Open @dso's data file descriptor and updates
 597 * list/count of open DSO objects.
 598 */
 599static int open_dso(struct dso *dso, struct machine *machine)
 600{
 601	int fd;
 602	struct nscookie nsc;
 603
 604	if (dso->binary_type != DSO_BINARY_TYPE__BUILD_ID_CACHE) {
 605		mutex_lock(&dso->lock);
 606		nsinfo__mountns_enter(dso->nsinfo, &nsc);
 607		mutex_unlock(&dso->lock);
 608	}
 609	fd = __open_dso(dso, machine);
 610	if (dso->binary_type != DSO_BINARY_TYPE__BUILD_ID_CACHE)
 611		nsinfo__mountns_exit(&nsc);
 612
 613	if (fd >= 0) {
 614		dso__list_add(dso);
 615		/*
 616		 * Check if we crossed the allowed number
 617		 * of opened DSOs and close one if needed.
 618		 */
 619		check_data_close();
 620	}
 621
 622	return fd;
 623}
 624
 625static void close_data_fd(struct dso *dso)
 626{
 627	if (dso->data.fd >= 0) {
 628		close(dso->data.fd);
 629		dso->data.fd = -1;
 630		dso->data.file_size = 0;
 631		dso__list_del(dso);
 632	}
 633}
 634
 635/**
 636 * dso_close - Close DSO data file
 637 * @dso: dso object
 638 *
 639 * Close @dso's data file descriptor and updates
 640 * list/count of open DSO objects.
 641 */
 642static void close_dso(struct dso *dso)
 643{
 644	close_data_fd(dso);
 645}
 646
 647static void close_first_dso(void)
 648{
 649	struct dso *dso;
 650
 651	dso = list_first_entry(&dso__data_open, struct dso, data.open_entry);
 652	close_dso(dso);
 653}
 654
 655static rlim_t get_fd_limit(void)
 656{
 657	struct rlimit l;
 658	rlim_t limit = 0;
 659
 660	/* Allow half of the current open fd limit. */
 661	if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
 662		if (l.rlim_cur == RLIM_INFINITY)
 663			limit = l.rlim_cur;
 664		else
 665			limit = l.rlim_cur / 2;
 666	} else {
 667		pr_err("failed to get fd limit\n");
 668		limit = 1;
 669	}
 670
 671	return limit;
 672}
 673
 674static rlim_t fd_limit;
 675
 676/*
 677 * Used only by tests/dso-data.c to reset the environment
 678 * for tests. I dont expect we should change this during
 679 * standard runtime.
 680 */
 681void reset_fd_limit(void)
 682{
 683	fd_limit = 0;
 684}
 685
 686static bool may_cache_fd(void)
 687{
 688	if (!fd_limit)
 689		fd_limit = get_fd_limit();
 690
 691	if (fd_limit == RLIM_INFINITY)
 692		return true;
 693
 694	return fd_limit > (rlim_t) dso__data_open_cnt;
 695}
 696
 697/*
 698 * Check and close LRU dso if we crossed allowed limit
 699 * for opened dso file descriptors. The limit is half
 700 * of the RLIMIT_NOFILE files opened.
 701*/
 702static void check_data_close(void)
 703{
 704	bool cache_fd = may_cache_fd();
 705
 706	if (!cache_fd)
 707		close_first_dso();
 708}
 709
 710/**
 711 * dso__data_close - Close DSO data file
 712 * @dso: dso object
 713 *
 714 * External interface to close @dso's data file descriptor.
 715 */
 716void dso__data_close(struct dso *dso)
 717{
 718	pthread_mutex_lock(&dso__data_open_lock);
 719	close_dso(dso);
 720	pthread_mutex_unlock(&dso__data_open_lock);
 721}
 722
 723static void try_to_open_dso(struct dso *dso, struct machine *machine)
 724{
 725	enum dso_binary_type binary_type_data[] = {
 726		DSO_BINARY_TYPE__BUILD_ID_CACHE,
 727		DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
 728		DSO_BINARY_TYPE__NOT_FOUND,
 729	};
 730	int i = 0;
 731
 732	if (dso->data.fd >= 0)
 733		return;
 734
 735	if (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND) {
 736		dso->data.fd = open_dso(dso, machine);
 737		goto out;
 738	}
 739
 740	do {
 741		dso->binary_type = binary_type_data[i++];
 742
 743		dso->data.fd = open_dso(dso, machine);
 744		if (dso->data.fd >= 0)
 745			goto out;
 746
 747	} while (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND);
 748out:
 749	if (dso->data.fd >= 0)
 750		dso->data.status = DSO_DATA_STATUS_OK;
 751	else
 752		dso->data.status = DSO_DATA_STATUS_ERROR;
 753}
 754
 755/**
 756 * dso__data_get_fd - Get dso's data file descriptor
 757 * @dso: dso object
 758 * @machine: machine object
 759 *
 760 * External interface to find dso's file, open it and
 761 * returns file descriptor.  It should be paired with
 762 * dso__data_put_fd() if it returns non-negative value.
 763 */
 764int dso__data_get_fd(struct dso *dso, struct machine *machine)
 765{
 766	if (dso->data.status == DSO_DATA_STATUS_ERROR)
 767		return -1;
 768
 769	if (pthread_mutex_lock(&dso__data_open_lock) < 0)
 770		return -1;
 771
 772	try_to_open_dso(dso, machine);
 773
 774	if (dso->data.fd < 0)
 775		pthread_mutex_unlock(&dso__data_open_lock);
 776
 777	return dso->data.fd;
 778}
 779
 780void dso__data_put_fd(struct dso *dso __maybe_unused)
 781{
 782	pthread_mutex_unlock(&dso__data_open_lock);
 783}
 784
 785bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by)
 786{
 787	u32 flag = 1 << by;
 788
 789	if (dso->data.status_seen & flag)
 790		return true;
 791
 792	dso->data.status_seen |= flag;
 793
 794	return false;
 795}
 796
 797#ifdef HAVE_LIBBPF_SUPPORT
 798static ssize_t bpf_read(struct dso *dso, u64 offset, char *data)
 799{
 800	struct bpf_prog_info_node *node;
 801	ssize_t size = DSO__DATA_CACHE_SIZE;
 802	u64 len;
 803	u8 *buf;
 804
 805	node = perf_env__find_bpf_prog_info(dso->bpf_prog.env, dso->bpf_prog.id);
 806	if (!node || !node->info_linear) {
 807		dso->data.status = DSO_DATA_STATUS_ERROR;
 808		return -1;
 809	}
 810
 811	len = node->info_linear->info.jited_prog_len;
 812	buf = (u8 *)(uintptr_t)node->info_linear->info.jited_prog_insns;
 813
 814	if (offset >= len)
 815		return -1;
 816
 817	size = (ssize_t)min(len - offset, (u64)size);
 818	memcpy(data, buf + offset, size);
 819	return size;
 820}
 821
 822static int bpf_size(struct dso *dso)
 823{
 824	struct bpf_prog_info_node *node;
 825
 826	node = perf_env__find_bpf_prog_info(dso->bpf_prog.env, dso->bpf_prog.id);
 827	if (!node || !node->info_linear) {
 828		dso->data.status = DSO_DATA_STATUS_ERROR;
 829		return -1;
 830	}
 831
 832	dso->data.file_size = node->info_linear->info.jited_prog_len;
 833	return 0;
 834}
 835#endif // HAVE_LIBBPF_SUPPORT
 836
 837static void
 838dso_cache__free(struct dso *dso)
 839{
 840	struct rb_root *root = &dso->data.cache;
 841	struct rb_node *next = rb_first(root);
 842
 843	mutex_lock(&dso->lock);
 844	while (next) {
 845		struct dso_cache *cache;
 846
 847		cache = rb_entry(next, struct dso_cache, rb_node);
 848		next = rb_next(&cache->rb_node);
 849		rb_erase(&cache->rb_node, root);
 850		free(cache);
 851	}
 852	mutex_unlock(&dso->lock);
 853}
 854
 855static struct dso_cache *__dso_cache__find(struct dso *dso, u64 offset)
 856{
 857	const struct rb_root *root = &dso->data.cache;
 858	struct rb_node * const *p = &root->rb_node;
 859	const struct rb_node *parent = NULL;
 860	struct dso_cache *cache;
 861
 862	while (*p != NULL) {
 863		u64 end;
 864
 865		parent = *p;
 866		cache = rb_entry(parent, struct dso_cache, rb_node);
 867		end = cache->offset + DSO__DATA_CACHE_SIZE;
 868
 869		if (offset < cache->offset)
 870			p = &(*p)->rb_left;
 871		else if (offset >= end)
 872			p = &(*p)->rb_right;
 873		else
 874			return cache;
 875	}
 876
 877	return NULL;
 878}
 879
 880static struct dso_cache *
 881dso_cache__insert(struct dso *dso, struct dso_cache *new)
 882{
 883	struct rb_root *root = &dso->data.cache;
 884	struct rb_node **p = &root->rb_node;
 885	struct rb_node *parent = NULL;
 886	struct dso_cache *cache;
 887	u64 offset = new->offset;
 888
 889	mutex_lock(&dso->lock);
 890	while (*p != NULL) {
 891		u64 end;
 892
 893		parent = *p;
 894		cache = rb_entry(parent, struct dso_cache, rb_node);
 895		end = cache->offset + DSO__DATA_CACHE_SIZE;
 896
 897		if (offset < cache->offset)
 898			p = &(*p)->rb_left;
 899		else if (offset >= end)
 900			p = &(*p)->rb_right;
 901		else
 902			goto out;
 903	}
 904
 905	rb_link_node(&new->rb_node, parent, p);
 906	rb_insert_color(&new->rb_node, root);
 907
 908	cache = NULL;
 909out:
 910	mutex_unlock(&dso->lock);
 911	return cache;
 912}
 913
 914static ssize_t dso_cache__memcpy(struct dso_cache *cache, u64 offset, u8 *data,
 915				 u64 size, bool out)
 
 916{
 917	u64 cache_offset = offset - cache->offset;
 918	u64 cache_size   = min(cache->size - cache_offset, size);
 919
 920	if (out)
 921		memcpy(data, cache->data + cache_offset, cache_size);
 922	else
 923		memcpy(cache->data + cache_offset, data, cache_size);
 924	return cache_size;
 925}
 926
 927static ssize_t file_read(struct dso *dso, struct machine *machine,
 928			 u64 offset, char *data)
 
 929{
 
 
 930	ssize_t ret;
 931
 932	pthread_mutex_lock(&dso__data_open_lock);
 
 
 
 
 
 
 
 933
 934	/*
 935	 * dso->data.fd might be closed if other thread opened another
 936	 * file (dso) due to open file limit (RLIMIT_NOFILE).
 937	 */
 938	try_to_open_dso(dso, machine);
 939
 940	if (dso->data.fd < 0) {
 941		dso->data.status = DSO_DATA_STATUS_ERROR;
 942		ret = -errno;
 943		goto out;
 944	}
 945
 946	ret = pread(dso->data.fd, data, DSO__DATA_CACHE_SIZE, offset);
 947out:
 948	pthread_mutex_unlock(&dso__data_open_lock);
 949	return ret;
 950}
 951
 952static struct dso_cache *dso_cache__populate(struct dso *dso,
 953					     struct machine *machine,
 954					     u64 offset, ssize_t *ret)
 955{
 956	u64 cache_offset = offset & DSO__DATA_CACHE_MASK;
 957	struct dso_cache *cache;
 958	struct dso_cache *old;
 959
 960	cache = zalloc(sizeof(*cache) + DSO__DATA_CACHE_SIZE);
 961	if (!cache) {
 962		*ret = -ENOMEM;
 963		return NULL;
 964	}
 965#ifdef HAVE_LIBBPF_SUPPORT
 966	if (dso->binary_type == DSO_BINARY_TYPE__BPF_PROG_INFO)
 967		*ret = bpf_read(dso, cache_offset, cache->data);
 968	else
 969#endif
 970	if (dso->binary_type == DSO_BINARY_TYPE__OOL)
 971		*ret = DSO__DATA_CACHE_SIZE;
 972	else
 973		*ret = file_read(dso, machine, cache_offset, cache->data);
 974
 975	if (*ret <= 0) {
 976		free(cache);
 977		return NULL;
 978	}
 979
 980	cache->offset = cache_offset;
 981	cache->size   = *ret;
 
 
 
 
 
 982
 983	old = dso_cache__insert(dso, cache);
 984	if (old) {
 985		/* we lose the race */
 986		free(cache);
 987		cache = old;
 988	}
 989
 990	return cache;
 991}
 992
 993static struct dso_cache *dso_cache__find(struct dso *dso,
 994					 struct machine *machine,
 995					 u64 offset,
 996					 ssize_t *ret)
 997{
 998	struct dso_cache *cache = __dso_cache__find(dso, offset);
 999
1000	return cache ? cache : dso_cache__populate(dso, machine, offset, ret);
1001}
1002
1003static ssize_t dso_cache_io(struct dso *dso, struct machine *machine,
1004			    u64 offset, u8 *data, ssize_t size, bool out)
1005{
1006	struct dso_cache *cache;
1007	ssize_t ret = 0;
1008
1009	cache = dso_cache__find(dso, machine, offset, &ret);
1010	if (!cache)
1011		return ret;
1012
1013	return dso_cache__memcpy(cache, offset, data, size, out);
1014}
1015
1016/*
1017 * Reads and caches dso data DSO__DATA_CACHE_SIZE size chunks
1018 * in the rb_tree. Any read to already cached data is served
1019 * by cached data. Writes update the cache only, not the backing file.
1020 */
1021static ssize_t cached_io(struct dso *dso, struct machine *machine,
1022			 u64 offset, u8 *data, ssize_t size, bool out)
1023{
1024	ssize_t r = 0;
1025	u8 *p = data;
1026
1027	do {
1028		ssize_t ret;
1029
1030		ret = dso_cache_io(dso, machine, offset, p, size, out);
1031		if (ret < 0)
1032			return ret;
1033
1034		/* Reached EOF, return what we have. */
1035		if (!ret)
1036			break;
1037
1038		BUG_ON(ret > size);
1039
1040		r      += ret;
1041		p      += ret;
1042		offset += ret;
1043		size   -= ret;
1044
1045	} while (size);
1046
1047	return r;
1048}
1049
1050static int file_size(struct dso *dso, struct machine *machine)
1051{
1052	int ret = 0;
1053	struct stat st;
1054	char sbuf[STRERR_BUFSIZE];
1055
 
 
 
 
 
 
1056	pthread_mutex_lock(&dso__data_open_lock);
1057
1058	/*
1059	 * dso->data.fd might be closed if other thread opened another
1060	 * file (dso) due to open file limit (RLIMIT_NOFILE).
1061	 */
1062	try_to_open_dso(dso, machine);
1063
1064	if (dso->data.fd < 0) {
1065		ret = -errno;
1066		dso->data.status = DSO_DATA_STATUS_ERROR;
1067		goto out;
1068	}
1069
1070	if (fstat(dso->data.fd, &st) < 0) {
1071		ret = -errno;
1072		pr_err("dso cache fstat failed: %s\n",
1073		       str_error_r(errno, sbuf, sizeof(sbuf)));
1074		dso->data.status = DSO_DATA_STATUS_ERROR;
1075		goto out;
1076	}
1077	dso->data.file_size = st.st_size;
1078
1079out:
1080	pthread_mutex_unlock(&dso__data_open_lock);
1081	return ret;
1082}
1083
1084int dso__data_file_size(struct dso *dso, struct machine *machine)
1085{
1086	if (dso->data.file_size)
1087		return 0;
1088
1089	if (dso->data.status == DSO_DATA_STATUS_ERROR)
1090		return -1;
1091#ifdef HAVE_LIBBPF_SUPPORT
1092	if (dso->binary_type == DSO_BINARY_TYPE__BPF_PROG_INFO)
1093		return bpf_size(dso);
1094#endif
1095	return file_size(dso, machine);
1096}
1097
1098/**
1099 * dso__data_size - Return dso data size
1100 * @dso: dso object
1101 * @machine: machine object
1102 *
1103 * Return: dso data size
1104 */
1105off_t dso__data_size(struct dso *dso, struct machine *machine)
1106{
1107	if (dso__data_file_size(dso, machine))
1108		return -1;
1109
1110	/* For now just estimate dso data size is close to file size */
1111	return dso->data.file_size;
1112}
1113
1114static ssize_t data_read_write_offset(struct dso *dso, struct machine *machine,
1115				      u64 offset, u8 *data, ssize_t size,
1116				      bool out)
1117{
1118	if (dso__data_file_size(dso, machine))
1119		return -1;
1120
1121	/* Check the offset sanity. */
1122	if (offset > dso->data.file_size)
1123		return -1;
1124
1125	if (offset + size < offset)
1126		return -1;
1127
1128	return cached_io(dso, machine, offset, data, size, out);
1129}
1130
1131/**
1132 * dso__data_read_offset - Read data from dso file offset
1133 * @dso: dso object
1134 * @machine: machine object
1135 * @offset: file offset
1136 * @data: buffer to store data
1137 * @size: size of the @data buffer
1138 *
1139 * External interface to read data from dso file offset. Open
1140 * dso data file and use cached_read to get the data.
1141 */
1142ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
1143			      u64 offset, u8 *data, ssize_t size)
1144{
1145	if (dso->data.status == DSO_DATA_STATUS_ERROR)
1146		return -1;
1147
1148	return data_read_write_offset(dso, machine, offset, data, size, true);
1149}
1150
1151/**
1152 * dso__data_read_addr - Read data from dso address
1153 * @dso: dso object
1154 * @machine: machine object
1155 * @add: virtual memory address
1156 * @data: buffer to store data
1157 * @size: size of the @data buffer
1158 *
1159 * External interface to read data from dso address.
1160 */
1161ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
1162			    struct machine *machine, u64 addr,
1163			    u8 *data, ssize_t size)
1164{
1165	u64 offset = map__map_ip(map, addr);
1166
1167	return dso__data_read_offset(dso, machine, offset, data, size);
1168}
1169
1170/**
1171 * dso__data_write_cache_offs - Write data to dso data cache at file offset
1172 * @dso: dso object
1173 * @machine: machine object
1174 * @offset: file offset
1175 * @data: buffer to write
1176 * @size: size of the @data buffer
1177 *
1178 * Write into the dso file data cache, but do not change the file itself.
1179 */
1180ssize_t dso__data_write_cache_offs(struct dso *dso, struct machine *machine,
1181				   u64 offset, const u8 *data_in, ssize_t size)
1182{
1183	u8 *data = (u8 *)data_in; /* cast away const to use same fns for r/w */
1184
1185	if (dso->data.status == DSO_DATA_STATUS_ERROR)
1186		return -1;
1187
1188	return data_read_write_offset(dso, machine, offset, data, size, false);
1189}
1190
1191/**
1192 * dso__data_write_cache_addr - Write data to dso data cache at dso address
1193 * @dso: dso object
1194 * @machine: machine object
1195 * @add: virtual memory address
1196 * @data: buffer to write
1197 * @size: size of the @data buffer
1198 *
1199 * External interface to write into the dso file data cache, but do not change
1200 * the file itself.
1201 */
1202ssize_t dso__data_write_cache_addr(struct dso *dso, struct map *map,
1203				   struct machine *machine, u64 addr,
1204				   const u8 *data, ssize_t size)
1205{
1206	u64 offset = map__map_ip(map, addr);
1207
1208	return dso__data_write_cache_offs(dso, machine, offset, data, size);
1209}
1210
1211struct map *dso__new_map(const char *name)
1212{
1213	struct map *map = NULL;
1214	struct dso *dso = dso__new(name);
1215
1216	if (dso) {
1217		map = map__new2(0, dso);
1218		dso__put(dso);
1219	}
1220
1221	return map;
1222}
1223
1224struct dso *machine__findnew_kernel(struct machine *machine, const char *name,
1225				    const char *short_name, int dso_type)
1226{
1227	/*
1228	 * The kernel dso could be created by build_id processing.
1229	 */
1230	struct dso *dso = machine__findnew_dso(machine, name);
1231
1232	/*
1233	 * We need to run this in all cases, since during the build_id
1234	 * processing we had no idea this was the kernel dso.
1235	 */
1236	if (dso != NULL) {
1237		dso__set_short_name(dso, short_name, false);
1238		dso->kernel = dso_type;
1239	}
1240
1241	return dso;
1242}
1243
1244static void dso__set_long_name_id(struct dso *dso, const char *name, struct dso_id *id, bool name_allocated)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1245{
1246	struct rb_root *root = dso->root;
1247
1248	if (name == NULL)
1249		return;
1250
1251	if (dso->long_name_allocated)
1252		free((char *)dso->long_name);
1253
1254	if (root) {
1255		rb_erase(&dso->rb_node, root);
1256		/*
1257		 * __dsos__findnew_link_by_longname_id() isn't guaranteed to
1258		 * add it back, so a clean removal is required here.
1259		 */
1260		RB_CLEAR_NODE(&dso->rb_node);
1261		dso->root = NULL;
1262	}
1263
1264	dso->long_name		 = name;
1265	dso->long_name_len	 = strlen(name);
1266	dso->long_name_allocated = name_allocated;
1267
1268	if (root)
1269		__dsos__findnew_link_by_longname_id(root, dso, NULL, id);
1270}
1271
1272void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated)
1273{
1274	dso__set_long_name_id(dso, name, NULL, name_allocated);
1275}
1276
1277void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated)
1278{
1279	if (name == NULL)
1280		return;
1281
1282	if (dso->short_name_allocated)
1283		free((char *)dso->short_name);
1284
1285	dso->short_name		  = name;
1286	dso->short_name_len	  = strlen(name);
1287	dso->short_name_allocated = name_allocated;
1288}
1289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1290int dso__name_len(const struct dso *dso)
1291{
1292	if (!dso)
1293		return strlen("[unknown]");
1294	if (verbose > 0)
1295		return dso->long_name_len;
1296
1297	return dso->short_name_len;
1298}
1299
1300bool dso__loaded(const struct dso *dso)
1301{
1302	return dso->loaded;
1303}
1304
1305bool dso__sorted_by_name(const struct dso *dso)
1306{
1307	return dso->sorted_by_name;
1308}
1309
1310void dso__set_sorted_by_name(struct dso *dso)
1311{
1312	dso->sorted_by_name = true;
1313}
1314
1315struct dso *dso__new_id(const char *name, struct dso_id *id)
1316{
1317	struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1);
1318
1319	if (dso != NULL) {
 
1320		strcpy(dso->name, name);
1321		if (id)
1322			dso->id = *id;
1323		dso__set_long_name_id(dso, dso->name, id, false);
1324		dso__set_short_name(dso, dso->name, false);
1325		dso->symbols = RB_ROOT_CACHED;
1326		dso->symbol_names = NULL;
1327		dso->symbol_names_len = 0;
1328		dso->data.cache = RB_ROOT;
1329		dso->inlined_nodes = RB_ROOT_CACHED;
1330		dso->srclines = RB_ROOT_CACHED;
1331		dso->data_types = RB_ROOT;
1332		dso->data.fd = -1;
1333		dso->data.status = DSO_DATA_STATUS_UNKNOWN;
1334		dso->symtab_type = DSO_BINARY_TYPE__NOT_FOUND;
1335		dso->binary_type = DSO_BINARY_TYPE__NOT_FOUND;
1336		dso->is_64_bit = (sizeof(void *) == 8);
1337		dso->loaded = 0;
1338		dso->rel = 0;
1339		dso->sorted_by_name = 0;
1340		dso->has_build_id = 0;
1341		dso->has_srcline = 1;
1342		dso->a2l_fails = 1;
1343		dso->kernel = DSO_SPACE__USER;
1344		dso->is_kmod = 0;
1345		dso->needs_swap = DSO_SWAP__UNSET;
1346		dso->comp = COMP_ID__NONE;
1347		RB_CLEAR_NODE(&dso->rb_node);
1348		dso->root = NULL;
1349		INIT_LIST_HEAD(&dso->node);
1350		INIT_LIST_HEAD(&dso->data.open_entry);
1351		mutex_init(&dso->lock);
1352		refcount_set(&dso->refcnt, 1);
1353	}
1354
1355	return dso;
1356}
1357
1358struct dso *dso__new(const char *name)
1359{
1360	return dso__new_id(name, NULL);
1361}
1362
1363void dso__delete(struct dso *dso)
1364{
1365	if (!RB_EMPTY_NODE(&dso->rb_node))
1366		pr_err("DSO %s is still in rbtree when being deleted!\n",
1367		       dso->long_name);
1368
1369	/* free inlines first, as they reference symbols */
1370	inlines__tree_delete(&dso->inlined_nodes);
1371	srcline__tree_delete(&dso->srclines);
1372	symbols__delete(&dso->symbols);
1373	dso->symbol_names_len = 0;
1374	zfree(&dso->symbol_names);
1375	annotated_data_type__tree_delete(&dso->data_types);
1376
1377	if (dso->short_name_allocated) {
1378		zfree((char **)&dso->short_name);
1379		dso->short_name_allocated = false;
1380	}
1381
1382	if (dso->long_name_allocated) {
1383		zfree((char **)&dso->long_name);
1384		dso->long_name_allocated = false;
1385	}
1386
1387	dso__data_close(dso);
1388	auxtrace_cache__free(dso->auxtrace_cache);
1389	dso_cache__free(dso);
1390	dso__free_a2l(dso);
1391	zfree(&dso->symsrc_filename);
1392	nsinfo__zput(dso->nsinfo);
1393	mutex_destroy(&dso->lock);
1394	free(dso);
1395}
1396
1397struct dso *dso__get(struct dso *dso)
1398{
1399	if (dso)
1400		refcount_inc(&dso->refcnt);
1401	return dso;
1402}
1403
1404void dso__put(struct dso *dso)
1405{
1406	if (dso && refcount_dec_and_test(&dso->refcnt))
1407		dso__delete(dso);
1408}
1409
1410void dso__set_build_id(struct dso *dso, struct build_id *bid)
1411{
1412	dso->bid = *bid;
1413	dso->has_build_id = 1;
1414}
1415
1416bool dso__build_id_equal(const struct dso *dso, struct build_id *bid)
1417{
1418	if (dso->bid.size > bid->size && dso->bid.size == BUILD_ID_SIZE) {
1419		/*
1420		 * For the backward compatibility, it allows a build-id has
1421		 * trailing zeros.
1422		 */
1423		return !memcmp(dso->bid.data, bid->data, bid->size) &&
1424			!memchr_inv(&dso->bid.data[bid->size], 0,
1425				    dso->bid.size - bid->size);
1426	}
1427
1428	return dso->bid.size == bid->size &&
1429	       memcmp(dso->bid.data, bid->data, dso->bid.size) == 0;
1430}
1431
1432void dso__read_running_kernel_build_id(struct dso *dso, struct machine *machine)
1433{
1434	char path[PATH_MAX];
1435
1436	if (machine__is_default_guest(machine))
1437		return;
1438	sprintf(path, "%s/sys/kernel/notes", machine->root_dir);
1439	if (sysfs__read_build_id(path, &dso->bid) == 0)
 
1440		dso->has_build_id = true;
1441}
1442
1443int dso__kernel_module_get_build_id(struct dso *dso,
1444				    const char *root_dir)
1445{
1446	char filename[PATH_MAX];
1447	/*
1448	 * kernel module short names are of the form "[module]" and
1449	 * we need just "module" here.
1450	 */
1451	const char *name = dso->short_name + 1;
1452
1453	snprintf(filename, sizeof(filename),
1454		 "%s/sys/module/%.*s/notes/.note.gnu.build-id",
1455		 root_dir, (int)strlen(name) - 1, name);
1456
1457	if (sysfs__read_build_id(filename, &dso->bid) == 0)
 
1458		dso->has_build_id = true;
1459
1460	return 0;
1461}
1462
1463static size_t dso__fprintf_buildid(struct dso *dso, FILE *fp)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1464{
1465	char sbuild_id[SBUILD_ID_SIZE];
1466
1467	build_id__sprintf(&dso->bid, sbuild_id);
1468	return fprintf(fp, "%s", sbuild_id);
1469}
1470
1471size_t dso__fprintf(struct dso *dso, FILE *fp)
1472{
1473	struct rb_node *nd;
1474	size_t ret = fprintf(fp, "dso: %s (", dso->short_name);
1475
1476	if (dso->short_name != dso->long_name)
1477		ret += fprintf(fp, "%s, ", dso->long_name);
1478	ret += fprintf(fp, "%sloaded, ", dso__loaded(dso) ? "" : "NOT ");
 
1479	ret += dso__fprintf_buildid(dso, fp);
1480	ret += fprintf(fp, ")\n");
1481	for (nd = rb_first_cached(&dso->symbols); nd; nd = rb_next(nd)) {
1482		struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
1483		ret += symbol__fprintf(pos, fp);
1484	}
1485
1486	return ret;
1487}
1488
1489enum dso_type dso__type(struct dso *dso, struct machine *machine)
1490{
1491	int fd;
1492	enum dso_type type = DSO__TYPE_UNKNOWN;
1493
1494	fd = dso__data_get_fd(dso, machine);
1495	if (fd >= 0) {
1496		type = dso__type_fd(fd);
1497		dso__data_put_fd(dso);
1498	}
1499
1500	return type;
1501}
1502
1503int dso__strerror_load(struct dso *dso, char *buf, size_t buflen)
1504{
1505	int idx, errnum = dso->load_errno;
1506	/*
1507	 * This must have a same ordering as the enum dso_load_errno.
1508	 */
1509	static const char *dso_load__error_str[] = {
1510	"Internal tools/perf/ library error",
1511	"Invalid ELF file",
1512	"Can not read build id",
1513	"Mismatching build id",
1514	"Decompression failure",
1515	};
1516
1517	BUG_ON(buflen == 0);
1518
1519	if (errnum >= 0) {
1520		const char *err = str_error_r(errnum, buf, buflen);
1521
1522		if (err != buf)
1523			scnprintf(buf, buflen, "%s", err);
1524
1525		return 0;
1526	}
1527
1528	if (errnum <  __DSO_LOAD_ERRNO__START || errnum >= __DSO_LOAD_ERRNO__END)
1529		return -1;
1530
1531	idx = errnum - __DSO_LOAD_ERRNO__START;
1532	scnprintf(buf, buflen, "%s", dso_load__error_str[idx]);
1533	return 0;
1534}