about summary refs log tree commit diff
path: root/stdlib/test-cxa_atexit-race2.c
blob: 1e453d51e6a5df3f934066e6e896d25d3c059f76 (plain) (blame)
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
/* Support file for atexit/exit, etc. race tests (BZ #27749).
   Copyright (C) 2021-2024 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

/* The atexit/exit, at_quick_exit/quick_exit, __cxa_atexit/exit, etc.
   exhibited data race while calling destructors.

   This test registers destructors from the background thread, and checks that
   the same destructor is not called more than once.  */

#include <stdatomic.h>
#include <stdio.h>
#include <stdlib.h>
#include <support/check.h>
#include <support/xthread.h>
#include <support/xunistd.h>
#include <sys/wait.h>
#include <unistd.h>

static atomic_int registered;
static atomic_int todo = 100000;

static void
atexit_cb (void *arg)
{
  atomic_fetch_sub (&registered, 1);
  static void *prev;
  if (arg == prev)
    FAIL_EXIT1 ("%s: %p\n", __func__, arg);
  prev = arg;

  while (atomic_load (&todo) > 0 && atomic_load (&registered) < 100)
    ;
}

int __cxa_atexit (void (*func) (void *), void *arg, void *d);

static void *
thread_func (void *arg)
{
  void *cb_arg = NULL;
  while (atomic_load (&todo) > 0)
    {
      if (atomic_load (&registered) < 10000)
        {
          int n = 10;
          for (int i = 0; i < n; ++i)
            __cxa_atexit (&atexit_cb, ++cb_arg, 0);
          atomic_fetch_add (&registered, n);
          atomic_fetch_sub (&todo, n);
        }
    }

  return NULL;
}

_Noreturn static void
test_and_exit (void)
{
  pthread_attr_t attr;

  xpthread_attr_init (&attr);
  xpthread_attr_setdetachstate (&attr, 1);

  xpthread_create (&attr, thread_func, NULL);
  xpthread_attr_destroy (&attr);

  while (atomic_load (&registered) == 0)
    ;
  exit (0);
}

static int
do_test (void)
{
  for (int i = 0; i < 20; ++i)
    {
      for (int i = 0; i < 10; ++i)
        if (xfork () == 0)
          test_and_exit ();

      for (int i = 0; i < 10; ++i)
        {
          int status;
          xwaitpid (0, &status, 0);
          if (!WIFEXITED (status))
            FAIL_EXIT1 ("Failed iterations %d", i);
          TEST_COMPARE (WEXITSTATUS (status), 0);
        }
    }

  return 0;
}

#define TEST_FUNCTION do_test
#include <support/test-driver.c>