winmm: Clean up mapper code.
[wine] / tools / winebuild / parser.c
1 /*
2  * Spec file parser
3  *
4  * Copyright 1993 Robert J. Amstadt
5  * Copyright 1995 Martin von Loewis
6  * Copyright 1995, 1996, 1997, 2004 Alexandre Julliard
7  * Copyright 1997 Eric Youngdale
8  * Copyright 1999 Ulrich Weigand
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27
28 #include <assert.h>
29 #include <ctype.h>
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34
35 #include "build.h"
36
37 int current_line = 0;
38
39 static char ParseBuffer[512];
40 static char TokenBuffer[512];
41 static char *ParseNext = ParseBuffer;
42 static FILE *input_file;
43
44 static const char *separator_chars;
45 static const char *comment_chars;
46
47 /* valid characters in ordinal names */
48 static const char valid_ordname_chars[] = "/$:-_@?abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
49
50 static const char * const TypeNames[TYPE_NBTYPES] =
51 {
52     "variable",     /* TYPE_VARIABLE */
53     "pascal",       /* TYPE_PASCAL */
54     "equate",       /* TYPE_ABS */
55     "stub",         /* TYPE_STUB */
56     "stdcall",      /* TYPE_STDCALL */
57     "cdecl",        /* TYPE_CDECL */
58     "varargs",      /* TYPE_VARARGS */
59     "extern"        /* TYPE_EXTERN */
60 };
61
62 static const char * const FlagNames[] =
63 {
64     "norelay",     /* FLAG_NORELAY */
65     "noname",      /* FLAG_NONAME */
66     "ret16",       /* FLAG_RET16 */
67     "ret64",       /* FLAG_RET64 */
68     "register",    /* FLAG_REGISTER */
69     "private",     /* FLAG_PRIVATE */
70     "ordinal",     /* FLAG_ORDINAL */
71     NULL
72 };
73
74 static int IsNumberString(const char *s)
75 {
76     while (*s) if (!isdigit(*s++)) return 0;
77     return 1;
78 }
79
80 static inline int is_token_separator( char ch )
81 {
82     return strchr( separator_chars, ch ) != NULL;
83 }
84
85 static inline int is_token_comment( char ch )
86 {
87     return strchr( comment_chars, ch ) != NULL;
88 }
89
90 /* get the next line from the input file, or return 0 if at eof */
91 static int get_next_line(void)
92 {
93     ParseNext = ParseBuffer;
94     current_line++;
95     return (fgets(ParseBuffer, sizeof(ParseBuffer), input_file) != NULL);
96 }
97
98 static const char * GetToken( int allow_eol )
99 {
100     char *p = ParseNext;
101     char *token = TokenBuffer;
102
103     for (;;)
104     {
105         /* remove initial white space */
106         p = ParseNext;
107         while (isspace(*p)) p++;
108
109         if (*p == '\\' && p[1] == '\n')  /* line continuation */
110         {
111             if (!get_next_line())
112             {
113                 if (!allow_eol) error( "Unexpected end of file\n" );
114                 return NULL;
115             }
116         }
117         else break;
118     }
119
120     if ((*p == '\0') || is_token_comment(*p))
121     {
122         if (!allow_eol) error( "Declaration not terminated properly\n" );
123         return NULL;
124     }
125
126     /*
127      * Find end of token.
128      */
129     if (is_token_separator(*p))
130     {
131         /* a separator is always a complete token */
132         *token++ = *p++;
133     }
134     else while (*p != '\0' && !is_token_separator(*p) && !isspace(*p))
135     {
136         if (*p == '\\') p++;
137         if (*p) *token++ = *p++;
138     }
139     *token = '\0';
140     ParseNext = p;
141     return TokenBuffer;
142 }
143
144
145 static ORDDEF *add_entry_point( DLLSPEC *spec )
146 {
147     ORDDEF *ret;
148
149     if (spec->nb_entry_points == spec->alloc_entry_points)
150     {
151         spec->alloc_entry_points += 128;
152         spec->entry_points = xrealloc( spec->entry_points,
153                                        spec->alloc_entry_points * sizeof(*spec->entry_points) );
154     }
155     ret = &spec->entry_points[spec->nb_entry_points++];
156     memset( ret, 0, sizeof(*ret) );
157     return ret;
158 }
159
160 /*******************************************************************
161  *         parse_spec_variable
162  *
163  * Parse a variable definition in a .spec file.
164  */
165 static int parse_spec_variable( ORDDEF *odp, DLLSPEC *spec )
166 {
167     char *endptr;
168     int *value_array;
169     int n_values;
170     int value_array_size;
171     const char *token;
172
173     if (spec->type == SPEC_WIN32)
174     {
175         error( "'variable' not supported in Win32, use 'extern' instead\n" );
176         return 0;
177     }
178
179     if (!(token = GetToken(0))) return 0;
180     if (*token != '(')
181     {
182         error( "Expected '(' got '%s'\n", token );
183         return 0;
184     }
185
186     n_values = 0;
187     value_array_size = 25;
188     value_array = xmalloc(sizeof(*value_array) * value_array_size);
189
190     for (;;)
191     {
192         if (!(token = GetToken(0)))
193         {
194             free( value_array );
195             return 0;
196         }
197         if (*token == ')')
198             break;
199
200         value_array[n_values++] = strtol(token, &endptr, 0);
201         if (n_values == value_array_size)
202         {
203             value_array_size += 25;
204             value_array = xrealloc(value_array,
205                                    sizeof(*value_array) * value_array_size);
206         }
207
208         if (endptr == NULL || *endptr != '\0')
209         {
210             error( "Expected number value, got '%s'\n", token );
211             free( value_array );
212             return 0;
213         }
214     }
215
216     odp->u.var.n_values = n_values;
217     odp->u.var.values = xrealloc(value_array, sizeof(*value_array) * n_values);
218     return 1;
219 }
220
221
222 /*******************************************************************
223  *         parse_spec_export
224  *
225  * Parse an exported function definition in a .spec file.
226  */
227 static int parse_spec_export( ORDDEF *odp, DLLSPEC *spec )
228 {
229     const char *token;
230     unsigned int i;
231     int is_win32 = (spec->type == SPEC_WIN32) || (odp->flags & FLAG_EXPORT32);
232
233     if (!is_win32 && odp->type == TYPE_STDCALL)
234     {
235         error( "'stdcall' not supported for Win16\n" );
236         return 0;
237     }
238     if (is_win32 && odp->type == TYPE_PASCAL)
239     {
240         error( "'pascal' not supported for Win32\n" );
241         return 0;
242     }
243
244     if (!(token = GetToken(0))) return 0;
245     if (*token != '(')
246     {
247         error( "Expected '(' got '%s'\n", token );
248         return 0;
249     }
250
251     for (i = 0; i < sizeof(odp->u.func.arg_types); i++)
252     {
253         if (!(token = GetToken(0))) return 0;
254         if (*token == ')')
255             break;
256
257         if (!strcmp(token, "word"))
258             odp->u.func.arg_types[i] = 'w';
259         else if (!strcmp(token, "s_word"))
260             odp->u.func.arg_types[i] = 's';
261         else if (!strcmp(token, "long") || !strcmp(token, "segptr"))
262             odp->u.func.arg_types[i] = 'l';
263         else if (!strcmp(token, "ptr"))
264             odp->u.func.arg_types[i] = 'p';
265         else if (!strcmp(token, "str"))
266             odp->u.func.arg_types[i] = 't';
267         else if (!strcmp(token, "wstr"))
268             odp->u.func.arg_types[i] = 'W';
269         else if (!strcmp(token, "segstr"))
270             odp->u.func.arg_types[i] = 'T';
271         else if (!strcmp(token, "double"))
272         {
273             odp->u.func.arg_types[i++] = 'l';
274             if (get_ptr_size() == 4 && i < sizeof(odp->u.func.arg_types))
275                 odp->u.func.arg_types[i] = 'l';
276         }
277         else
278         {
279             error( "Unknown argument type '%s'\n", token );
280             return 0;
281         }
282
283         if (is_win32)
284         {
285             if (strcmp(token, "long") &&
286                 strcmp(token, "ptr") &&
287                 strcmp(token, "str") &&
288                 strcmp(token, "wstr") &&
289                 strcmp(token, "double"))
290             {
291                 error( "Type '%s' not supported for Win32 function\n", token );
292                 return 0;
293             }
294         }
295     }
296     if ((*token != ')') || (i >= sizeof(odp->u.func.arg_types)))
297     {
298         error( "Too many arguments\n" );
299         return 0;
300     }
301
302     odp->u.func.arg_types[i] = '\0';
303     if (odp->type == TYPE_VARARGS)
304         odp->flags |= FLAG_NORELAY;  /* no relay debug possible for varags entry point */
305
306     if (!(token = GetToken(1)))
307     {
308         if (!strcmp( odp->name, "@" ))
309         {
310             error( "Missing handler name for anonymous function\n" );
311             return 0;
312         }
313         odp->link_name = xstrdup( odp->name );
314     }
315     else
316     {
317         odp->link_name = xstrdup( token );
318         if (strchr( odp->link_name, '.' ))
319         {
320             if (!is_win32)
321             {
322                 error( "Forwarded functions not supported for Win16\n" );
323                 return 0;
324             }
325             odp->flags |= FLAG_FORWARD;
326         }
327     }
328     return 1;
329 }
330
331
332 /*******************************************************************
333  *         parse_spec_equate
334  *
335  * Parse an 'equate' definition in a .spec file.
336  */
337 static int parse_spec_equate( ORDDEF *odp, DLLSPEC *spec )
338 {
339     char *endptr;
340     int value;
341     const char *token;
342
343     if (spec->type == SPEC_WIN32)
344     {
345         error( "'equate' not supported for Win32\n" );
346         return 0;
347     }
348     if (!(token = GetToken(0))) return 0;
349     value = strtol(token, &endptr, 0);
350     if (endptr == NULL || *endptr != '\0')
351     {
352         error( "Expected number value, got '%s'\n", token );
353         return 0;
354     }
355     if (value < -0x8000 || value > 0xffff)
356     {
357         error( "Value %d for absolute symbol doesn't fit in 16 bits\n", value );
358         value = 0;
359     }
360     odp->u.abs.value = value;
361     return 1;
362 }
363
364
365 /*******************************************************************
366  *         parse_spec_stub
367  *
368  * Parse a 'stub' definition in a .spec file
369  */
370 static int parse_spec_stub( ORDDEF *odp, DLLSPEC *spec )
371 {
372     odp->u.func.arg_types[0] = '\0';
373     odp->link_name = xstrdup("");
374     odp->flags |= FLAG_CPU(CPU_x86) | FLAG_CPU(CPU_x86_64); /* don't bother generating stubs for Winelib */
375     return 1;
376 }
377
378
379 /*******************************************************************
380  *         parse_spec_extern
381  *
382  * Parse an 'extern' definition in a .spec file.
383  */
384 static int parse_spec_extern( ORDDEF *odp, DLLSPEC *spec )
385 {
386     const char *token;
387
388     if (spec->type == SPEC_WIN16)
389     {
390         error( "'extern' not supported for Win16, use 'variable' instead\n" );
391         return 0;
392     }
393     if (!(token = GetToken(1)))
394     {
395         if (!strcmp( odp->name, "@" ))
396         {
397             error( "Missing handler name for anonymous extern\n" );
398             return 0;
399         }
400         odp->link_name = xstrdup( odp->name );
401     }
402     else
403     {
404         odp->link_name = xstrdup( token );
405         if (strchr( odp->link_name, '.' )) odp->flags |= FLAG_FORWARD;
406     }
407     return 1;
408 }
409
410
411 /*******************************************************************
412  *         parse_spec_flags
413  *
414  * Parse the optional flags for an entry point in a .spec file.
415  */
416 static const char *parse_spec_flags( DLLSPEC *spec, ORDDEF *odp )
417 {
418     unsigned int i;
419     const char *token;
420
421     do
422     {
423         if (!(token = GetToken(0))) break;
424         if (!strncmp( token, "arch=", 5))
425         {
426             char *args = xstrdup( token + 5 );
427             char *cpu_name = strtok( args, "," );
428             while (cpu_name)
429             {
430                 if (!strcmp( cpu_name, "win32" ))
431                 {
432                     if (spec->type == SPEC_WIN32)
433                         odp->flags |= FLAG_CPU_WIN32;
434                     else
435                         odp->flags |= FLAG_EXPORT32;
436                 }
437                 else if (!strcmp( cpu_name, "win64" ))
438                     odp->flags |= FLAG_CPU_WIN64;
439                 else
440                 {
441                     enum target_cpu cpu = get_cpu_from_name( cpu_name );
442                     if (cpu == -1)
443                     {
444                         error( "Unknown architecture '%s'\n", cpu_name );
445                         return NULL;
446                     }
447                     odp->flags |= FLAG_CPU( cpu );
448                 }
449                 cpu_name = strtok( NULL, "," );
450             }
451             free( args );
452         }
453         else if (!strcmp( token, "i386" ))  /* backwards compatibility */
454         {
455             odp->flags |= FLAG_CPU(CPU_x86);
456         }
457         else
458         {
459             for (i = 0; FlagNames[i]; i++)
460                 if (!strcmp( FlagNames[i], token )) break;
461             if (!FlagNames[i])
462             {
463                 error( "Unknown flag '%s'\n", token );
464                 return NULL;
465             }
466             odp->flags |= 1 << i;
467         }
468         token = GetToken(0);
469     } while (token && *token == '-');
470
471     return token;
472 }
473
474
475 /*******************************************************************
476  *         parse_spec_ordinal
477  *
478  * Parse an ordinal definition in a .spec file.
479  */
480 static int parse_spec_ordinal( int ordinal, DLLSPEC *spec )
481 {
482     const char *token;
483     size_t len;
484     ORDDEF *odp = add_entry_point( spec );
485
486     if (!(token = GetToken(0))) goto error;
487
488     for (odp->type = 0; odp->type < TYPE_NBTYPES; odp->type++)
489         if (TypeNames[odp->type] && !strcmp( token, TypeNames[odp->type] ))
490             break;
491
492     if (odp->type >= TYPE_NBTYPES)
493     {
494         error( "Expected type after ordinal, found '%s' instead\n", token );
495         goto error;
496     }
497
498     if (!(token = GetToken(0))) goto error;
499     if (*token == '-' && !(token = parse_spec_flags( spec, odp ))) goto error;
500
501     if (ordinal == -1 && spec->type != SPEC_WIN32 && !(odp->flags & FLAG_EXPORT32))
502     {
503         error( "'@' ordinals not supported for Win16\n" );
504         goto error;
505     }
506
507     odp->name = xstrdup( token );
508     odp->lineno = current_line;
509     odp->ordinal = ordinal;
510
511     len = strspn( odp->name, valid_ordname_chars );
512     if (len < strlen( odp->name ))
513     {
514         error( "Character '%c' is not allowed in exported name '%s'\n", odp->name[len], odp->name );
515         goto error;
516     }
517
518     switch(odp->type)
519     {
520     case TYPE_VARIABLE:
521         if (!parse_spec_variable( odp, spec )) goto error;
522         break;
523     case TYPE_PASCAL:
524     case TYPE_STDCALL:
525     case TYPE_VARARGS:
526     case TYPE_CDECL:
527         if (!parse_spec_export( odp, spec )) goto error;
528         break;
529     case TYPE_ABS:
530         if (!parse_spec_equate( odp, spec )) goto error;
531         break;
532     case TYPE_STUB:
533         if (!parse_spec_stub( odp, spec )) goto error;
534         break;
535     case TYPE_EXTERN:
536         if (!parse_spec_extern( odp, spec )) goto error;
537         break;
538     default:
539         assert( 0 );
540     }
541
542     if ((odp->flags & FLAG_CPU_MASK) && !(odp->flags & FLAG_CPU(target_cpu)))
543     {
544         /* ignore this entry point */
545         spec->nb_entry_points--;
546         return 1;
547     }
548
549     if (ordinal != -1)
550     {
551         if (!ordinal)
552         {
553             error( "Ordinal 0 is not valid\n" );
554             goto error;
555         }
556         if (ordinal >= MAX_ORDINALS)
557         {
558             error( "Ordinal number %d too large\n", ordinal );
559             goto error;
560         }
561         if (ordinal > spec->limit) spec->limit = ordinal;
562         if (ordinal < spec->base) spec->base = ordinal;
563         odp->ordinal = ordinal;
564     }
565
566     if (odp->type == TYPE_STDCALL && !(odp->flags & FLAG_PRIVATE))
567     {
568         if (!strcmp( odp->name, "DllRegisterServer" ) ||
569             !strcmp( odp->name, "DllUnregisterServer" ) ||
570             !strcmp( odp->name, "DllGetClassObject" ) ||
571             !strcmp( odp->name, "DllGetVersion" ) ||
572             !strcmp( odp->name, "DllInstall" ) ||
573             !strcmp( odp->name, "DllCanUnloadNow" ))
574         {
575             warning( "Function %s should be marked private\n", odp->name );
576             if (strcmp( odp->name, odp->link_name ))
577                 warning( "Function %s should not use a different internal name (%s)\n",
578                          odp->name, odp->link_name );
579         }
580     }
581
582     if (!strcmp( odp->name, "@" ) || odp->flags & (FLAG_NONAME | FLAG_ORDINAL))
583     {
584         if (ordinal == -1)
585         {
586             if (!strcmp( odp->name, "@" ))
587                 error( "Nameless function needs an explicit ordinal number\n" );
588             else
589                 error( "Function imported by ordinal needs an explicit ordinal number\n" );
590             goto error;
591         }
592         if (spec->type != SPEC_WIN32)
593         {
594             error( "Nameless functions not supported for Win16\n" );
595             goto error;
596         }
597         if (!strcmp( odp->name, "@" ))
598         {
599             free( odp->name );
600             odp->name = NULL;
601         }
602         else if (!(odp->flags & FLAG_ORDINAL))  /* -ordinal only affects the import library */
603         {
604             odp->export_name = odp->name;
605             odp->name = NULL;
606         }
607     }
608     return 1;
609
610 error:
611     spec->nb_entry_points--;
612     free( odp->name );
613     return 0;
614 }
615
616
617 static int name_compare( const void *ptr1, const void *ptr2 )
618 {
619     const ORDDEF *odp1 = *(const ORDDEF * const *)ptr1;
620     const ORDDEF *odp2 = *(const ORDDEF * const *)ptr2;
621     const char *name1 = odp1->name ? odp1->name : odp1->export_name;
622     const char *name2 = odp2->name ? odp2->name : odp2->export_name;
623     return strcmp( name1, name2 );
624 }
625
626 /*******************************************************************
627  *         assign_names
628  *
629  * Build the name array and catch duplicates.
630  */
631 static void assign_names( DLLSPEC *spec )
632 {
633     int i, j, nb_exp_names = 0;
634     ORDDEF **all_names;
635
636     spec->nb_names = 0;
637     for (i = 0; i < spec->nb_entry_points; i++)
638         if (spec->entry_points[i].name) spec->nb_names++;
639         else if (spec->entry_points[i].export_name) nb_exp_names++;
640
641     if (!spec->nb_names && !nb_exp_names) return;
642
643     /* check for duplicates */
644
645     all_names = xmalloc( (spec->nb_names + nb_exp_names) * sizeof(all_names[0]) );
646     for (i = j = 0; i < spec->nb_entry_points; i++)
647         if (spec->entry_points[i].name || spec->entry_points[i].export_name)
648             all_names[j++] = &spec->entry_points[i];
649
650     qsort( all_names, j, sizeof(all_names[0]), name_compare );
651
652     for (i = 0; i < j - 1; i++)
653     {
654         const char *name1 = all_names[i]->name ? all_names[i]->name : all_names[i]->export_name;
655         const char *name2 = all_names[i+1]->name ? all_names[i+1]->name : all_names[i+1]->export_name;
656         if (!strcmp( name1, name2 ) &&
657             !((all_names[i]->flags ^ all_names[i+1]->flags) & FLAG_EXPORT32))
658         {
659             current_line = max( all_names[i]->lineno, all_names[i+1]->lineno );
660             error( "'%s' redefined\n%s:%d: First defined here\n",
661                    name1, input_file_name,
662                    min( all_names[i]->lineno, all_names[i+1]->lineno ) );
663         }
664     }
665     free( all_names );
666
667     if (spec->nb_names)
668     {
669         spec->names = xmalloc( spec->nb_names * sizeof(spec->names[0]) );
670         for (i = j = 0; i < spec->nb_entry_points; i++)
671             if (spec->entry_points[i].name) spec->names[j++] = &spec->entry_points[i];
672
673         /* sort the list of names */
674         qsort( spec->names, spec->nb_names, sizeof(spec->names[0]), name_compare );
675     }
676 }
677
678 /*******************************************************************
679  *         assign_ordinals
680  *
681  * Build the ordinal array.
682  */
683 static void assign_ordinals( DLLSPEC *spec )
684 {
685     int i, count, ordinal;
686
687     /* start assigning from base, or from 1 if no ordinal defined yet */
688
689     spec->base = MAX_ORDINALS;
690     spec->limit = 0;
691     for (i = 0; i < spec->nb_entry_points; i++)
692     {
693         ordinal = spec->entry_points[i].ordinal;
694         if (ordinal == -1) continue;
695         if (ordinal > spec->limit) spec->limit = ordinal;
696         if (ordinal < spec->base) spec->base = ordinal;
697     }
698     if (spec->base == MAX_ORDINALS) spec->base = 1;
699     if (spec->limit < spec->base) spec->limit = spec->base;
700
701     count = max( spec->limit + 1, spec->base + spec->nb_entry_points );
702     spec->ordinals = xmalloc( count * sizeof(spec->ordinals[0]) );
703     memset( spec->ordinals, 0, count * sizeof(spec->ordinals[0]) );
704
705     /* fill in all explicitly specified ordinals */
706     for (i = 0; i < spec->nb_entry_points; i++)
707     {
708         ordinal = spec->entry_points[i].ordinal;
709         if (ordinal == -1) continue;
710         if (spec->ordinals[ordinal])
711         {
712             current_line = max( spec->entry_points[i].lineno, spec->ordinals[ordinal]->lineno );
713             error( "ordinal %d redefined\n%s:%d: First defined here\n",
714                    ordinal, input_file_name,
715                    min( spec->entry_points[i].lineno, spec->ordinals[ordinal]->lineno ) );
716         }
717         else spec->ordinals[ordinal] = &spec->entry_points[i];
718     }
719
720     /* now assign ordinals to the rest */
721     for (i = 0, ordinal = spec->base; i < spec->nb_entry_points; i++)
722     {
723         if (spec->entry_points[i].ordinal != -1) continue;
724         while (spec->ordinals[ordinal]) ordinal++;
725         if (ordinal >= MAX_ORDINALS)
726         {
727             current_line = spec->entry_points[i].lineno;
728             fatal_error( "Too many functions defined (max %d)\n", MAX_ORDINALS );
729         }
730         spec->entry_points[i].ordinal = ordinal;
731         spec->ordinals[ordinal] = &spec->entry_points[i];
732     }
733     if (ordinal > spec->limit) spec->limit = ordinal;
734 }
735
736
737 /*******************************************************************
738  *         add_16bit_exports
739  *
740  * Add the necessary exports to the 32-bit counterpart of a 16-bit module.
741  */
742 void add_16bit_exports( DLLSPEC *spec32, DLLSPEC *spec16 )
743 {
744     int i;
745     ORDDEF *odp;
746
747     spec32->file_name = xstrdup( spec16->file_name );
748     if (spec16->characteristics & IMAGE_FILE_DLL)
749     {
750         spec32->characteristics = IMAGE_FILE_DLL;
751         spec32->init_func = xstrdup( "__wine_spec_dll_entry" );
752     }
753
754     /* add an export for the NE module */
755
756     odp = add_entry_point( spec32 );
757     odp->type = TYPE_EXTERN;
758     odp->flags = FLAG_PRIVATE;
759     odp->name = xstrdup( "__wine_spec_dos_header" );
760     odp->lineno = 0;
761     odp->ordinal = 1;
762     odp->link_name = xstrdup( ".L__wine_spec_dos_header" );
763
764     if (spec16->main_module)
765     {
766         odp = add_entry_point( spec32 );
767         odp->type = TYPE_EXTERN;
768         odp->flags = FLAG_PRIVATE;
769         odp->name = xstrdup( "__wine_spec_main_module" );
770         odp->lineno = 0;
771         odp->ordinal = 2;
772         odp->link_name = xstrdup( ".L__wine_spec_main_module" );
773     }
774
775     /* add the explicit win32 exports */
776
777     for (i = 1; i <= spec16->limit; i++)
778     {
779         ORDDEF *odp16 = spec16->ordinals[i];
780
781         if (!odp16 || !odp16->name) continue;
782         if (!(odp16->flags & FLAG_EXPORT32)) continue;
783
784         odp = add_entry_point( spec32 );
785         odp->flags = odp16->flags & ~FLAG_EXPORT32;
786         odp->type = odp16->type;
787         odp->name = xstrdup( odp16->name );
788         odp->lineno = odp16->lineno;
789         odp->ordinal = -1;
790         odp->link_name = xstrdup( odp16->link_name );
791         strcpy( odp->u.func.arg_types, odp16->u.func.arg_types );
792     }
793
794     assign_names( spec32 );
795     assign_ordinals( spec32 );
796 }
797
798
799 /*******************************************************************
800  *         parse_spec_file
801  *
802  * Parse a .spec file.
803  */
804 int parse_spec_file( FILE *file, DLLSPEC *spec )
805 {
806     const char *token;
807
808     input_file = file;
809     current_line = 0;
810
811     comment_chars = "#;";
812     separator_chars = "()-";
813
814     while (get_next_line())
815     {
816         if (!(token = GetToken(1))) continue;
817         if (strcmp(token, "@") == 0)
818         {
819             if (!parse_spec_ordinal( -1, spec )) continue;
820         }
821         else if (IsNumberString(token))
822         {
823             if (!parse_spec_ordinal( atoi(token), spec )) continue;
824         }
825         else
826         {
827             error( "Expected ordinal declaration, got '%s'\n", token );
828             continue;
829         }
830         if ((token = GetToken(1))) error( "Syntax error near '%s'\n", token );
831     }
832
833     current_line = 0;  /* no longer parsing the input file */
834     assign_names( spec );
835     assign_ordinals( spec );
836     return !nb_errors;
837 }
838
839
840 /*******************************************************************
841  *         parse_def_library
842  *
843  * Parse a LIBRARY declaration in a .def file.
844  */
845 static int parse_def_library( DLLSPEC *spec )
846 {
847     const char *token = GetToken(1);
848
849     if (!token) return 1;
850     if (strcmp( token, "BASE" ))
851     {
852         free( spec->file_name );
853         spec->file_name = xstrdup( token );
854         if (!(token = GetToken(1))) return 1;
855     }
856     if (strcmp( token, "BASE" ))
857     {
858         error( "Expected library name or BASE= declaration, got '%s'\n", token );
859         return 0;
860     }
861     if (!(token = GetToken(0))) return 0;
862     if (strcmp( token, "=" ))
863     {
864         error( "Expected '=' after BASE, got '%s'\n", token );
865         return 0;
866     }
867     if (!(token = GetToken(0))) return 0;
868     /* FIXME: do something with base address */
869
870     return 1;
871 }
872
873
874 /*******************************************************************
875  *         parse_def_stack_heap_size
876  *
877  * Parse a STACKSIZE or HEAPSIZE declaration in a .def file.
878  */
879 static int parse_def_stack_heap_size( int is_stack, DLLSPEC *spec )
880 {
881     const char *token = GetToken(0);
882     char *end;
883     unsigned long size;
884
885     if (!token) return 0;
886     size = strtoul( token, &end, 0 );
887     if (*end)
888     {
889         error( "Invalid number '%s'\n", token );
890         return 0;
891     }
892     if (is_stack) spec->stack_size = size / 1024;
893     else spec->heap_size = size / 1024;
894     if (!(token = GetToken(1))) return 1;
895     if (strcmp( token, "," ))
896     {
897         error( "Expected ',' after size, got '%s'\n", token );
898         return 0;
899     }
900     if (!(token = GetToken(0))) return 0;
901     /* FIXME: do something with reserve size */
902     return 1;
903 }
904
905
906 /*******************************************************************
907  *         parse_def_export
908  *
909  * Parse an export declaration in a .def file.
910  */
911 static int parse_def_export( char *name, DLLSPEC *spec )
912 {
913     int i, args;
914     const char *token = GetToken(1);
915     ORDDEF *odp = add_entry_point( spec );
916
917     odp->lineno = current_line;
918     odp->ordinal = -1;
919     odp->name = name;
920     args = remove_stdcall_decoration( odp->name );
921     if (args == -1) odp->type = TYPE_CDECL;
922     else
923     {
924         odp->type = TYPE_STDCALL;
925         args /= get_ptr_size();
926         if (args >= sizeof(odp->u.func.arg_types))
927         {
928             error( "Too many arguments in stdcall function '%s'\n", odp->name );
929             return 0;
930         }
931         for (i = 0; i < args; i++) odp->u.func.arg_types[i] = 'l';
932     }
933
934     /* check for optional internal name */
935
936     if (token && !strcmp( token, "=" ))
937     {
938         if (!(token = GetToken(0))) goto error;
939         odp->link_name = xstrdup( token );
940         remove_stdcall_decoration( odp->link_name );
941         token = GetToken(1);
942     }
943     else
944     {
945       odp->link_name = xstrdup( name );
946     }
947
948     /* check for optional ordinal */
949
950     if (token && token[0] == '@')
951     {
952         int ordinal;
953
954         if (!IsNumberString( token+1 ))
955         {
956             error( "Expected number after '@', got '%s'\n", token+1 );
957             goto error;
958         }
959         ordinal = atoi( token+1 );
960         if (!ordinal)
961         {
962             error( "Ordinal 0 is not valid\n" );
963             goto error;
964         }
965         if (ordinal >= MAX_ORDINALS)
966         {
967             error( "Ordinal number %d too large\n", ordinal );
968             goto error;
969         }
970         odp->ordinal = ordinal;
971         token = GetToken(1);
972     }
973
974     /* check for other optional keywords */
975
976     while (token)
977     {
978         if (!strcmp( token, "NONAME" ))
979         {
980             if (odp->ordinal == -1)
981             {
982                 error( "NONAME requires an ordinal\n" );
983                 goto error;
984             }
985             odp->export_name = odp->name;
986             odp->name = NULL;
987             odp->flags |= FLAG_NONAME;
988         }
989         else if (!strcmp( token, "PRIVATE" ))
990         {
991             odp->flags |= FLAG_PRIVATE;
992         }
993         else if (!strcmp( token, "DATA" ))
994         {
995             odp->type = TYPE_EXTERN;
996         }
997         else
998         {
999             error( "Garbage text '%s' found at end of export declaration\n", token );
1000             goto error;
1001         }
1002         token = GetToken(1);
1003     }
1004     return 1;
1005
1006 error:
1007     spec->nb_entry_points--;
1008     free( odp->name );
1009     return 0;
1010 }
1011
1012
1013 /*******************************************************************
1014  *         parse_def_file
1015  *
1016  * Parse a .def file.
1017  */
1018 int parse_def_file( FILE *file, DLLSPEC *spec )
1019 {
1020     const char *token;
1021     int in_exports = 0;
1022
1023     input_file = file;
1024     current_line = 0;
1025
1026     comment_chars = ";";
1027     separator_chars = ",=";
1028
1029     while (get_next_line())
1030     {
1031         if (!(token = GetToken(1))) continue;
1032
1033         if (!strcmp( token, "LIBRARY" ) || !strcmp( token, "NAME" ))
1034         {
1035             if (!parse_def_library( spec )) continue;
1036             goto end_of_line;
1037         }
1038         else if (!strcmp( token, "STACKSIZE" ))
1039         {
1040             if (!parse_def_stack_heap_size( 1, spec )) continue;
1041             goto end_of_line;
1042         }
1043         else if (!strcmp( token, "HEAPSIZE" ))
1044         {
1045             if (!parse_def_stack_heap_size( 0, spec )) continue;
1046             goto end_of_line;
1047         }
1048         else if (!strcmp( token, "EXPORTS" ))
1049         {
1050             in_exports = 1;
1051             if (!(token = GetToken(1))) continue;
1052         }
1053         else if (!strcmp( token, "IMPORTS" ))
1054         {
1055             in_exports = 0;
1056             if (!(token = GetToken(1))) continue;
1057         }
1058         else if (!strcmp( token, "SECTIONS" ))
1059         {
1060             in_exports = 0;
1061             if (!(token = GetToken(1))) continue;
1062         }
1063
1064         if (!in_exports) continue;  /* ignore this line */
1065         if (!parse_def_export( xstrdup(token), spec )) continue;
1066
1067     end_of_line:
1068         if ((token = GetToken(1))) error( "Syntax error near '%s'\n", token );
1069     }
1070
1071     current_line = 0;  /* no longer parsing the input file */
1072     assign_names( spec );
1073     assign_ordinals( spec );
1074     return !nb_errors;
1075 }