forked from apache/brpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbthread_fd_unittest.cpp
434 lines (387 loc) · 11.8 KB
/
bthread_fd_unittest.cpp
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
// Copyright (c) 2014 Baidu, Inc.
// Author: Ge,Jun ([email protected])
// Date: Sun Jul 13 15:04:18 CST 2014
#include <sys/epoll.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/utsname.h> // uname
#include <fcntl.h>
#include <gtest/gtest.h>
#include "butil/gperftools_profiler.h"
#include "butil/time.h"
#include "butil/macros.h"
#include "butil/fd_utility.h"
#include "butil/logging.h"
#include "bthread/task_control.h"
#include "bthread/task_group.h"
#include "bthread/interrupt_pthread.h"
#include "bthread/bthread.h"
#include "bthread/unstable.h"
#ifndef NDEBUG
namespace bthread {
extern butil::atomic<int> break_nums;
extern TaskControl* global_task_control;
int stop_and_join_epoll_threads();
}
#endif
namespace {
TEST(FDTest, read_kernel_version) {
utsname name;
uname(&name);
std::cout << "sysname=" << name.sysname << std::endl
<< "nodename=" << name.nodename << std::endl
<< "release=" << name.release << std::endl
<< "version=" << name.version << std::endl
<< "machine=" << name.machine << std::endl;
}
#define RUN_CLIENT_IN_BTHREAD 1
//#define USE_BLOCKING_EPOLL 1
//#define RUN_EPOLL_IN_BTHREAD 1
//#define CREATE_THREAD_TO_PROCESS 1
volatile bool stop = false;
struct SocketMeta {
int fd;
int epfd;
};
struct BAIDU_CACHELINE_ALIGNMENT ClientMeta {
int fd;
size_t count;
size_t times;
};
struct EpollMeta {
int epfd;
};
const size_t NCLIENT = 30;
void* process_thread(void* arg) {
SocketMeta* m = (SocketMeta*)arg;
size_t count;
//printf("begin to process fd=%d\n", m->fd);
ssize_t n = read(m->fd, &count, sizeof(count));
if (n != sizeof(count)) {
LOG(FATAL) << "Should not happen in this test";
return NULL;
}
count += NCLIENT;
//printf("write result=%lu to fd=%d\n", count, m->fd);
if (write(m->fd, &count, sizeof(count)) != sizeof(count)) {
LOG(FATAL) << "Should not happen in this test";
return NULL;
}
#ifdef CREATE_THREAD_TO_PROCESS
epoll_event evt = { EPOLLIN | EPOLLONESHOT, { m } };
if (epoll_ctl(m->epfd, EPOLL_CTL_MOD, m->fd, &evt) < 0) {
epoll_ctl(m->epfd, EPOLL_CTL_ADD, m->fd, &evt);
}
#endif
return NULL;
}
void* epoll_thread(void* arg) {
bthread_usleep(1);
EpollMeta* m = (EpollMeta*)arg;
const int epfd = m->epfd;
epoll_event e[32];
while (!stop) {
#ifndef USE_BLOCKING_EPOLL
const int n = epoll_wait(epfd, e, ARRAY_SIZE(e), 0);
if (stop) {
break;
}
if (n == 0) {
bthread_fd_wait(epfd, EPOLLIN);
continue;
}
#else
const int n = epoll_wait(epfd, e, ARRAY_SIZE(e), -1);
if (stop) {
break;
}
if (n == 0) {
continue;
}
#endif
if (n < 0) {
if (EINTR == errno) {
continue;
}
PLOG(FATAL) << "Fail to epoll_wait";
break;
}
#ifdef CREATE_THREAD_TO_PROCESS
bthread_fvec vec[n];
for (int i = 0; i < n; ++i) {
vec[i].fn = process_thread;
vec[i].arg = e[i].data.ptr;
}
bthread_t tid[n];
bthread_startv(tid, vec, n, &BTHREAD_ATTR_SMALL);
#else
for (int i = 0; i < n; ++i) {
process_thread(e[i].data.ptr);
}
#endif
}
return NULL;
}
void* client_thread(void* arg) {
ClientMeta* m = (ClientMeta*)arg;
for (size_t i = 0; i < m->times; ++i) {
if (write(m->fd, &m->count, sizeof(m->count)) != sizeof(m->count)) {
LOG(FATAL) << "Should not happen in this test";
return NULL;
}
#ifdef RUN_CLIENT_IN_BTHREAD
ssize_t rc;
do {
const int wait_rc = bthread_fd_wait(m->fd, EPOLLIN);
EXPECT_EQ(0, wait_rc) << berror();
rc = read(m->fd, &m->count, sizeof(m->count));
} while (rc < 0 && errno == EAGAIN);
#else
ssize_t rc = read(m->fd, &m->count, sizeof(m->count));
#endif
if (rc != sizeof(m->count)) {
PLOG(FATAL) << "Should not happen in this test, rc=" << rc;
return NULL;
}
}
return NULL;
}
inline uint32_t fmix32 ( uint32_t h ) {
h ^= h >> 16;
h *= 0x85ebca6b;
h ^= h >> 13;
h *= 0xc2b2ae35;
h ^= h >> 16;
return h;
}
// Disable temporarily due to epoll's bug. The bug is fixed by
// a kernel patch that lots of machines currently don't have
TEST(FDTest, ping_pong) {
#ifndef NDEBUG
bthread::break_nums = 0;
#endif
const size_t REP = 30000;
const size_t NEPOLL = 2;
int epfd[NEPOLL];
bthread_t eth[NEPOLL];
int fds[2 * NCLIENT];
bthread_t cth[NCLIENT];
ClientMeta* cm[NCLIENT];
for (size_t i = 0; i < NEPOLL; ++i) {
epfd[i] = epoll_create(1024);
ASSERT_GT(epfd[i], 0);
}
for (size_t i = 0; i < NCLIENT; ++i) {
ASSERT_EQ(0, socketpair(AF_UNIX, SOCK_STREAM, 0, fds + 2 * i));
//printf("Created fd=%d,%d i=%lu\n", fds[2*i], fds[2*i+1], i);
SocketMeta* m = new SocketMeta;
m->fd = fds[i * 2];
m->epfd = epfd[fmix32(i) % NEPOLL];
ASSERT_EQ(0, fcntl(m->fd, F_SETFL, fcntl(m->fd, F_GETFL, 0) | O_NONBLOCK));
#ifdef CREATE_THREAD_TO_PROCESS
epoll_event evt = { EPOLLIN | EPOLLONESHOT, { m } };
#else
epoll_event evt = { EPOLLIN, { m } };
#endif
ASSERT_EQ(0, epoll_ctl(m->epfd, EPOLL_CTL_ADD, m->fd, &evt));
cm[i] = new ClientMeta;
cm[i]->fd = fds[i * 2 + 1];
cm[i]->count = i;
cm[i]->times = REP;
#ifdef RUN_CLIENT_IN_BTHREAD
butil::make_non_blocking(cm[i]->fd);
ASSERT_EQ(0, bthread_start_urgent(&cth[i], NULL, client_thread, cm[i]));
#else
ASSERT_EQ(0, pthread_create(&cth[i], NULL, client_thread, cm[i]));
#endif
}
ProfilerStart("ping_pong.prof");
butil::Timer tm;
tm.start();
for (size_t i = 0; i < NEPOLL; ++i) {
EpollMeta *em = new EpollMeta;
em->epfd = epfd[i];
#ifdef RUN_EPOLL_IN_BTHREAD
eth[i] = bthread_start_urgent(epoll_thread, em, NULL);
#else
ASSERT_EQ(0, pthread_create(ð[i], NULL, epoll_thread, em));
#endif
}
for (size_t i = 0; i < NCLIENT; ++i) {
#ifdef RUN_CLIENT_IN_BTHREAD
bthread_join(cth[i], NULL);
#else
pthread_join(cth[i], NULL);
#endif
ASSERT_EQ(i + REP * NCLIENT, cm[i]->count);
}
tm.stop();
ProfilerStop();
LOG(INFO) << "tid=" << REP*NCLIENT*1000000L/tm.u_elapsed();
stop = true;
for (size_t i = 0; i < NEPOLL; ++i) {
epoll_event evt = { EPOLLOUT, { NULL } };
ASSERT_EQ(0, epoll_ctl(epfd[i], EPOLL_CTL_ADD, 0, &evt));
#ifdef RUN_EPOLL_IN_BTHREAD
bthread_join(eth[i], NULL);
#else
pthread_join(eth[i], NULL);
#endif
}
//bthread::stop_and_join_epoll_threads();
bthread_usleep(100000);
#ifndef NDEBUG
std::cout << "break_nums=" << bthread::break_nums << std::endl;
#endif
}
TEST(FDTest, mod_closed_fd) {
// Conclusion:
// If fd is never added into epoll, MOD returns ENOENT
// If fd is inside epoll and valid, MOD returns 0
// If fd is closed and not-reused, MOD returns EBADF
// If fd is closed and reused, MOD returns ENOENT again
const int epfd = epoll_create(1024);
int new_fd[2];
int fd[2];
ASSERT_EQ(0, pipe(fd));
epoll_event e = { EPOLLIN, { NULL } };
errno = 0;
ASSERT_EQ(-1, epoll_ctl(epfd, EPOLL_CTL_MOD, fd[0], &e));
ASSERT_EQ(ENOENT, errno);
ASSERT_EQ(0, epoll_ctl(epfd, EPOLL_CTL_ADD, fd[0], &e));
// mod after add
ASSERT_EQ(0, epoll_ctl(epfd, EPOLL_CTL_MOD, fd[0], &e));
// mod after mod
ASSERT_EQ(0, epoll_ctl(epfd, EPOLL_CTL_MOD, fd[0], &e));
ASSERT_EQ(0, close(fd[0]));
ASSERT_EQ(0, close(fd[1]));
errno = 0;
ASSERT_EQ(-1, epoll_ctl(epfd, EPOLL_CTL_MOD, fd[0], &e));
ASSERT_EQ(EBADF, errno) << berror();
ASSERT_EQ(0, pipe(new_fd));
ASSERT_EQ(fd[0], new_fd[0]);
ASSERT_EQ(fd[1], new_fd[1]);
errno = 0;
ASSERT_EQ(-1, epoll_ctl(epfd, EPOLL_CTL_MOD, fd[0], &e));
ASSERT_EQ(ENOENT, errno) << berror();
ASSERT_EQ(0, close(epfd));
}
TEST(FDTest, add_existing_fd) {
const int epfd = epoll_create(1024);
epoll_event e = { EPOLLIN, { NULL } };
ASSERT_EQ(0, epoll_ctl(epfd, EPOLL_CTL_ADD, 0, &e));
errno = 0;
ASSERT_EQ(-1, epoll_ctl(epfd, EPOLL_CTL_ADD, 0, &e));
ASSERT_EQ(EEXIST, errno);
ASSERT_EQ(0, close(epfd));
}
void* epoll_waiter(void* arg) {
epoll_event e;
if (1 == epoll_wait((int)(intptr_t)arg, &e, 1, -1)) {
std::cout << e.events << std::endl;
}
std::cout << pthread_self() << " quits" << std::endl;
return NULL;
}
TEST(FDTest, interrupt_pthread) {
const int epfd = epoll_create(1024);
pthread_t th, th2;
ASSERT_EQ(0, pthread_create(&th, NULL, epoll_waiter, (void*)(intptr_t)epfd));
ASSERT_EQ(0, pthread_create(&th2, NULL, epoll_waiter, (void*)(intptr_t)epfd));
bthread_usleep(100000L);
std::cout << "wake up " << th << std::endl;
bthread::interrupt_pthread(th);
bthread_usleep(100000L);
std::cout << "wake up " << th2 << std::endl;
bthread::interrupt_pthread(th2);
pthread_join(th, NULL);
pthread_join(th2, NULL);
}
void* close_the_fd(void* arg) {
bthread_usleep(10000/*10ms*/);
EXPECT_EQ(0, bthread_close(*(int*)arg));
return NULL;
}
TEST(FDTest, invalid_epoll_events) {
errno = 0;
ASSERT_EQ(-1, bthread_fd_wait(-1, EPOLLIN));
ASSERT_EQ(EINVAL, errno);
errno = 0;
ASSERT_EQ(-1, bthread_fd_timedwait(-1, EPOLLIN, NULL));
ASSERT_EQ(EINVAL, errno);
int fds[2];
ASSERT_EQ(0, pipe(fds));
ASSERT_EQ(-1, bthread_fd_wait(fds[0], EPOLLET));
ASSERT_EQ(EINVAL, errno);
bthread_t th;
ASSERT_EQ(0, bthread_start_urgent(&th, NULL, close_the_fd, &fds[1]));
butil::Timer tm;
tm.start();
ASSERT_EQ(0, bthread_fd_wait(fds[0], EPOLLIN | EPOLLET));
tm.stop();
ASSERT_LT(tm.m_elapsed(), 20);
ASSERT_EQ(0, bthread_join(th, NULL));
ASSERT_EQ(0, bthread_close(fds[0]));
}
void* wait_for_the_fd(void* arg) {
timespec ts = butil::milliseconds_from_now(50);
bthread_fd_timedwait(*(int*)arg, EPOLLIN, &ts);
return NULL;
}
TEST(FDTest, timeout) {
int fds[2];
ASSERT_EQ(0, pipe(fds));
pthread_t th;
ASSERT_EQ(0, pthread_create(&th, NULL, wait_for_the_fd, &fds[0]));
bthread_t bth;
ASSERT_EQ(0, bthread_start_urgent(&bth, NULL, wait_for_the_fd, &fds[0]));
butil::Timer tm;
tm.start();
ASSERT_EQ(0, pthread_join(th, NULL));
ASSERT_EQ(0, bthread_join(bth, NULL));
tm.stop();
ASSERT_LT(tm.m_elapsed(), 60);
ASSERT_EQ(0, bthread_close(fds[0]));
ASSERT_EQ(0, bthread_close(fds[1]));
}
TEST(FDTest, close_should_wakeup_waiter) {
int fds[2];
ASSERT_EQ(0, pipe(fds));
bthread_t bth;
ASSERT_EQ(0, bthread_start_urgent(&bth, NULL, wait_for_the_fd, &fds[0]));
butil::Timer tm;
tm.start();
ASSERT_EQ(0, bthread_close(fds[0]));
ASSERT_EQ(0, bthread_join(bth, NULL));
tm.stop();
ASSERT_LT(tm.m_elapsed(), 5);
// Launch again, should quit soon due to EBADF
ASSERT_EQ(-1, bthread_fd_timedwait(fds[0], EPOLLIN, NULL));
ASSERT_EQ(EBADF, errno);
ASSERT_EQ(0, bthread_close(fds[1]));
}
TEST(FDTest, close_definitely_invalid) {
int ec = 0;
ASSERT_EQ(-1, close(-1));
ec = errno;
ASSERT_EQ(-1, bthread_close(-1));
ASSERT_EQ(ec, errno);
}
TEST(FDTest, bthread_close_fd_which_did_not_call_bthread_functions) {
int fds[2];
ASSERT_EQ(0, pipe(fds));
ASSERT_EQ(0, bthread_close(fds[0]));
ASSERT_EQ(0, bthread_close(fds[1]));
}
TEST(FDTest, double_close) {
int fds[2];
ASSERT_EQ(0, pipe(fds));
ASSERT_EQ(0, close(fds[0]));
int ec = 0;
ASSERT_EQ(-1, close(fds[0]));
ec = errno;
ASSERT_EQ(0, bthread_close(fds[1]));
ASSERT_EQ(-1, bthread_close(fds[1]));
ASSERT_EQ(ec, errno);
}
} // namespace