2.9
[glibc/nacl-glibc.git] / elf / neededtest4.c
blobbd79341fb24484587cd6171ee1e91bd65b87b027
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 #define MAPS ((struct link_map *) _r_debug.r_map)
10 static int
11 check_loaded_objects (const char **loaded)
13 struct link_map *lm;
14 int n;
15 int *found = NULL;
16 int errors = 0;
18 for (n = 0; loaded[n]; n++)
19 /* NOTHING */;
21 if (n)
23 found = (int *) alloca (sizeof (int) * n);
24 memset (found, 0, sizeof (int) * n);
27 printf(" Name\n");
28 printf(" --------------------------------------------------------\n");
29 for (lm = MAPS; lm; lm = lm->l_next)
31 if (lm->l_name && lm->l_name[0])
32 printf(" %s, count = %d\n", lm->l_name, (int) lm->l_direct_opencount);
33 if (lm->l_type == lt_loaded && lm->l_name)
35 int match = 0;
36 for (n = 0; loaded[n] != NULL; n++)
38 if (strcmp (basename (loaded[n]), basename (lm->l_name)) == 0)
40 found[n] = 1;
41 match = 1;
42 break;
46 if (match == 0)
48 ++errors;
49 printf ("ERRORS: %s is not unloaded\n", lm->l_name);
54 for (n = 0; loaded[n] != NULL; n++)
56 if (found[n] == 0)
58 ++errors;
59 printf ("ERRORS: %s is not loaded\n", loaded[n]);
63 return errors;
66 extern void c_function (void);
67 extern char *dirname (__const char *__filename);
69 int
70 main (int argc, char **argv)
72 void *obj;
73 const char *loaded[] = { NULL, NULL, NULL};
74 int errors = 0;
75 void (*f) (void);
76 const char *dir = dirname (argv [0]);
77 char *oldfilename;
78 char *newfilename;
80 c_function ();
82 printf ("\nThis is what is in memory now:\n");
83 errors += check_loaded_objects (loaded);
85 printf( "Loading shared object neededobj6.so\n");
86 obj = dlopen( "neededobj6.so", RTLD_LAZY);
87 if (obj == NULL)
89 printf ("%s\n", dlerror ());
90 exit (1);
92 f = dlsym (obj, "a2_function");
93 if (f == NULL)
95 printf ("%s\n", dlerror ());
96 exit (1);
98 f ();
99 loaded[0] = "neededobj5.so";
100 loaded[1] = "neededobj6.so";
101 errors += check_loaded_objects (loaded);
103 printf ("Closing neededobj6.so\n");
104 dlclose (obj);
105 loaded[0] = NULL;
106 errors += check_loaded_objects (loaded);
108 printf ("Rename neededobj5.so\n");
109 oldfilename = alloca (strlen (dir) + 1 + sizeof ("neededobj5.so"));
110 strcpy (oldfilename, dir);
111 strcat (oldfilename, "/");
112 strcat (oldfilename, "neededobj5.so");
113 newfilename = alloca (strlen (oldfilename) + sizeof (".renamed"));
114 strcpy (newfilename, oldfilename);
115 strcat (newfilename, ".renamed");
116 if (rename (oldfilename, newfilename))
118 perror ("rename");
119 exit (1);
122 printf( "Loading shared object neededobj6.so\n");
123 obj = dlopen( "neededobj6.so", RTLD_LAZY);
124 if (obj == NULL)
125 printf ("%s\n", dlerror ());
126 else
128 printf ("neededobj6.so should fail to load\n");
129 exit (1);
132 printf( "Loading shared object neededobj1.so\n");
133 obj = dlopen( "neededobj1.so", RTLD_LAZY);
134 if (obj == NULL)
136 printf ("%s\n", dlerror ());
137 exit (1);
139 errors += check_loaded_objects (loaded);
140 f = dlsym (obj, "c_function");
141 if (f == NULL)
143 printf ("%s\n", dlerror ());
144 exit (1);
146 f ();
148 printf ("Restore neededobj5.so\n");
149 if (rename (newfilename, oldfilename))
151 perror ("rename");
152 exit (1);
155 if (errors != 0)
156 printf ("%d errors found\n", errors);
157 return errors;