summaryrefslogtreecommitdiff
path: root/elf/tst-audit2.c
blob: 1d69cd669ee8f57131cfebbfac429ee24a4defc5 (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
/* Test case for early TLS initialization in dynamic linker.  */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>

#define MAGIC1 0xabcdef72
#define MAGIC2 0xd8675309
static __thread unsigned int magic[] = { MAGIC1, MAGIC2 };
static __thread int calloc_called;

#undef calloc

/* This calloc definition will be called by the dynamic linker itself.
   We test that interposed calloc is called by the dynamic loader, and
   that TLS is fully initialized by then.  */

void *
calloc (size_t n, size_t m)
{
  if (!calloc_called)
    {
      /* Allow our calloc to be called more than once.  */
      calloc_called = 1;
      if (magic[0] != MAGIC1 || magic[1] != MAGIC2)
	{
	  printf ("{%x, %x} != {%x, %x}\n",
		  magic[0], magic[1], MAGIC1, MAGIC2);
	  abort ();
	}
      magic[0] = MAGIC2;
      magic[1] = MAGIC1;
    }

  n *= m;
  void *ptr = malloc (n);
  if (ptr != NULL)
    memset (ptr, '\0', n);
  return ptr;
}

static int
do_test (void)
{
  /* Make sure that our calloc is called from the dynamic linker at least
     once.  */
  void *h = dlopen("$ORIGIN/tst-auditmod9b.so", RTLD_LAZY);
  if (h != NULL)
    dlclose (h);
  if (magic[1] != MAGIC1 || magic[0] != MAGIC2)
    {
      printf ("{%x, %x} != {%x, %x}\n", magic[0], magic[1], MAGIC2, MAGIC1);
      return 1;
    }

  return 0;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"