-
Notifications
You must be signed in to change notification settings - Fork 71
/
thread.c
611 lines (516 loc) · 21 KB
/
thread.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
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <sched.h>
#include <sys/eventfd.h>
#include "common.h"
#include "control_plane.h"
#include "cpuinfo.h"
#include "flow.h"
#include "histo.h"
#include "loop.h"
#include "percentiles.h"
#include "pq.h"
#include "print.h"
#include "rusage.h"
#include "snaps.h"
#include "stats.h"
#include "thread.h"
#ifndef NO_LIBNUMA
#include <libnuma/numa.h>
#include <libnuma/numaint.h>
#endif
/* Callbacks for the neper_stats sumforeach() function. */
static int
fn_count_events(struct neper_stat *stat, void *ptr)
{
const struct neper_histo *histo = stat->histo(stat);
return neper_histo_samples(histo);
}
static int
fn_count_snaps(struct neper_stat *stat, void *ptr)
{
const struct neper_snaps *snaps = stat->snaps(stat);
return neper_snaps_count(snaps);
}
static int
fn_enq(struct neper_stat *stat, void *ptr)
{
struct neper_pq *pq = ptr;
pq->enq(pq, stat);
return 0;
}
void
thread_resize_flows_or_die(struct thread *ts, int flowid)
{
int new_max = (ts->flow_space + 1) * 2;
struct flow **new_flows;
if (new_max <= flowid)
new_max = flowid + 1;
new_flows = malloc_or_die (sizeof(struct flow *) * new_max, ts->cb);
int i;
for (i = 0; i < ts->flow_space; i++)
new_flows[i] = ts->flows[i];
for (; i < new_max; i++)
new_flows[i] = NULL;
free(ts->flows);
ts->flows = new_flows;
ts->flow_space = new_max;
}
/* Push out any final measurements */
void
thread_flush_stat(struct thread *ts) {
int i;
for (i = 0; i < ts->flow_space; i++) {
struct flow *f = ts->flows[i];
if (f == NULL)
continue;
struct neper_stat *stat = flow_stat(f);
if (stat != NULL)
stat->event(ts, stat, 0, true, NULL);
}
}
/* Disassociate flow from thread */
void
thread_clear_flow_or_die(struct thread *ts, struct flow *f)
{
int flowid = flow_id(f);
if (flowid >= ts->flow_space) {
LOG_FATAL(ts->cb, "thread %d freeing unknown flow %d - %p",
ts->index, flowid, f);
}
if (ts->flows[flowid] != f) {
LOG_FATAL(ts->cb, "thread %d freeing mismatched flow %d "
"- %p vs %p",
ts->index, flowid, f, ts->flows[flowid]);
}
ts->flows[flowid] = NULL;
}
/* Associate flow with thread */
void
thread_store_flow_or_die(struct thread *ts, struct flow *f) {
int flowid = flow_id(f);
if (flowid >= ts->flow_space) {
thread_resize_flows_or_die(ts, flowid);
}
if (ts->flows[flowid] != NULL) {
LOG_FATAL(ts->cb, "thread %d duplicate flow %d "
"- new %p vs old %p", ts->index,
flowid, f, ts->flows[flowid]);
}
ts->flows[flowid] = f;
}
/* Return the total number of events across all threads. */
int thread_stats_events(const struct thread *ts)
{
const struct options *opts = ts[0].opts;
int i, sum = 0;
for (i = 0; i < opts->num_threads; i++) {
struct neper_stats *stats = ts[i].stats;
sum += stats->sumforeach(stats, fn_count_events, NULL);
}
return sum;
}
/* Return the total number of snapshots across all threads. */
int thread_stats_snaps(const struct thread *ts)
{
const struct options *opts = ts[0].opts;
int i, sum = 0;
for (i = 0; i < opts->num_threads; i++) {
struct neper_stats *stats = ts[i].stats;
sum += stats->sumforeach(stats, fn_count_snaps, NULL);
}
return sum;
}
/*
* Return the total number of flows for which snapshots have been collected
* across all threads.
*/
static int thread_stats_flows(const struct thread *ts)
{
const struct options *opts = ts[0].opts;
int i, num_flows = 0;
for (i = 0; i < opts->num_threads; i++)
num_flows += ts[i].stats->flows(ts[i].stats);
return num_flows;
}
/*
* Create a priority queue, fill it with all stats structs across all threads,
* return it to the caller.
*/
struct neper_pq *thread_stats_pq(struct thread *ts)
{
const struct options *opts = ts[0].opts;
struct callbacks *cb = ts[0].cb;
int i;
int num_snaps = thread_stats_snaps(ts);
PRINT(cb, "num_samples", "%d", num_snaps);
if (num_snaps < 2) {
LOG_ERROR(cb, "insufficient number of samples, "
"needed 2 or more, got %d", num_snaps);
return NULL;
}
struct neper_pq *pq = neper_pq(neper_stat_cmp, thread_stats_flows(ts),
cb);
for (i = 0; i < opts->num_threads; i++)
ts[i].stats->sumforeach(ts[i].stats, fn_enq, pq);
return pq;
}
static int flows_in_thread(const struct thread *t)
{
const struct options *opts = t->opts;
const int num_flows = opts->num_flows;
const int num_threads = opts->num_threads;
const int tid = t->index;
const int min_flows_per_thread = num_flows / num_threads;
const int remaining_flows = num_flows % num_threads;
const int flows_in_this_thread = tid < remaining_flows ?
min_flows_per_thread + 1 :
min_flows_per_thread;
return flows_in_this_thread;
}
static int first_flow_in_thread(const struct thread *t)
{
const struct options *opts = t->opts;
const int num_flows = opts->num_flows;
const int num_threads = opts->num_threads;
const int tid = t->index;
const int a = num_flows / num_threads;
const int b = num_flows % num_threads;
const int c = MIN(b, tid);
return tid * a + c;
}
/* Fill out cpuset array with allowed CPUs. See get_cpuinfo() for more details.
* input params: cpuset: array of cpu_set_t to be filled
* cb: general callback struct
* return: number of filled cpu_set_t in array cpuset
*/
static int get_cpuset(cpu_set_t *cpuset, struct callbacks *cb)
{
int i, j = 0, n;
struct cpuinfo *cpus;
cpu_set_t allowed_cpus;
int len = 0;
char *allowed_cores;
int start = -1, end = -1;
CPU_ZERO(&allowed_cpus);
if (sched_getaffinity(0, sizeof(allowed_cpus), &allowed_cpus))
PLOG_FATAL(cb, "sched_getaffinity");
cpus = calloc(CPU_SETSIZE, sizeof(struct cpuinfo));
if (!cpus)
PLOG_FATAL(cb, "calloc cpus");
n = get_cpuinfo(cpus, CPU_SETSIZE, cb);
if (n == -1)
PLOG_FATAL(cb, "get_cpuinfo");
if (n == 0)
LOG_FATAL(cb, "no cpu found in /proc/cpuinfo");
/* Assume each processor ID takes max 3 chars + ','
* Last one does not have ',' so we have room for '\0'
*/
allowed_cores = calloc(n, 4);
if (!allowed_cores)
PLOG_FATAL(cb, "calloc allowed_cores");
for (i = 0; i < n; i++) {
if (CPU_ISSET(cpus[i].processor, &allowed_cpus)) {
CPU_ZERO(&cpuset[j]);
CPU_SET(cpus[i].processor, &cpuset[j]);
j++;
if (start < 0)
start = end = i;
else if (i == end + 1)
end = i;
}
if (start >= 0 && (i != end || i == n - 1)) {
len += sprintf(allowed_cores + len,
end == start ? "%s%d" : "%s%d-%d",
len ? "," : "", start, end);
start = -1;
}
}
PRINT(cb, "allowed_core_num", "%d", j);
PRINT(cb, "allowed_cores", "%s", allowed_cores);
free(allowed_cores);
free(cpus);
return j;
}
void thread_time_start(struct thread *t, const struct timespec *now)
{
pthread_mutex_lock(t->time_start_mutex);
if (timespec_is_zero(t->time_start)) {
LOG_INFO(t->cb, "Setting time_start in thread %d", t->index);
getrusage_enhanced(RUSAGE_SELF, t->rusage_start);
*t->time_start = *now;
}
pthread_mutex_unlock(t->time_start_mutex);
}
#ifndef NO_LIBNUMA
static void get_numa_allowed_cpus(struct callbacks *cb, int numa_idx,
cpu_set_t *numa_allowed_cpus)
{
cpu_set_t allowed_cpus;
cpu_set_t numa_cpus;
int i;
CPU_ZERO(&allowed_cpus);
if (sched_getaffinity(0, sizeof(allowed_cpus), &allowed_cpus))
PLOG_FATAL(cb, "sched_getaffinity");
CPU_ZERO(&numa_cpus);
for (i = 0; i < numa_num_configured_cpus(); i++) {
if (numa_node_of_cpu(i) == numa_idx)
CPU_SET(i, &numa_cpus);
}
CPU_ZERO(numa_allowed_cpus);
CPU_AND(numa_allowed_cpus, &allowed_cpus, &numa_cpus);
}
#endif
void start_worker_threads(struct options *opts, struct callbacks *cb,
struct thread *t, void *(*thread_func)(void *),
const struct neper_fn *fn,
pthread_barrier_t *ready, struct timespec *time_start,
pthread_mutex_t *time_start_mutex,
struct rusage *rusage_start, struct addrinfo *ai,
struct countdown_cond *data_pending,
pthread_cond_t *loop_init_c,
pthread_mutex_t *loop_init_m,
int *loop_inited)
{
cpu_set_t *cpuset;
pthread_attr_t attr;
int s, i, allowed_cores = 0;
cpuset = calloc(CPU_SETSIZE, sizeof(cpu_set_t));
if (!cpuset)
PLOG_FATAL(cb, "calloc cpuset");
s = pthread_barrier_init(ready, NULL, opts->num_threads + 1);
if (s != 0)
LOG_FATAL(cb, "pthread_barrier_init: %s", strerror(s));
s = pthread_attr_init(&attr);
if (s != 0)
LOG_FATAL(cb, "pthread_attr_init: %s", strerror(s));
for (i = 0; i < opts->num_threads; i++) {
t[i].index = i;
t[i].fn = fn;
t[i].ai_socktype = fn->fn_type;
t[i].ai = copy_addrinfo(ai);
t[i].epfd = epoll_create1_or_die(cb);
t[i].stop_efd = eventfd(0, 0);
if (t[i].stop_efd == -1)
PLOG_FATAL(cb, "eventfd");
t[i].opts = opts;
t[i].cb = cb;
t[i].num_local_hosts = count_local_hosts(opts);
t[i].flow_first = first_flow_in_thread(&t[i]);
t[i].flow_limit = flows_in_thread(&t[i]);
t[i].flow_count = 0;
t[i].local_hosts = parse_local_hosts(opts, t[i].num_local_hosts,
cb);
t[i].ready = ready;
t[i].time_start = time_start;
t[i].time_start_mutex = time_start_mutex;
t[i].rusage_start = rusage_start;
t[i].stats = neper_stats_init(cb);
t[i].rusage = neper_rusage(opts->interval);
t[i].data_pending = data_pending;
t[i].loop_inited = loop_inited;
t[i].loop_init_c = loop_init_c;
t[i].loop_init_m = loop_init_m;
t[i].flows = NULL;
t[i].flow_space = 0;
/* support for rate limited flows */
t[i].rl.pending_flows = calloc_or_die(t[i].flow_limit,
sizeof(struct flow *), t->cb);
t[i].rl.pending_count = 0;
t[i].rl.next_event = ~0ULL;
s = pthread_create(&t[i].id, &attr, thread_func, &t[i]);
if (s != 0)
LOG_FATAL(cb, "pthread_create: %s", strerror(s));
if (opts->pin_cpu) {
if (allowed_cores == 0) {
allowed_cores = get_cpuset(cpuset, cb);
LOG_INFO(cb, "Number of allowed_cores = %d", allowed_cores);
}
s = pthread_setaffinity_np(t[i].id,
sizeof(cpu_set_t),
&cpuset[i % allowed_cores]);
if (s != 0) {
LOG_FATAL(cb, "pthread_setaffinity_np: %s",
strerror(s));
}
}
#ifndef NO_LIBNUMA
else if (opts->pin_numa) {
int num_numa = numa_num_configured_nodes();
cpu_set_t numa_allowed_cpus;
get_numa_allowed_cpus(cb, i % num_numa,
&numa_allowed_cpus);
s = pthread_setaffinity_np(t[i].id,
sizeof(cpu_set_t),
&numa_allowed_cpus);
if (s != 0) {
LOG_FATAL(cb, "pthread_setaffinity_np: %s",
strerror(s));
}
}
#endif
}
s = pthread_attr_destroy(&attr);
if (s != 0)
LOG_FATAL(cb, "pthread_attr_destroy: %s", strerror(s));
free(cpuset);
pthread_barrier_wait(ready);
LOG_INFO(cb, "worker threads are ready");
}
void stop_worker_threads(struct callbacks *cb, int num_threads,
struct thread *t, pthread_barrier_t *ready,
pthread_cond_t *loop_init_c,
pthread_mutex_t *loop_init_m)
{
int i, s;
uint64_t total_sleep = 0, total_delay = 0, total_reschedule = 0;
/* tell them to stop */
for (i = 0; i < num_threads; i++) {
if (eventfd_write(t[i].stop_efd, 1))
PLOG_FATAL(cb, "eventfd_write");
else
LOG_INFO(cb, "told thread %d to stop", i);
}
/* wait for them to stop */
for (i = 0; i < num_threads; i++) {
s = pthread_join(t[i].id, NULL);
if (s != 0)
LOG_FATAL(cb, "pthread_join: %s", strerror(s));
else
LOG_INFO(cb, "joined thread %d", i);
total_delay += t[i].rl.delay_count;
total_sleep += t[i].rl.sleep_count;
total_reschedule += t[i].rl.reschedule_count;
}
LOG_INFO(cb, "reschedule=%lu", total_reschedule);
LOG_INFO(cb, "delay=%lu", total_delay);
LOG_INFO(cb, "sleep=%lu", total_sleep);
s = pthread_barrier_destroy(ready);
if (s != 0)
LOG_FATAL(cb, "pthread_barrier_destroy: %s", strerror(s));
s = pthread_cond_destroy(loop_init_c);
if (s != 0)
LOG_FATAL(cb, "pthread_cond_destroy: %s", strerror(s));
s = pthread_mutex_destroy(loop_init_m);
if (s != 0)
LOG_FATAL(cb, "pthread_mutex_destroy: %s", strerror(s));
}
static void free_worker_threads(int num_threads, struct thread *t)
{
int i;
for (i = 0; i < num_threads; i++) {
do_close(t[i].stop_efd);
free(t[i].ai);
t[i].rusage->fini(t[i].rusage);
free(t[i].rl.pending_flows);
free(t[i].f_mbuf);
free(t[i].flows);
}
free(t);
}
int run_main_thread(struct options *opts, struct callbacks *cb,
const struct neper_fn *fn)
{
void *(*thread_func)(void *) = (void *)loop;
pthread_barrier_t ready_barrier; /* shared by threads */
struct timespec time_start = {0}; /* shared by flows */
pthread_mutex_t time_start_mutex = PTHREAD_MUTEX_INITIALIZER;
struct rusage rusage_start; /* updated when first packet comes */
struct rusage rusage_end; /* local to this function, never pass out */
struct addrinfo *ai;
struct thread *ts; /* worker threads */
struct control_plane *cp;
struct countdown_cond *data_pending;
/* Set the options used for capturing cpu usage */
if (opts->stime_use_proc)
set_getrusage_enhanced(opts->stime_use_proc, opts->num_threads);
if (opts->delay)
prctl(PR_SET_TIMERSLACK, 1UL);
pthread_cond_t loop_init_c = PTHREAD_COND_INITIALIZER;
pthread_mutex_t loop_init_m = PTHREAD_MUTEX_INITIALIZER;
int loop_inited = 0;
if (opts->test_length > 0) {
PRINT(cb, "total_run_time", "%d", opts->test_length);
data_pending = NULL;
} else {
PRINT(cb, "total_transactions", "%d", -(opts->test_length));
data_pending = calloc(1, sizeof(struct countdown_cond));
countdown_cond_init(data_pending, -(opts->test_length));
}
if (opts->dry_run)
return 0;
#ifndef NO_LIBNUMA
if (opts->pin_numa && numa_available() == -1)
PLOG_FATAL(cb, "libnuma not available");
#endif
cp = control_plane_create(opts, cb, data_pending, fn);
control_plane_start(cp, &ai);
/* if nonzero, make the client wait before the threads are started. */
if (opts->client)
sleep(opts->wait_start);
/* start threads *after* control plane is up, to reuse addrinfo. */
reset_port(ai, atoi(opts->port), cb);
ts = calloc(opts->num_threads, sizeof(struct thread));
start_worker_threads(opts, cb, ts, thread_func, fn, &ready_barrier,
&time_start, &time_start_mutex, &rusage_start, ai,
data_pending, &loop_init_c,
&loop_init_m, &loop_inited);
free(ai);
LOG_INFO(cb, "started worker threads");
/* rusage_start is now exposed to other threads */
pthread_mutex_lock(&time_start_mutex);
getrusage_enhanced(RUSAGE_SELF, &rusage_start); /* rusage start! */
pthread_mutex_unlock(&time_start_mutex);
control_plane_wait_until_done(cp, ts);
getrusage_enhanced(RUSAGE_SELF, &rusage_end); /* rusage end! */
stop_worker_threads(cb, opts->num_threads, ts, &ready_barrier,
&loop_init_c, &loop_init_m);
LOG_INFO(cb, "stopped worker threads");
PRINT(cb, "invalid_secret_count", "%d", control_plane_incidents(cp));
/* rusage_start and time_start were (are?) visible to other threads */
pthread_mutex_lock(&time_start_mutex);
/* begin printing rusage */
PRINT(cb, "time_start", "%ld.%09ld", time_start.tv_sec,
time_start.tv_nsec);
PRINT(cb, "utime_start", "%ld.%06ld", rusage_start.ru_utime.tv_sec,
rusage_start.ru_utime.tv_usec);
PRINT(cb, "utime_end", "%ld.%06ld", rusage_end.ru_utime.tv_sec,
rusage_end.ru_utime.tv_usec);
PRINT(cb, "stime_start", "%ld.%06ld", rusage_start.ru_stime.tv_sec,
rusage_start.ru_stime.tv_usec);
PRINT(cb, "stime_end", "%ld.%06ld", rusage_end.ru_stime.tv_sec,
rusage_end.ru_stime.tv_usec);
PRINT(cb, "maxrss_start", "%ld", rusage_start.ru_maxrss);
PRINT(cb, "maxrss_end", "%ld", rusage_end.ru_maxrss);
PRINT(cb, "minflt_start", "%ld", rusage_start.ru_minflt);
PRINT(cb, "minflt_end", "%ld", rusage_end.ru_minflt);
PRINT(cb, "majflt_start", "%ld", rusage_start.ru_majflt);
PRINT(cb, "majflt_end", "%ld", rusage_end.ru_majflt);
PRINT(cb, "nvcsw_start", "%ld", rusage_start.ru_nvcsw);
PRINT(cb, "nvcsw_end", "%ld", rusage_end.ru_nvcsw);
PRINT(cb, "nivcsw_start", "%ld", rusage_start.ru_nivcsw);
PRINT(cb, "nivcsw_end", "%ld", rusage_end.ru_nivcsw);
pthread_mutex_unlock(&time_start_mutex);
/* end printing rusage */
int ret = fn->fn_report(ts);
control_plane_stop(cp);
control_plane_destroy(cp);
PRINT(cb, "local_throughput", "%lld", opts->local_rate);
PRINT(cb, "remote_throughput", "%lld", opts->remote_rate);
free_worker_threads(opts->num_threads, ts);
free(data_pending);
return ret;
}