aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/iomgr/pollset_set_test.cc
blob: 0dc75a5f3f5def85856941262a077f3c709b4e0a (plain)
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
/*
 *
 * Copyright 2016 gRPC authors.
 *
 * 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 "src/core/lib/iomgr/port.h"

/* This test only relevant on linux systems where epoll is available */
#ifdef GRPC_LINUX_EPOLL_CREATE1

#include <errno.h>
#include <string.h>
#include <unistd.h>

#include <grpc/grpc.h>
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>

#include "src/core/lib/gpr/useful.h"
#include "src/core/lib/iomgr/ev_posix.h"
#include "src/core/lib/iomgr/iomgr.h"
#include "test/core/util/test_config.h"

/*******************************************************************************
 * test_pollset_set
 */

typedef struct test_pollset_set {
  grpc_pollset_set* pss;
} test_pollset_set;

void init_test_pollset_sets(test_pollset_set* pollset_sets, const int num_pss) {
  for (int i = 0; i < num_pss; i++) {
    pollset_sets[i].pss = grpc_pollset_set_create();
  }
}

void cleanup_test_pollset_sets(test_pollset_set* pollset_sets,
                               const int num_pss) {
  for (int i = 0; i < num_pss; i++) {
    grpc_pollset_set_destroy(pollset_sets[i].pss);
    pollset_sets[i].pss = nullptr;
  }
}

/*******************************************************************************
 * test_pollset
 */

typedef struct test_pollset {
  grpc_pollset* ps;
  gpr_mu* mu;
} test_pollset;

static void init_test_pollsets(test_pollset* pollsets, const int num_pollsets) {
  for (int i = 0; i < num_pollsets; i++) {
    pollsets[i].ps =
        static_cast<grpc_pollset*>(gpr_zalloc(grpc_pollset_size()));
    grpc_pollset_init(pollsets[i].ps, &pollsets[i].mu);
  }
}

static void destroy_pollset(void* p, grpc_error* error) {
  grpc_pollset_destroy(static_cast<grpc_pollset*>(p));
}

static void cleanup_test_pollsets(test_pollset* pollsets,
                                  const int num_pollsets) {
  grpc_closure destroyed;
  for (int i = 0; i < num_pollsets; i++) {
    GRPC_CLOSURE_INIT(&destroyed, destroy_pollset, pollsets[i].ps,
                      grpc_schedule_on_exec_ctx);
    grpc_pollset_shutdown(pollsets[i].ps, &destroyed);

    grpc_core::ExecCtx::Get()->Flush();
    gpr_free(pollsets[i].ps);
    pollsets[i].ps = nullptr;
  }
}

/*******************************************************************************
 * test_fd
 */

typedef struct test_fd {
  grpc_fd* fd;
  grpc_wakeup_fd wakeup_fd;

  bool is_on_readable_called; /* Is on_readable closure is called ? */
  grpc_closure on_readable;   /* Closure to call when this fd is readable */
} test_fd;

void on_readable(void* tfd, grpc_error* error) {
  (static_cast<test_fd*>(tfd))->is_on_readable_called = true;
}

static void reset_test_fd(test_fd* tfd) {
  tfd->is_on_readable_called = false;

  GRPC_CLOSURE_INIT(&tfd->on_readable, on_readable, tfd,
                    grpc_schedule_on_exec_ctx);
  grpc_fd_notify_on_read(tfd->fd, &tfd->on_readable);
}

static void init_test_fds(test_fd* tfds, const int num_fds) {
  for (int i = 0; i < num_fds; i++) {
    GPR_ASSERT(GRPC_ERROR_NONE == grpc_wakeup_fd_init(&tfds[i].wakeup_fd));
    tfds[i].fd = grpc_fd_create(GRPC_WAKEUP_FD_GET_READ_FD(&tfds[i].wakeup_fd),
                                "test_fd");
    reset_test_fd(&tfds[i]);
  }
}

static void cleanup_test_fds(test_fd* tfds, const int num_fds) {
  int release_fd;

  for (int i = 0; i < num_fds; i++) {
    grpc_fd_shutdown(tfds[i].fd,
                     GRPC_ERROR_CREATE_FROM_STATIC_STRING("fd cleanup"));
    grpc_core::ExecCtx::Get()->Flush();

    /* grpc_fd_orphan frees the memory allocated for grpc_fd. Normally it also
     * calls close() on the underlying fd. In our case, we are using
     * grpc_wakeup_fd and we would like to destroy it ourselves (by calling
     * grpc_wakeup_fd_destroy). To prevent grpc_fd from calling close() on the
     * underlying fd, call it with a non-NULL 'release_fd' parameter */
    grpc_fd_orphan(tfds[i].fd, nullptr, &release_fd, false /* already_closed */,
                   "test_fd_cleanup");
    grpc_core::ExecCtx::Get()->Flush();

    grpc_wakeup_fd_destroy(&tfds[i].wakeup_fd);
  }
}

