Added support for Unicode applications in winebuild.
[wine] / tools / winebuild / import.c
1 /*
2  * DLL imports support
3  *
4  * Copyright 2000 Alexandre Julliard
5  */
6
7 #include <fcntl.h>
8 #include <stdio.h>
9 #include <unistd.h>
10
11 #include "config.h"
12 #include "winnt.h"
13 #include "build.h"
14
15 struct import
16 {
17     char        *dll;         /* dll name */
18     char       **exports;     /* functions exported from this dll */
19     int          nb_exports;  /* number of exported functions */
20     char       **imports;     /* functions we want to import from this dll */
21     int          nb_imports;  /* number of imported functions */
22     int          lineno;      /* line in .spec file where import is defined */
23 };
24
25 static char **undef_symbols;  /* list of undefined symbols */
26 static int nb_undef_symbols = -1;
27 static int undef_size;
28
29 static char **ignore_symbols; /* list of symbols to ignore */
30 static int nb_ignore_symbols;
31 static int ignore_size;
32
33 static struct import **dll_imports = NULL;
34 static int nb_imports = 0;  /* number of imported dlls */
35 static int total_imports = 0;  /* total number of imported functions */
36
37
38 /* compare function names; helper for resolve_imports */
39 static int name_cmp( const void *name, const void *entry )
40 {
41     return strcmp( *(char **)name, *(char **)entry );
42 }
43
44 /* locate a symbol in a (sorted) list */
45 inline static const char *find_symbol( const char *name, char **table, int size )
46 {
47     char **res = bsearch( &name, table, size, sizeof(*table), name_cmp );
48     return res ? *res : NULL;
49 }
50
51 /* sort a symbol table */
52 inline static void sort_symbols( char **table, int size )
53 {
54     qsort( table, size, sizeof(*table), name_cmp );
55 }
56
57 /* open the .so library for a given dll in a specified path */
58 static char *try_library_path( const char *path, const char *name )
59 {
60     char *buffer, *p;
61     int fd;
62
63     buffer = xmalloc( strlen(path) + strlen(name) + 8 );
64     sprintf( buffer, "%s/lib%s", path, name );
65     p = buffer + strlen(buffer) - 4;
66     if (!strcmp( p, ".dll" )) *p = 0;
67     strcat( buffer, ".so" );
68     /* check if the file exists */
69     if ((fd = open( buffer, O_RDONLY )) == -1) return NULL;
70     close( fd );
71     return buffer;
72 }
73
74 /* open the .so library for a given dll */
75 static char *open_library( const char *name )
76 {
77     char *fullname;
78     int i;
79
80     for (i = 0; i < nb_lib_paths; i++)
81     {
82         if ((fullname = try_library_path( lib_path[i], name ))) return fullname;
83     }
84     if (!(fullname = try_library_path( ".", name )))
85         fatal_error( "could not open .so file for %s\n", name );
86     return fullname;
87 }
88
89 /* read in the list of exported symbols of a .so */
90 static void read_exported_symbols( const char *name, struct import *imp )
91 {
92     FILE *f;
93     char buffer[1024];
94     char *fullname, *cmdline;
95     const char *ext;
96     int size, err;
97
98     imp->exports    = NULL;
99     imp->nb_exports = size = 0;
100
101     if (!(ext = strrchr( name, '.' ))) ext = name + strlen(name);
102
103     if (!(fullname = open_library( name ))) return;
104     cmdline = xmalloc( strlen(fullname) + 4 );
105     sprintf( cmdline, "nm %s", fullname );
106     free( fullname );
107
108     if (!(f = popen( cmdline, "r" )))
109         fatal_error( "Cannot execute '%s'\n", cmdline );
110
111     while (fgets( buffer, sizeof(buffer), f ))
112     {
113         char *p = buffer + strlen(buffer) - 1;
114         if (p < buffer) continue;
115         if (*p == '\n') *p-- = 0;
116         if (!(p = strstr( buffer, "__wine_dllexport_" ))) continue;
117         p += 17;
118         if (strncmp( p, name, ext - name )) continue;
119         p += ext - name;
120         if (*p++ != '_') continue;
121
122         if (imp->nb_exports == size)
123         {
124             size += 128;
125             imp->exports = xrealloc( imp->exports, size * sizeof(*imp->exports) );
126         }
127         imp->exports[imp->nb_exports++] = xstrdup( p );
128     }
129     if ((err = pclose( f ))) fatal_error( "%s error %d\n", cmdline, err );
130     free( cmdline );
131     sort_symbols( imp->exports, imp->nb_exports );
132 }
133
134 /* add a dll to the list of imports */
135 void add_import_dll( const char *name )
136 {
137     struct import *imp = xmalloc( sizeof(*imp) );
138     imp->dll        = xstrdup( name );
139     imp->imports    = NULL;
140     imp->nb_imports = 0;
141     /* GetToken for the file name has swallowed the '\n', hence pointing to next line */
142     imp->lineno = current_line - 1;
143
144     read_exported_symbols( name, imp );
145
146     dll_imports = xrealloc( dll_imports, (nb_imports+1) * sizeof(*dll_imports) );
147     dll_imports[nb_imports++] = imp;
148 }
149
150 /* Add a symbol to the ignored symbol list */
151 void add_ignore_symbol( const char *name )
152 {
153     if (nb_ignore_symbols == ignore_size)
154     {
155         ignore_size += 32;
156         ignore_symbols = xrealloc( ignore_symbols, ignore_size * sizeof(*ignore_symbols) );
157     }
158     ignore_symbols[nb_ignore_symbols++] = xstrdup( name );
159 }
160
161 /* add a function to the list of imports from a given dll */
162 static void add_import_func( struct import *imp, const char *name )
163 {
164     imp->imports = xrealloc( imp->imports, (imp->nb_imports+1) * sizeof(*imp->imports) );
165     imp->imports[imp->nb_imports++] = xstrdup( name );
166     total_imports++;
167 }
168
169 /* add a symbol to the undef list */
170 inline static void add_undef_symbol( const char *name )
171 {
172     if (nb_undef_symbols == undef_size)
173     {
174         undef_size += 128;
175         undef_symbols = xrealloc( undef_symbols, undef_size * sizeof(*undef_symbols) );
176     }
177     undef_symbols[nb_undef_symbols++] = xstrdup( name );
178 }
179
180 /* remove all the holes in the undefined symbol list; return the number of removed symbols */
181 static int remove_symbol_holes(void)
182 {
183     int i, off;
184     for (i = off = 0; i < nb_undef_symbols; i++)
185     {
186         if (!undef_symbols[i]) off++;
187         else undef_symbols[i - off] = undef_symbols[i];
188     }
189     nb_undef_symbols -= off;
190     return off;
191 }
192
193 /* add the extra undefined symbols that will be contained in the generated spec file itself */
194 static void add_extra_undef_symbols(void)
195 {
196     const char *extras[8];
197     int i, count = 0;
198
199 #define ADD_SYM(name) \
200     do { if (!find_symbol( extras[count] = (name), undef_symbols, \
201                            nb_undef_symbols )) count++; } while(0)
202
203     sort_symbols( undef_symbols, nb_undef_symbols );
204
205     /* add symbols that will be contained in the spec file itself */
206     switch (SpecMode)
207     {
208     case SPEC_MODE_DLL:
209         break;
210     case SPEC_MODE_GUIEXE:
211         ADD_SYM( "GetCommandLineA" );
212         ADD_SYM( "GetStartupInfoA" );
213         ADD_SYM( "GetModuleHandleA" );
214         /* fall through */
215     case SPEC_MODE_CUIEXE:
216         ADD_SYM( "__wine_get_main_args" );
217         ADD_SYM( "ExitProcess" );
218         break;
219     case SPEC_MODE_GUIEXE_UNICODE:
220         ADD_SYM( "GetCommandLineA" );
221         ADD_SYM( "GetStartupInfoA" );
222         ADD_SYM( "GetModuleHandleA" );
223         /* fall through */
224     case SPEC_MODE_CUIEXE_UNICODE:
225         ADD_SYM( "__wine_get_wmain_args" );
226         ADD_SYM( "ExitProcess" );
227         break;
228     }
229     ADD_SYM( "RtlRaiseException" );
230
231     if (count)
232     {
233         for (i = 0; i < count; i++) add_undef_symbol( extras[i] );
234         sort_symbols( undef_symbols, nb_undef_symbols );
235     }
236 }
237
238 /* warn if a given dll is not used, but check forwards first */
239 static void warn_unused( const struct import* imp )
240 {
241     int i, curline;
242     size_t len = strlen(imp->dll);
243     const char *p = strchr( imp->dll, '.' );
244     if (p && !strcasecmp( p, ".dll" )) len = p - imp->dll;
245
246     for (i = Base; i <= Limit; i++)
247     {
248         ORDDEF *odp = Ordinals[i];
249         if (!odp || odp->type != TYPE_FORWARD) continue;
250         if (!strncasecmp( odp->u.fwd.link_name, imp->dll, len ) &&
251             odp->u.fwd.link_name[len] == '.')
252             return;  /* found an import, do not warn */
253     }
254     /* switch current_line temporarily to the line of the import declaration */
255     curline = current_line;
256     current_line = imp->lineno;
257     warning( "%s imported but no symbols used\n", imp->dll );
258     current_line = curline;
259 }
260
261 /* read in the list of undefined symbols */
262 void read_undef_symbols( const char *name )
263 {
264     FILE *f;
265     char buffer[1024];
266     int err;
267
268     undef_size = nb_undef_symbols = 0;
269
270     sprintf( buffer, "nm -u %s", name );
271     if (!(f = popen( buffer, "r" )))
272         fatal_error( "Cannot execute '%s'\n", buffer );
273
274     while (fgets( buffer, sizeof(buffer), f ))
275     {
276         char *p = buffer + strlen(buffer) - 1;
277         if (p < buffer) continue;
278         if (*p == '\n') *p-- = 0;
279         add_undef_symbol( buffer );
280     }
281     if ((err = pclose( f ))) fatal_error( "nm -u %s error %d\n", name, err );
282 }
283
284 static void remove_ignored_symbols(void)
285 {
286     int i;
287
288     sort_symbols( ignore_symbols, nb_ignore_symbols );
289     for (i = 0; i < nb_undef_symbols; i++)
290     {
291         if (find_symbol( undef_symbols[i], ignore_symbols, nb_ignore_symbols ))
292         {
293             free( undef_symbols[i] );
294             undef_symbols[i] = NULL;
295         }
296     }
297     remove_symbol_holes();
298 }
299
300 /* resolve the imports for a Win32 module */
301 int resolve_imports( FILE *outfile )
302 {
303     int i, j;
304
305     if (nb_undef_symbols == -1) return 0; /* no symbol file specified */
306
307     add_extra_undef_symbols();
308     remove_ignored_symbols();
309
310     for (i = 0; i < nb_imports; i++)
311     {
312         struct import *imp = dll_imports[i];
313
314         for (j = 0; j < nb_undef_symbols; j++)
315         {
316             const char *res = find_symbol( undef_symbols[j], imp->exports, imp->nb_exports );
317             if (res)
318             {
319                 add_import_func( imp, res );
320                 free( undef_symbols[j] );
321                 undef_symbols[j] = NULL;
322             }
323         }
324         /* remove all the holes in the undef symbols list */
325         if (!remove_symbol_holes()) warn_unused( imp );
326     }
327     return 1;
328 }
329
330 /* output the import table of a Win32 module */
331 int output_imports( FILE *outfile )
332 {
333     int i, j, pos;
334
335     if (!nb_imports) goto done;
336
337     /* main import header */
338
339     fprintf( outfile, "\nstatic struct {\n" );
340     fprintf( outfile, "  struct {\n" );
341     fprintf( outfile, "    void        *OriginalFirstThunk;\n" );
342     fprintf( outfile, "    unsigned int TimeDateStamp;\n" );
343     fprintf( outfile, "    unsigned int ForwarderChain;\n" );
344     fprintf( outfile, "    const char  *Name;\n" );
345     fprintf( outfile, "    void        *FirstThunk;\n" );
346     fprintf( outfile, "  } imp[%d];\n", nb_imports+1 );
347     fprintf( outfile, "  const char *data[%d];\n", total_imports + nb_imports );
348     fprintf( outfile, "} imports = {\n  {\n" );
349
350     /* list of dlls */
351
352     for (i = j = 0; i < nb_imports; i++)
353     {
354         fprintf( outfile, "    { 0, 0, 0, \"%s\", &imports.data[%d] },\n",
355                  dll_imports[i]->dll, j );
356         j += dll_imports[i]->nb_imports + 1;
357     }
358     fprintf( outfile, "    { 0, 0, 0, 0, 0 },\n" );
359     fprintf( outfile, "  },\n  {\n" );
360
361     /* list of imported functions */
362
363     for (i = 0; i < nb_imports; i++)
364     {
365         fprintf( outfile, "    /* %s */\n", dll_imports[i]->dll );
366         for (j = 0; j < dll_imports[i]->nb_imports; j++)
367             fprintf( outfile, "    \"\\0\\0%s\",\n", dll_imports[i]->imports[j] );
368         fprintf( outfile, "    0,\n" );
369     }
370     fprintf( outfile, "  }\n};\n\n" );
371
372     /* thunks for imported functions */
373
374     fprintf( outfile, "#ifndef __GNUC__\nstatic void __asm__dummy_import(void) {\n#endif\n\n" );
375     pos = 20 * (nb_imports + 1);  /* offset of imports.data from start of imports */
376     fprintf( outfile, "asm(\".align 8\\n\"\n" );
377     for (i = 0; i < nb_imports; i++, pos += 4)
378     {
379         for (j = 0; j < dll_imports[i]->nb_imports; j++, pos += 4)
380         {
381             fprintf( outfile, "    \"\\t" __ASM_FUNC("%s") "\\n\"\n",
382                      dll_imports[i]->imports[j] );
383             fprintf( outfile, "    \"\\t.globl " PREFIX "%s\\n\"\n",
384                      dll_imports[i]->imports[j] );
385             fprintf( outfile, "    \"" PREFIX "%s:\\t", dll_imports[i]->imports[j] );
386             if (strstr( dll_imports[i]->imports[j], "__wine_call_from_16" ))
387                 fprintf( outfile, ".byte 0x2e\\n\\tjmp *(imports+%d)\\n\\tnop\\n\"\n", pos );
388             else
389                 fprintf( outfile, "jmp *(imports+%d)\\n\\tmovl %%esi,%%esi\\n\"\n", pos );
390         }
391     }
392     fprintf( outfile, ");\n#ifndef __GNUC__\n}\n#endif\n\n" );
393
394  done:
395     return nb_imports;
396 }