1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2005-2007, Joseph Koshy
5 * Copyright (c) 2007 The FreeBSD Foundation
6 * All rights reserved.
7 *
8 * Portions of this software were developed by A. Joseph Koshy under
9 * sponsorship from the FreeBSD Foundation and Google, Inc.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 *    notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33/*
34 * Transform a hwpmc(4) log into human readable form, and into
35 * gprof(1) compatible profiles.
36 */
37
38#include <sys/cdefs.h>
39__FBSDID("$FreeBSD$");
40
41#include <sys/param.h>
42#include <sys/endian.h>
43#include <sys/gmon.h>
44#include <sys/imgact_aout.h>
45#include <sys/imgact_elf.h>
46#include <sys/mman.h>
47#include <sys/pmc.h>
48#include <sys/queue.h>
49#include <sys/socket.h>
50#include <sys/stat.h>
51#include <sys/wait.h>
52
53#include <netinet/in.h>
54
55#include <assert.h>
56#include <err.h>
57#include <errno.h>
58#include <fcntl.h>
59#include <gelf.h>
60#include <libgen.h>
61#include <limits.h>
62#include <netdb.h>
63#include <pmc.h>
64#include <pmclog.h>
65#include <sysexits.h>
66#include <stdint.h>
67#include <stdio.h>
68#include <stdlib.h>
69#include <string.h>
70#include <unistd.h>
71
72#include "pmcstat.h"
73#include "pmcstat_log.h"
74#include "pmcpl_annotate.h"
75
76/*
77 * Record a callchain.
78 */
79
80void
81pmcpl_annotate_process(struct pmcstat_process *pp, struct pmcstat_pmcrecord *pmcr,
82    uint32_t nsamples, uintfptr_t *cc, int usermode, uint32_t cpu)
83{
84	struct pmcstat_pcmap *map;
85	struct pmcstat_symbol *sym;
86	uintfptr_t newpc;
87	struct pmcstat_image *image;
88
89	(void) pmcr; (void) nsamples; (void) usermode; (void) cpu;
90
91	map = pmcstat_process_find_map(usermode ? pp : pmcstat_kernproc, cc[0]);
92	if (map == NULL) {
93		/* Unknown offset. */
94		pmcstat_stats.ps_samples_unknown_offset++;
95		return;
96	}
97
98	assert(cc[0] >= map->ppm_lowpc && cc[0] < map->ppm_highpc);
99
100	image = map->ppm_image;
101	newpc = cc[0] - (map->ppm_lowpc +
102		(image->pi_vaddr - image->pi_start));
103	sym = pmcstat_symbol_search(image, newpc);
104	if (sym == NULL)
105		return;
106
107	fprintf(args.pa_graphfile, "%p %s 0x%jx 0x%jx\n",
108		(void *)cc[0],
109		pmcstat_string_unintern(sym->ps_name),
110		(uintmax_t)(sym->ps_start +
111		image->pi_vaddr), (uintmax_t)(sym->ps_end +
112		image->pi_vaddr));
113}
114