static void make_test_fds_readable(test_fd* tfds, const int num_fds) {
  for (int i = 0; i < num_fds; i++) {
    GPR_ASSERT(GRPC_ERROR_NONE == grpc_wakeup_fd_wakeup(&tfds[i].wakeup_fd));
  }
}

static void verify_readable_and_reset(test_fd* tfds, const int num_fds) {
  for (int i = 0; i < num_fds; i++) {
    /* Verify that the on_readable callback was called */
    GPR_ASSERT(tfds[i].is_on_readable_called);

    /* Reset the tfd[i] structure */
    GPR_ASSERT(GRPC_ERROR_NONE ==
               grpc_wakeup_fd_consume_wakeup(&tfds[i].wakeup_fd));
    reset_test_fd(&tfds[i]);
  }
}

/*******************************************************************************
 * Main tests
 */

/* Test some typical scenarios in pollset_set */
static void pollset_set_test_basic() {
  /* We construct the following structure for this test:
   *
   *        +---> FD0 (Added before PSS1, PS1 and PS2 are added to PSS0)
   *        |
   *        +---> FD5 (Added after PSS1, PS1 and PS2 are added to PSS0)
   *        |
   *        |
   *        |           +---> FD1 (Added before PSS1 is added to PSS0)
   *        |           |
   *        |           +---> FD6 (Added after PSS1 is added to PSS0)
   *        |           |
   *        +---> PSS1--+           +--> FD2 (Added before PS0 is added to PSS1)
   *        |           |           |
   *        |           +---> PS0---+
   *        |                       |
   * PSS0---+                       +--> FD7 (Added after PS0 is added to PSS1)
   *        |
   *        |
   *        |           +---> FD3 (Added before PS1 is added to PSS0)
   *        |           |
   *        +---> PS1---+
   *        |           |
   *        |           +---> FD8 (Added after PS1 added to PSS0)
   *        |
   *        |
   *        |           +---> FD4 (Added before PS2 is added to PSS0)
   *        |           |
   *        +---> PS2---+
   *                    |
   *                    +---> FD9 (Added after PS2 is added to PSS0)
   */
  grpc_core::ExecCtx exec_ctx;
  grpc_pollset_worker* worker;
  grpc_millis deadline;

  test_fd tfds[10];
  test_pollset pollsets[3];
  test_pollset_set pollset_sets[2];
  const int num_fds = GPR_ARRAY_SIZE(tfds);
  const int num_ps = GPR_ARRAY_SIZE(pollsets);
  const int num_pss = GPR_ARRAY_SIZE(pollset_sets);

  init_test_fds(tfds, num_fds);
  init_test_pollsets(pollsets, num_ps);
  init_test_pollset_sets(pollset_sets, num_pss);

  /* Construct the pollset_set/pollset/fd tree (see diagram above) */

  grpc_pollset_set_add_fd(pollset_sets[0].pss, tfds[0].fd);
  grpc_pollset_set_add_fd(pollset_sets[1].pss, tfds[1].fd);

  grpc_pollset_add_fd(pollsets[0].ps, tfds[2].fd);
  grpc_pollset_add_fd(pollsets[1].ps, tfds[3].fd);
  grpc_pollset_add_fd(pollsets[2].ps, tfds[4].fd);

  grpc_pollset_set_add_pollset_set(pollset_sets[0].pss, pollset_sets[1].pss);

  grpc_pollset_set_add_pollset(pollset_sets[1].pss, pollsets[0].ps);
  grpc_pollset_set_add_pollset(pollset_sets[0].pss, pollsets[1].ps);
  grpc_pollset_set_add_pollset(pollset_sets[0].pss, pollsets[2].ps);

  grpc_pollset_set_add_fd(pollset_sets[0].pss, tfds[5].fd);
  grpc_pollset_set_add_fd(pollset_sets[1].pss, tfds[6].fd);

  grpc_pollset_add_fd(pollsets[0].ps, tfds[7].fd);
  grpc_pollset_add_fd(pollsets[1].ps, tfds[8].fd);
  grpc_pollset_add_fd(pollsets[2].ps, tfds[9].fd);

  grpc_core::ExecCtx::Get()->Flush();

  /* Test that if any FD in the above structure is readable, it is observable by
   * doing grpc_pollset_work on any pollset
   *
   *   For every pollset, do the following:
   *     - (Ensure that all FDs are in reset state)
   *     - Make all FDs readable
   *     - Call grpc_pollset_work() on the pollset
   *     - Flush the exec_ctx
   *     - Verify that on_readable call back was called for all FDs (and
   *       reset the FDs)
   * */
  for (int i = 0; i < num_ps; i++) {
    make_test_fds_readable(tfds, num_fds);

    gpr_mu_lock(pollsets[i].mu);
    deadline = grpc_timespec_to_millis_round_up(
        grpc_timeout_milliseconds_to_deadline(2));
    GPR_ASSERT(GRPC_ERROR_NONE ==
               grpc_pollset_work(pollsets[i].ps, &worker, deadline));
    gpr_mu_unlock(pollsets[i].mu);

    grpc_core::ExecCtx::Get()->Flush();

    verify_readable_and_reset(tfds, num_fds);
    grpc_core::ExecCtx::Get()->Flush();
  }

  /* Test tear down */
  grpc_pollset_set_del_fd(pollset_sets[0].pss, tfds[0].fd);
  grpc_pollset_set_del_fd(pollset_sets[0].pss, tfds[5].fd);
  grpc_pollset_set_del_fd(pollset_sets[1].pss, tfds[1].fd);
  grpc_pollset_set_del_fd(pollset_sets[1].pss, tfds[6].fd);
  grpc_core::ExecCtx::Get()->Flush();

  grpc_pollset_set_del_pollset(pollset_sets[1].pss, pollsets[0].ps);
  grpc_pollset_set_del_pollset(pollset_sets[0].pss, pollsets[1].ps);
  grpc_pollset_set_del_pollset(pollset_sets[0].pss, pollsets[2].ps);

  grpc_pollset_set_del_pollset_set(pollset_sets[0].pss, pollset_sets[1].pss);
  grpc_core::ExecCtx::Get()->Flush();

  cleanup_test_fds(tfds, num_fds);
  cleanup_test_pollsets(pollsets, num_ps);
  cleanup_test_pollset_sets(pollset_sets, num_pss);
}

