File: tst-unique1.c

package info (click to toggle)
glibc 2.42-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 311,572 kB
  • sloc: ansic: 1,060,594; asm: 238,093; makefile: 20,949; python: 13,508; sh: 11,823; cpp: 5,188; awk: 1,794; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (73 lines) | stat: -rw-r--r-- 1,535 bytes parent folder | download | duplicates (23)
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
#include <config.h>
#include <dlfcn.h>
#include <stdio.h>
#include <sys/mman.h>

static int
do_test (void)
{
  void *h1 = dlopen ("tst-unique1mod1.so", RTLD_LAZY);
  if (h1 == NULL)
    {
      puts ("cannot load tst-unique1mod1");
      return 1;
    }
  int *(*f1) (void) = dlsym (h1, "f");
  if (f1 == NULL)
    {
      puts ("cannot locate f in tst-unique1mod1");
      return 1;
    }
  void *h2 = dlopen ("tst-unique1mod2.so", RTLD_LAZY);
  if (h2 == NULL)
    {
      puts ("cannot load tst-unique1mod2");
      return 1;
    }
  int (*f2) (int *) = dlsym (h2, "f");
  if (f2 == NULL)
    {
      puts ("cannot locate f in tst-unique1mod2");
      return 1;
    }
  if (f2 (f1 ()))
    {
      puts ("f from tst-unique1mod2 failed");
      return 1;
    }
  dlclose (h2);
  dlclose (h1);
  mmap (NULL, 1024 * 1024 * 16, PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
  h2 = dlopen ("tst-unique1mod2.so", RTLD_LAZY);
  if (h2 == NULL)
    {
      puts ("cannot load tst-unique1mod2");
      return 1;
    }
  f2 = dlsym (h2, "f");
  if (f2 == NULL)
    {
      puts ("cannot locate f in tst-unique1mod2");
      return 1;
    }
  h1 = dlopen ("tst-unique1mod1.so", RTLD_LAZY);
  if (h1 == NULL)
    {
      puts ("cannot load tst-unique1mod1");
      return 1;
    }
  f1 = dlsym (h1, "f");
  if (f1 == NULL)
    {
      puts ("cannot locate f in tst-unique1mod1");
      return 1;
    }
  if (f2 (f1 ()))
    {
      puts ("f from tst-unique1mod2 failed");
      return 1;
    }
  return 0;
}

#include <support/test-driver.c>