Update.
[glibc.git] / elf / neededtest2.c
blobcf111bc303d94a3de4f21a3745423dc6f9b99009
1 #include <dlfcn.h>
2 #include <libintl.h>
3 #include <link.h>
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
8 static int
9 check_loaded_objects (const char **loaded)
11 struct link_map *lm;
12 int n;
13 int *found = NULL;
14 int errors = 0;
16 for (n = 0; loaded[n]; n++)
17 /* NOTHING */;
19 if (n)
21 found = (int *) alloca (sizeof (int) * n);
22 memset (found, 0, sizeof (int) * n);
25 printf(" Name\n");
26 printf(" --------------------------------------------------------\n");
27 for (lm = _r_debug.r_map; lm; lm = lm->l_next)
29 if (lm->l_name && lm->l_name[0])
30 printf(" %s, count = %d\n", lm->l_name, (int) lm->l_opencount);
31 if (lm->l_type == lt_loaded && lm->l_name)
33 int match = 0;
34 for (n = 0; loaded[n] != NULL; n++)
36 if (strcmp (basename (loaded[n]), basename (lm->l_name)) == 0)
38 found[n] = 1;
39 match = 1;
40 break;
44 if (match == 0)
46 ++errors;
47 printf ("ERRORS: %s is not unloaded\n", lm->l_name);
52 for (n = 0; loaded[n] != NULL; n++)
54 if (found[n] == 0)
56 ++errors;
57 printf ("ERRORS: %s is not loaded\n", loaded[n]);
61 return errors;
64 int
65 main (void)
67 void *obj2;
68 void *obj3[2];
69 const char *loaded[] = { NULL, NULL, NULL, NULL };
70 int errors = 0;
72 printf ("\nThis is what is in memory now:\n");
73 errors += check_loaded_objects (loaded);
74 printf ("\nLoading shared object neededobj2.so\n");
75 obj2 = dlopen ("neededobj2.so", RTLD_LAZY);
76 if (obj2 == NULL)
78 printf ("%s\n", dlerror ());
79 exit (1);
81 loaded[0] = "neededobj1.so";
82 loaded[1] = "neededobj2.so";
83 errors += check_loaded_objects (loaded);
84 printf ("\nLoading shared object neededobj3.so\n");
85 obj3[0] = dlopen( "neededobj3.so", RTLD_LAZY);
86 if (obj3[0] == NULL)
88 printf ("%s\n", dlerror ());
89 exit (1);
91 loaded[2] = "neededobj3.so";
92 errors += check_loaded_objects (loaded);
93 printf ("\nNow loading shared object neededobj3.so again\n");
94 obj3[1] = dlopen ("neededobj3.so", RTLD_LAZY);
95 if (obj3[1] == NULL)
97 printf ("%s\n", dlerror ());
98 exit (1);
100 errors += check_loaded_objects (loaded);
101 printf ("\nClosing neededobj3.so once\n");
102 dlclose (obj3[0]);
103 errors += check_loaded_objects (loaded);
104 printf ("\nClosing neededobj2.so\n");
105 dlclose (obj2);
106 errors += check_loaded_objects (loaded);
107 printf ("\nClosing neededobj3.so for the second time\n");
108 dlclose (obj3[1]);
109 loaded[0] = NULL;
110 loaded[1] = NULL;
111 loaded[2] = NULL;
112 errors += check_loaded_objects (loaded);
113 if (errors != 0)
114 printf ("%d errors found\n", errors);
115 return errors;