/* Same FD added multiple times to the pollset_set tree */
void pollset_set_test_dup_fds() {
  /* We construct the following structure for this test:
   *
   *        +---> FD0
   *        |
   *        |
   * PSS0---+
   *        |           +---> FD0 (also under PSS0)
   *        |           |
   *        +---> PSS1--+           +--> FD1 (also under PSS1)
   *                    |           |
   *                    +---> PS ---+
   *                    |           |
   *                    |           +--> FD2
   *                    +---> FD1
   */
  grpc_core::ExecCtx exec_ctx;
  grpc_pollset_worker* worker;
  grpc_millis deadline;

  test_fd tfds[3];
  test_pollset pollset;
  test_pollset_set pollset_sets[2];
  const int num_fds = GPR_ARRAY_SIZE(tfds);
  const int num_ps = 1;
  const int num_pss = GPR_ARRAY_SIZE(pollset_sets);

  init_test_fds(tfds, num_fds);
  init_test_pollsets(&pollset, num_ps);
  init_test_pollset_sets(pollset_sets, num_pss);

  /* Construct the structure */
  grpc_pollset_set_add_fd(pollset_sets[0].pss, tfds[0].fd);
  grpc_pollset_set_add_fd(pollset_sets[1].pss, tfds[0].fd);
  grpc_pollset_set_add_fd(pollset_sets[1].pss, tfds[1].fd);

  grpc_pollset_add_fd(pollset.ps, tfds[1].fd);
  grpc_pollset_add_fd(pollset.ps, tfds[2].fd);

  grpc_pollset_set_add_pollset(pollset_sets[1].pss, pollset.ps);
  grpc_pollset_set_add_pollset_set(pollset_sets[0].pss, pollset_sets[1].pss);

  /* Test. Make all FDs readable and make sure that can be observed by doing a
   * grpc_pollset_work on the pollset 'PS' */
  make_test_fds_readable(tfds, num_fds);

  gpr_mu_lock(pollset.mu);
  deadline = grpc_timespec_to_millis_round_up(
      grpc_timeout_milliseconds_to_deadline(2));
  GPR_ASSERT(GRPC_ERROR_NONE ==
             grpc_pollset_work(pollset.ps, &worker, deadline));
  gpr_mu_unlock(pollset.mu);
  grpc_core::ExecCtx::Get()->Flush();

  verify_readable_and_reset(tfds, num_fds);
  grpc_core::ExecCtx::Get()->Flush();

  /* Tear down */
  grpc_pollset_set_del_fd(pollset_sets[0].pss, tfds[0].fd);
  grpc_pollset_set_del_fd(pollset_sets[1].pss, tfds[0].fd);
  grpc_pollset_set_del_fd(pollset_sets[1].pss, tfds[1].fd);

  grpc_pollset_set_del_pollset(pollset_sets[1].pss, pollset.ps);
  grpc_pollset_set_del_pollset_set(pollset_sets[0].pss, pollset_sets[1].pss);
  grpc_core::ExecCtx::Get()->Flush();

  cleanup_test_fds(tfds, num_fds);
  cleanup_test_pollsets(&pollset, num_ps);
  cleanup_test_pollset_sets(pollset_sets, num_pss);
}

