blob: 1b57ded58d594c6a84b50796981b54f481098c5a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Kan Liangc84974e2015-09-04 04:58:31 -04002#include <string.h>
3#include <stdlib.h>
4#include <stdio.h>
5#include "tests.h"
6#include "util.h"
7#include "session.h"
8#include "evlist.h"
9#include "debug.h"
10
11#define TEMPL "/tmp/perf-test-XXXXXX"
12#define DATA_SIZE 10
13
14static int get_temp(char *path)
15{
16 int fd;
17
18 strcpy(path, TEMPL);
19
20 fd = mkstemp(path);
21 if (fd < 0) {
22 perror("mkstemp failed");
23 return -1;
24 }
25
26 close(fd);
27 return 0;
28}
29
30static int session_write_header(char *path)
31{
32 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010033 struct perf_data data = {
Jiri Olsaeae8ad82017-01-23 22:25:41 +010034 .file = {
35 .path = path,
36 },
37 .mode = PERF_DATA_MODE_WRITE,
Kan Liangc84974e2015-09-04 04:58:31 -040038 };
39
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010040 session = perf_session__new(&data, false, NULL);
Kan Liangc84974e2015-09-04 04:58:31 -040041 TEST_ASSERT_VAL("can't get session", session);
42
43 session->evlist = perf_evlist__new_default();
44 TEST_ASSERT_VAL("can't get evlist", session->evlist);
45
46 perf_header__set_feat(&session->header, HEADER_CPU_TOPOLOGY);
47 perf_header__set_feat(&session->header, HEADER_NRCPUS);
Thomas Richterb930e622018-06-11 09:31:53 +020048 perf_header__set_feat(&session->header, HEADER_ARCH);
Kan Liangc84974e2015-09-04 04:58:31 -040049
50 session->header.data_size += DATA_SIZE;
51
52 TEST_ASSERT_VAL("failed to write header",
Jiri Olsaeae8ad82017-01-23 22:25:41 +010053 !perf_session__write_header(session, session->evlist, data.file.fd, true));
Kan Liangc84974e2015-09-04 04:58:31 -040054
55 perf_session__delete(session);
56
57 return 0;
58}
59
Jiri Olsaf8548392019-07-21 13:23:49 +020060static int check_cpu_topology(char *path, struct perf_cpu_map *map)
Kan Liangc84974e2015-09-04 04:58:31 -040061{
62 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010063 struct perf_data data = {
Jiri Olsaeae8ad82017-01-23 22:25:41 +010064 .file = {
65 .path = path,
66 },
67 .mode = PERF_DATA_MODE_READ,
Kan Liangc84974e2015-09-04 04:58:31 -040068 };
69 int i;
70
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010071 session = perf_session__new(&data, false, NULL);
Kan Liangc84974e2015-09-04 04:58:31 -040072 TEST_ASSERT_VAL("can't get session", session);
73
Thomas Richterd1211092018-05-28 09:36:57 +020074 /* On platforms with large numbers of CPUs process_cpu_topology()
75 * might issue an error while reading the perf.data file section
76 * HEADER_CPU_TOPOLOGY and the cpu_topology_map pointed to by member
77 * cpu is a NULL pointer.
78 * Example: On s390
79 * CPU 0 is on core_id 0 and physical_package_id 6
80 * CPU 1 is on core_id 1 and physical_package_id 3
81 *
82 * Core_id and physical_package_id are platform and architecture
83 * dependend and might have higher numbers than the CPU id.
84 * This actually depends on the configuration.
85 *
86 * In this case process_cpu_topology() prints error message:
87 * "socket_id number is too big. You may need to upgrade the
88 * perf tool."
89 *
90 * This is the reason why this test might be skipped.
91 */
92 if (!session->header.env.cpu)
93 return TEST_SKIP;
94
Jan Stancekda8a58b2017-02-17 12:10:26 +010095 for (i = 0; i < session->header.env.nr_cpus_avail; i++) {
96 if (!cpu_map__has(map, i))
97 continue;
Kan Liangc84974e2015-09-04 04:58:31 -040098 pr_debug("CPU %d, core %d, socket %d\n", i,
99 session->header.env.cpu[i].core_id,
100 session->header.env.cpu[i].socket_id);
101 }
102
103 for (i = 0; i < map->nr; i++) {
104 TEST_ASSERT_VAL("Core ID doesn't match",
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200105 (session->header.env.cpu[map->map[i]].core_id == (cpu_map__get_core(map, i, NULL) & 0xffff)));
Kan Liangc84974e2015-09-04 04:58:31 -0400106
107 TEST_ASSERT_VAL("Socket ID doesn't match",
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200108 (session->header.env.cpu[map->map[i]].socket_id == cpu_map__get_socket(map, i, NULL)));
Kan Liangc84974e2015-09-04 04:58:31 -0400109 }
110
111 perf_session__delete(session);
112
113 return 0;
114}
115
Arnaldo Carvalho de Melo81f17c92017-08-03 15:16:31 -0300116int test__session_topology(struct test *test __maybe_unused, int subtest __maybe_unused)
Kan Liangc84974e2015-09-04 04:58:31 -0400117{
118 char path[PATH_MAX];
Jiri Olsaf8548392019-07-21 13:23:49 +0200119 struct perf_cpu_map *map;
Thomas Richterd1211092018-05-28 09:36:57 +0200120 int ret = TEST_FAIL;
Kan Liangc84974e2015-09-04 04:58:31 -0400121
122 TEST_ASSERT_VAL("can't get templ file", !get_temp(path));
123
124 pr_debug("templ file: %s\n", path);
125
126 if (session_write_header(path))
127 goto free_path;
128
129 map = cpu_map__new(NULL);
130 if (map == NULL) {
131 pr_debug("failed to get system cpumap\n");
132 goto free_path;
133 }
134
Thomas Richterd1211092018-05-28 09:36:57 +0200135 ret = check_cpu_topology(path, map);
Jiri Olsa38f01d82019-07-21 13:24:17 +0200136 perf_cpu_map__put(map);
Thomas Richterd1211092018-05-28 09:36:57 +0200137
Kan Liangc84974e2015-09-04 04:58:31 -0400138free_path:
139 unlink(path);
140 return ret;
141}