-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathos-windows-7.h
367 lines (316 loc) · 9.86 KB
/
os-windows-7.h
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
#define FIO_MAX_CPUS 512 /* From Hyper-V 2016's max logical processors */
#define FIO_CPU_MASK_STRIDE 64
#define FIO_CPU_MASK_ROWS (FIO_MAX_CPUS / FIO_CPU_MASK_STRIDE)
typedef struct {
uint64_t row[FIO_CPU_MASK_ROWS];
} os_cpu_mask_t;
#define FIO_HAVE_CPU_ONLINE_SYSCONF
/* Return all processors regardless of processor group */
static inline unsigned int cpus_online(void)
{
return GetActiveProcessorCount(ALL_PROCESSOR_GROUPS);
}
static inline void print_mask(os_cpu_mask_t *cpumask)
{
for (int i = 0; i < FIO_CPU_MASK_ROWS; i++)
dprint(FD_PROCESS, "cpumask[%d]=%lu\n", i, cpumask->row[i]);
}
/* Return the index of the least significant set CPU in cpumask or -1 if no
* CPUs are set */
static inline int first_set_cpu(os_cpu_mask_t *cpumask)
{
int cpus_offset, mask_first_cpu, row;
cpus_offset = 0;
row = 0;
mask_first_cpu = -1;
while (mask_first_cpu < 0 && row < FIO_CPU_MASK_ROWS) {
int row_first_cpu;
row_first_cpu = __builtin_ffsll(cpumask->row[row]) - 1;
dprint(FD_PROCESS, "row_first_cpu=%d cpumask->row[%d]=%lu\n",
row_first_cpu, row, cpumask->row[row]);
if (row_first_cpu > -1) {
mask_first_cpu = cpus_offset + row_first_cpu;
dprint(FD_PROCESS, "first set cpu in mask is at index %d\n",
mask_first_cpu);
} else {
cpus_offset += FIO_CPU_MASK_STRIDE;
row++;
}
}
return mask_first_cpu;
}
/* Return the index of the most significant set CPU in cpumask or -1 if no
* CPUs are set */
static inline int last_set_cpu(os_cpu_mask_t *cpumask)
{
int cpus_offset, mask_last_cpu, row;
cpus_offset = (FIO_CPU_MASK_ROWS - 1) * FIO_CPU_MASK_STRIDE;
row = FIO_CPU_MASK_ROWS - 1;
mask_last_cpu = -1;
while (mask_last_cpu < 0 && row >= 0) {
int row_last_cpu;
if (cpumask->row[row] == 0)
row_last_cpu = -1;
else {
uint64_t tmp = cpumask->row[row];
row_last_cpu = 0;
while (tmp >>= 1)
row_last_cpu++;
}
dprint(FD_PROCESS, "row_last_cpu=%d cpumask->row[%d]=%lu\n",
row_last_cpu, row, cpumask->row[row]);
if (row_last_cpu > -1) {
mask_last_cpu = cpus_offset + row_last_cpu;
dprint(FD_PROCESS, "last set cpu in mask is at index %d\n",
mask_last_cpu);
} else {
cpus_offset -= FIO_CPU_MASK_STRIDE;
row--;
}
}
return mask_last_cpu;
}
static inline int mask_to_group_mask(os_cpu_mask_t *cpumask, int *processor_group, uint64_t *affinity_mask)
{
WORD online_groups, group, group_size;
bool found;
int cpus_offset, search_cpu, last_cpu, bit_offset, row, end;
uint64_t group_cpumask;
search_cpu = first_set_cpu(cpumask);
if (search_cpu < 0) {
log_info("CPU mask doesn't set any CPUs\n");
return 1;
}
/* Find processor group first set CPU applies to */
online_groups = GetActiveProcessorGroupCount();
group = 0;
found = false;
cpus_offset = 0;
group_size = 0;
while (!found && group < online_groups) {
group_size = GetActiveProcessorCount(group);
dprint(FD_PROCESS, "group=%d group_start=%d group_size=%u search_cpu=%d\n",
group, cpus_offset, group_size, search_cpu);
if (cpus_offset + group_size > search_cpu)
found = true;
else {
cpus_offset += group_size;
group++;
}
}
if (!found) {
log_err("CPU mask contains processor beyond last active processor index (%d)\n",
cpus_offset - 1);
print_mask(cpumask);
return 1;
}
/* Check all the CPUs in the mask apply to ONLY that processor group */
last_cpu = last_set_cpu(cpumask);
if (last_cpu > (cpus_offset + group_size - 1)) {
log_info("CPU mask cannot bind CPUs (e.g. %d, %d) that are "
"in different processor groups\n", search_cpu,
last_cpu);
print_mask(cpumask);
return 1;
}
/* Extract the current processor group mask from the cpumask */
row = cpus_offset / FIO_CPU_MASK_STRIDE;
bit_offset = cpus_offset % FIO_CPU_MASK_STRIDE;
group_cpumask = cpumask->row[row] >> bit_offset;
end = bit_offset + group_size;
if (end > FIO_CPU_MASK_STRIDE && (row + 1 < FIO_CPU_MASK_ROWS)) {
/* Some of the next row needs to be part of the mask */
int needed, needed_shift, needed_mask_shift;
uint64_t needed_mask;
needed = end - FIO_CPU_MASK_STRIDE;
needed_shift = FIO_CPU_MASK_STRIDE - bit_offset;
needed_mask_shift = FIO_CPU_MASK_STRIDE - needed;
needed_mask = (uint64_t)-1 >> needed_mask_shift;
dprint(FD_PROCESS, "bit_offset=%d end=%d needed=%d needed_shift=%d needed_mask=%ld needed_mask_shift=%d\n", bit_offset, end, needed, needed_shift, needed_mask, needed_mask_shift);
group_cpumask |= (cpumask->row[row + 1] & needed_mask) << needed_shift;
}
group_cpumask &= (uint64_t)-1 >> (FIO_CPU_MASK_STRIDE - group_size);
/* Return group and mask */
dprint(FD_PROCESS, "Returning group=%d group_mask=%lu\n", group, group_cpumask);
*processor_group = group;
*affinity_mask = group_cpumask;
return 0;
}
static inline int fio_setaffinity(int pid, os_cpu_mask_t cpumask)
{
HANDLE handle = NULL;
int group, ret;
uint64_t group_mask = 0;
GROUP_AFFINITY new_group_affinity;
ret = -1;
if (mask_to_group_mask(&cpumask, &group, &group_mask) != 0)
goto err;
handle = OpenThread(THREAD_QUERY_INFORMATION | THREAD_SET_INFORMATION,
TRUE, pid);
if (handle == NULL) {
log_err("fio_setaffinity: failed to get handle for pid %d\n", pid);
goto err;
}
/* Set group and mask.
* Note: if the GROUP_AFFINITY struct's Reserved members are not
* initialised to 0 then SetThreadGroupAffinity will fail with
* GetLastError() set to ERROR_INVALID_PARAMETER */
new_group_affinity.Mask = (KAFFINITY) group_mask;
new_group_affinity.Group = group;
new_group_affinity.Reserved[0] = 0;
new_group_affinity.Reserved[1] = 0;
new_group_affinity.Reserved[2] = 0;
if (SetThreadGroupAffinity(handle, &new_group_affinity, NULL) != 0)
ret = 0;
else {
log_err("fio_setaffinity: failed to set thread affinity "
"(pid %d, group %d, mask %" PRIx64 ", "
"GetLastError=%d)\n", pid, group, group_mask,
GetLastError());
goto err;
}
err:
if (handle)
CloseHandle(handle);
return ret;
}
static inline void cpu_to_row_offset(int cpu, int *row, int *offset)
{
*row = cpu / FIO_CPU_MASK_STRIDE;
*offset = cpu << FIO_CPU_MASK_STRIDE * *row;
}
static inline int fio_cpuset_init(os_cpu_mask_t *mask)
{
for (int i = 0; i < FIO_CPU_MASK_ROWS; i++)
mask->row[i] = 0;
return 0;
}
/*
* fio_getaffinity() should not be called once a fio_setaffinity() call has
* been made because fio_setaffinity() may put the process into multiple
* processor groups
*/
static inline int fio_getaffinity(int pid, os_cpu_mask_t *mask)
{
int ret;
int row, offset, end, group, group_size, group_start_cpu;
DWORD_PTR process_mask, system_mask;
HANDLE handle;
PUSHORT current_groups;
USHORT group_count;
WORD online_groups;
ret = -1;
current_groups = NULL;
handle = OpenProcess(PROCESS_QUERY_INFORMATION, TRUE, pid);
if (handle == NULL) {
log_err("fio_getaffinity: failed to get handle for pid %d\n",
pid);
goto err;
}
group_count = 1;
/*
* GetProcessGroupAffinity() seems to expect more than the natural
* alignment for a USHORT from the area pointed to by current_groups so
* arrange for maximum alignment by allocating via malloc()
*/
current_groups = malloc(sizeof(USHORT));
if (!current_groups) {
log_err("fio_getaffinity: malloc failed\n");
goto err;
}
if (GetProcessGroupAffinity(handle, &group_count, current_groups) == 0) {
/* NB: we also fail here if we are a multi-group process */
log_err("fio_getaffinity: failed to get single group affinity for pid %d\n", pid);
goto err;
}
GetProcessAffinityMask(handle, &process_mask, &system_mask);
/* Convert group and group relative mask to full CPU mask */
online_groups = GetActiveProcessorGroupCount();
if (online_groups == 0) {
log_err("fio_getaffinity: error retrieving total processor groups\n");
goto err;
}
group = 0;
group_start_cpu = 0;
group_size = 0;
dprint(FD_PROCESS, "current_groups=%d group_count=%d\n",
current_groups[0], group_count);
while (true) {
group_size = GetActiveProcessorCount(group);
if (group_size == 0) {
log_err("fio_getaffinity: error retrieving size of "
"processor group %d\n", group);
goto err;
} else if (group >= current_groups[0] || group >= online_groups)
break;
else {
group_start_cpu += group_size;
group++;
}
}
if (group != current_groups[0]) {
log_err("fio_getaffinity: could not find processor group %d\n",
current_groups[0]);
goto err;
}
dprint(FD_PROCESS, "group_start_cpu=%d, group size=%u\n",
group_start_cpu, group_size);
if ((group_start_cpu + group_size) >= FIO_MAX_CPUS) {
log_err("fio_getaffinity failed: current CPU affinity (group "
"%d, group_start_cpu %d, group_size %d) extends "
"beyond mask's highest CPU (%d)\n", group,
group_start_cpu, group_size, FIO_MAX_CPUS);
goto err;
}
fio_cpuset_init(mask);
cpu_to_row_offset(group_start_cpu, &row, &offset);
mask->row[row] = process_mask;
mask->row[row] <<= offset;
end = offset + group_size;
if (end > FIO_CPU_MASK_STRIDE) {
int needed;
uint64_t needed_mask;
needed = FIO_CPU_MASK_STRIDE - end;
needed_mask = (uint64_t)-1 >> (FIO_CPU_MASK_STRIDE - needed);
row++;
mask->row[row] = process_mask;
mask->row[row] >>= needed;
mask->row[row] &= needed_mask;
}
ret = 0;
err:
if (handle)
CloseHandle(handle);
if (current_groups)
free(current_groups);
return ret;
}
static inline void fio_cpu_clear(os_cpu_mask_t *mask, int cpu)
{
int row, offset;
cpu_to_row_offset(cpu, &row, &offset);
mask->row[row] &= ~(1ULL << offset);
}
static inline void fio_cpu_set(os_cpu_mask_t *mask, int cpu)
{
int row, offset;
cpu_to_row_offset(cpu, &row, &offset);
mask->row[row] |= 1ULL << offset;
}
static inline int fio_cpu_isset(os_cpu_mask_t *mask, int cpu)
{
int row, offset;
cpu_to_row_offset(cpu, &row, &offset);
return (mask->row[row] & (1ULL << offset)) != 0;
}
static inline int fio_cpu_count(os_cpu_mask_t *mask)
{
int count = 0;
for (int i = 0; i < FIO_CPU_MASK_ROWS; i++)
count += hweight64(mask->row[i]);
return count;
}
static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
{
return 0;
}