/* Pollset_set with an empty pollset */
void pollset_set_test_empty_pollset() {
  /* We construct the following structure for this test:
   *
   *        +---> PS0 (EMPTY)
   *        |
   *        +---> FD0
   *        |
   * PSS0---+
   *        |          +---> FD1
   *        |          |
   *        +---> PS1--+
   *                   |
   *                   +---> FD2
   */
  grpc_core::ExecCtx exec_ctx;
  grpc_pollset_worker* worker;
  grpc_millis deadline;

  test_fd tfds[3];
  test_pollset pollsets[2];
  test_pollset_set pollset_set;
  const int num_fds = GPR_ARRAY_SIZE(tfds);
  const int num_ps = GPR_ARRAY_SIZE(pollsets);
  const int num_pss = 1;

  init_test_fds(tfds, num_fds);
  init_test_pollsets(pollsets, num_ps);
  init_test_pollset_sets(&pollset_set, num_pss);

  /* Construct the structure */
  grpc_pollset_set_add_fd(pollset_set.pss, tfds[0].fd);
  grpc_pollset_add_fd(pollsets[1].ps, tfds[1].fd);
  grpc_pollset_add_fd(pollsets[1].ps, tfds[2].fd);

  grpc_pollset_set_add_pollset(pollset_set.pss, pollsets[0].ps);
  grpc_pollset_set_add_pollset(pollset_set.pss, pollsets[1].ps);

  /* Test. Make all FDs readable and make sure that can be observed by doing
   * grpc_pollset_work on the empty pollset 'PS0' */
  make_test_fds_readable(tfds, num_fds);

  gpr_mu_lock(pollsets[0].mu);
  deadline = grpc_timespec_to_millis_round_up(
      grpc_timeout_milliseconds_to_deadline(2));
  GPR_ASSERT(GRPC_ERROR_NONE ==
             grpc_pollset_work(pollsets[0].ps, &worker, deadline));
  gpr_mu_unlock(pollsets[0].mu);
  grpc_core::ExecCtx::Get()->Flush();

  verify_readable_and_reset(tfds, num_fds);
  grpc_core::ExecCtx::Get()->Flush();

  /* Tear down */
  grpc_pollset_set_del_fd(pollset_set.pss, tfds[0].fd);
  grpc_pollset_set_del_pollset(pollset_set.pss, pollsets[0].ps);
  grpc_pollset_set_del_pollset(pollset_set.pss, pollsets[1].ps);
  grpc_core::ExecCtx::Get()->Flush();

  cleanup_test_fds(tfds, num_fds);
  cleanup_test_pollsets(pollsets, num_ps);
  cleanup_test_pollset_sets(&pollset_set, num_pss);
}

int main(int argc, char** argv) {
  grpc_test_init(argc, argv);
  grpc_init();
  {
    grpc_core::ExecCtx exec_ctx;
    const char* poll_strategy = grpc_get_poll_strategy_name();

    if (poll_strategy != nullptr &&
        (strcmp(poll_strategy, "epollsig") == 0 ||
         strcmp(poll_strategy, "epoll-threadpool") == 0)) {
      pollset_set_test_basic();
      pollset_set_test_dup_fds();
      pollset_set_test_empty_pollset();
    } else {
      gpr_log(GPR_INFO,
              "Skipping the test. The test is only relevant for 'epoll' "
              "strategy. and the current strategy is: '%s'",
              poll_strategy);
    }
  }
  grpc_shutdown();
  return 0;
}
#else  /* defined(GRPC_LINUX_EPOLL_CREATE1) */
int main(int argc, char** argv) { return 0; }
#endif /* !defined(GRPC_LINUX_EPOLL_CREATE1) */