-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopology.c
256 lines (194 loc) · 4.64 KB
/
topology.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#define _GNU_SOURCE
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include "trace.h"
#include "topology.h"
static int cpu_sysfs_read_id(int cpu, const char *file)
{
FILE *f;
int value = -1;
char *path;
if (asprintf(&path, "/sys/devices/system/cpu/cpu%d/topology/%s", cpu, file) < 0) {
ERROR("Failed to allocate cpu%d's pat\n", cpu);
return -1;
}
f = fopen(path, "r");
if (!f) {
ERROR("Failed to open '%s'\n", path);
goto out;
}
if (fscanf(f, "%d", &value) < 1) {
ERROR("Failed to read '%s' value\n", path);
goto out_close;
}
out_close:
fclose(f);
out:
free(path);
return value;
}
static int cpu_get_core_id(int cpu)
{
return cpu_sysfs_read_id(cpu, "core_id");
}
static int cpu_get_package_id(int cpu)
{
return cpu_sysfs_read_id(cpu, "physical_package_id");
}
static int ht_build(struct package *package, struct core *core)
{
int cpu, nrcpus;
int nrthreads = 0;
struct thread *thread = NULL;
nrcpus = sysconf(_SC_NPROCESSORS_CONF);
if (nrcpus < 0)
return -1;
for (cpu = 0; cpu < nrcpus; cpu++) {
int package_id, core_id;
package_id = cpu_get_package_id(cpu);
if (package_id < 0)
return -1;
if (package->package_id != package_id)
continue;
core_id = cpu_get_core_id(cpu);
if (core_id < 0)
return -1;
if (core->core_id != core_id)
continue;
thread = realloc(thread, sizeof(*thread) * (nrthreads + 1));
if (!thread)
FATAL("Failed to allocate memory for ht\n");
thread[nrthreads].os_id = cpu;
thread[nrthreads].thread_id = nrthreads;
nrthreads++;
}
core->thread = thread;
core->nrthreads = nrthreads;
return 0;
}
static int core_build(struct package *package)
{
int cpu, nrcpus;
int nrcores = 0;
cpu_set_t cpuset;
struct core *core = NULL;
CPU_ZERO(&cpuset);
nrcpus = sysconf(_SC_NPROCESSORS_CONF);
if (nrcpus < 0)
return -1;
for (cpu = 0; cpu < nrcpus; cpu++) {
int package_id, core_id;
package_id = cpu_get_package_id(cpu);
if (package_id < 0)
return -1;
if (package->package_id != package_id)
continue;
core_id = cpu_get_core_id(cpu);
if (core_id < 0)
return -1;
if (CPU_ISSET(core_id, &cpuset))
continue;
CPU_SET(core_id, &cpuset);
core = realloc(core, sizeof(*core) * (nrcores + 1));
if (!core)
FATAL("Failed to allocate memory for core\n");
core[nrcores].core_id = core_id;
core[nrcores].os_id = cpu;
if (ht_build(package, &core[nrcores])) {
ERROR("Failed to build HT topology\n");
return -1;
}
nrcores++;
}
package->core = core;
package->nrcores = nrcores;
return 0;
}
static int package_build(struct topology *topology)
{
int cpu, nrcpus;
int nrpackages = 0;
cpu_set_t cpuset;
struct package *package = NULL;
CPU_ZERO(&cpuset);
nrcpus = sysconf(_SC_NPROCESSORS_CONF);
if (nrcpus < 0)
return -1;
for (cpu = 0; cpu < nrcpus; cpu++) {
int package_id;
package_id = cpu_get_package_id(cpu);
if (package_id < 0)
return -1;
if (CPU_ISSET(package_id, &cpuset))
continue;
CPU_SET(package_id, &cpuset);
package = realloc(package, sizeof(*package) * (nrpackages + 1));
if (!package)
FATAL("Failed to allocate memory for package\n");
package[nrpackages].package_id = package_id;
if (core_build(&package[nrpackages])) {
ERROR("Failed to build core topology\n");
return -1;
}
nrpackages++;
}
topology->package = package;
topology->nrpackages = nrpackages;
return 0;
}
void topology_show(struct topology *topology)
{
int i, j, k;
if (!topology)
return;
for (i = 0; i < topology->nrpackages; i++) {
struct package *package = topology->package;
DEBUG("package %d\n", package[i].package_id);
for (j = 0; j < package[i].nrcores; j++) {
struct core *core = package[i].core;
if (core[j].nrthreads)
DEBUG(" core %d\n",
core[j].core_id);
else
DEBUG(" core %d (cpu %d)\n",
core[j].core_id, core[j].os_id);
for (k = 0; k < core[j].nrthreads; k++) {
struct thread *thread = core[j].thread;
DEBUG(" thread %d (cpu %d)\n",
thread[k].thread_id, thread[k].os_id);
}
}
}
}
struct topology *topology_init(void)
{
struct topology *topology;
topology = calloc(sizeof(*topology), 1);
if (!topology)
return NULL;
if (package_build(topology))
goto out_free;
topology_show(topology);
out:
return topology;
out_free:
free(topology);
topology = NULL;
goto out;
}
void topology_fini(struct topology *topology)
{
int i, j;
if (!topology)
return;
for (i = 0; i < topology->nrpackages; i++) {
for (j = 0; j < topology->package[i].nrcores; j++)
free(topology->package[i].core[j].thread);
free(topology->package[i].core);
}
free(topology->package);
}