2 * Option processing and main()
4 * Copyright 2000 Jon Griffiths
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 _globals globals
; /* All global variables */
28 static void do_include (const char *arg
)
30 globals
.directory
= arg
;
35 static inline const char* strip_ext (const char *str
)
37 char *ext
= strstr(str
, ".dll");
39 return str_substring (str
, ext
);
45 static void do_name (const char *arg
)
47 globals
.dll_name
= strip_ext (arg
);
51 static void do_spec (const char *arg
)
53 if (globals
.mode
!= NONE
) fatal("Only one mode can be specified\n");
58 static void do_demangle (const char *arg
)
60 if (globals
.mode
!= NONE
) fatal("Only one mode can be specified\n");
66 static void do_dump (const char *arg
)
68 if (globals
.mode
!= NONE
) fatal("Only one mode can be specified\n");
74 static void do_code (void)
80 static void do_trace (void)
87 static void do_forward (const char *arg
)
89 globals
.forward_dll
= arg
;
94 static void do_document (void)
96 globals
.do_documentation
= 1;
99 static void do_cdecl (void)
101 globals
.do_cdecl
= 1;
105 static void do_quiet (void)
107 globals
.do_quiet
= 1;
111 static void do_start (const char *arg
)
113 globals
.start_ordinal
= atoi (arg
);
114 if (!globals
.start_ordinal
)
115 fatal ("Invalid -s option (must be numeric)");
119 static void do_end (const char *arg
)
121 globals
.end_ordinal
= atoi (arg
);
122 if (!globals
.end_ordinal
)
123 fatal ("Invalid -e option (must be numeric)");
127 static void do_symfile (const char *arg
)
130 char symstring
[256]; /* keep count with "%<width>s" below */
131 search_symbol
*symbolp
,**symbolptail
= &globals
.search_symbol
;
133 if (!(f
= fopen(arg
, "rt")))
134 fatal ("Cannot open <symfile>");
135 while (1 == fscanf(f
, "%255s", symstring
)) /* keep count with [<width>] above */
137 symstring
[sizeof(symstring
)-1] = '\0';
138 if (!(symbolp
= malloc(sizeof(*symbolp
) + strlen(symstring
))))
139 fatal ("Out of memory");
140 strcpy(symbolp
->symbolname
, symstring
);
142 symbolp
->next
= NULL
;
143 *symbolptail
= symbolp
;
144 symbolptail
= &symbolp
->next
;
147 fatal ("Cannot close <symfile>");
151 static void do_verbose (void)
153 globals
.do_verbose
= 1;
157 static void do_symdmngl (void)
159 globals
.do_demangle
= 1;
162 static void do_dumphead (void)
164 globals
.do_dumpheader
= 1;
167 static void do_dumpsect (const char* arg
)
169 globals
.dumpsect
= arg
;
172 static void do_dumpall(void)
174 globals
.do_dumpheader
= 1;
175 globals
.dumpsect
= "ALL";
187 static const struct option option_table
[] = {
188 {"-h", NONE
, 0, do_usage
, "-h Display this help message"},
189 {"sym", DMGL
, 0, do_demangle
, "sym <sym> Demangle C++ symbol <sym> and exit"},
190 {"spec", SPEC
, 0, do_spec
, "spec <dll> Use dll for input file and generate implementation code"},
191 {"-I", SPEC
, 1, do_include
, "-I dir Look for prototypes in 'dir' (implies -c)"},
192 {"-c", SPEC
, 0, do_code
, "-c Generate skeleton code (requires -I)"},
193 {"-t", SPEC
, 0, do_trace
, "-t TRACE arguments (implies -c)"},
194 {"-f", SPEC
, 1, do_forward
, "-f dll Forward calls to 'dll' (implies -t)"},
195 {"-D", SPEC
, 0, do_document
, "-D Generate documentation"},
196 {"-o", SPEC
, 1, do_name
, "-o name Set the output dll name (default: dll)"},
197 {"-C", SPEC
, 0, do_cdecl
, "-C Assume __cdecl calls (default: __stdcall)"},
198 {"-s", SPEC
, 1, do_start
, "-s num Start prototype search after symbol 'num'"},
199 {"-e", SPEC
, 1, do_end
, "-e num End prototype search after symbol 'num'"},
200 {"-S", SPEC
, 1, do_symfile
, "-S symfile Search only prototype names found in 'symfile'"},
201 {"-q", SPEC
, 0, do_quiet
, "-q Don't show progress (quiet)."},
202 {"-v", SPEC
, 0, do_verbose
, "-v Show lots of detail while working (verbose)."},
203 {"dump", DUMP
, 0, do_dump
, "dump <mod> Dumps the content of the module (dll, exe...) named <mod>"},
204 {"-C", DUMP
, 0, do_symdmngl
, "-C Turns on symbol demangling"},
205 {"-f", DUMP
, 0, do_dumphead
, "-f Dumps file header information"},
206 {"-j", DUMP
, 1, do_dumpsect
, "-j sect_name Dumps only the content of section sect_name (import, export, debug)"},
207 {"-x", DUMP
, 0, do_dumpall
, "-x Dumps everything"},
208 {NULL
, NONE
, 0, NULL
, NULL
}
213 const struct option
*opt
;
214 printf ("Usage: winedump [-h | sym <sym> | spec <dll> | dump <dll>]\n");
215 printf ("Mode options (can be put as the mode (sym/spec/dump...) is declared):\n");
216 printf ("\tWhen used in -h mode\n");
217 for (opt
= option_table
; opt
->name
; opt
++)
218 if (opt
->mode
== NONE
)
219 printf ("\t %s\n", opt
->usage
);
220 printf ("\tWhen used in sym mode\n");
221 for (opt
= option_table
; opt
->name
; opt
++)
222 if (opt
->mode
== DMGL
)
223 printf ("\t %s\n", opt
->usage
);
224 printf ("\tWhen used in spec mode\n");
225 for (opt
= option_table
; opt
->name
; opt
++)
226 if (opt
->mode
== SPEC
)
227 printf ("\t %s\n", opt
->usage
);
228 printf ("\tWhen used in dump mode\n");
229 for (opt
= option_table
; opt
->name
; opt
++)
230 if (opt
->mode
== DUMP
)
231 printf ("\t %s\n", opt
->usage
);
238 /*******************************************************************
241 * Parse options from the argv array
243 static void parse_options (char *argv
[])
245 const struct option
*opt
;
247 const char *arg
= NULL
;
253 for (opt
= option_table
; opt
->name
; opt
++)
255 if (globals
.mode
!= NONE
&& opt
->mode
!= NONE
&& globals
.mode
!= opt
->mode
)
257 if (((opt
->has_arg
== 1) && !strncmp (*ptr
, opt
->name
, strlen (opt
->name
))) ||
258 ((opt
->has_arg
== 2) && !strcmp (*ptr
, opt
->name
)))
260 arg
= *ptr
+ strlen (opt
->name
);
261 if (*arg
== '\0') arg
= *++ptr
;
264 if (!strcmp (*ptr
, opt
->name
))
273 if ((*ptr
)[0] == '-')
274 fatal ("Unrecognized option");
275 if (globals
.input_name
!= NULL
)
276 fatal ("Only one file can be treated at once");
277 globals
.input_name
= *ptr
;
279 else if (opt
->has_arg
&& arg
!= NULL
)
287 if (globals
.mode
== SPEC
&& globals
.do_code
&& !globals
.directory
)
288 fatal ("-I must be used if generating code");
290 if (VERBOSE
&& QUIET
)
291 fatal ("Options -v and -q are mutually exclusive");
294 static void set_module_name(unsigned setUC
)
300 /* FIXME: we shouldn't assume all module extensions are .dll in winedump
301 * in some cases, we could have some .drv for example
303 /* get module name from name */
304 if ((ptr
= strrchr (globals
.input_name
, '/')))
307 ptr
= globals
.input_name
;
309 if (len
> 4 && strcmp(ptr
+ len
- 4, ".dll") == 0)
311 buf
= malloc(len
+ 1);
312 memcpy(buf
, (void*)ptr
, len
);
314 globals
.input_module
= buf
;
315 OUTPUT_UC_DLL_NAME
= (setUC
) ? str_toupper( strdup (OUTPUT_DLL_NAME
)) : "";
318 /* Marks the symbol as 'found'! */
319 /* return: perform-search */
320 static int symbol_searched(int count
, const char *symbolname
)
322 search_symbol
*search_symbol
;
324 if (!(count
>= globals
.start_ordinal
325 && (!globals
.end_ordinal
|| count
<= globals
.end_ordinal
)))
327 if (!globals
.search_symbol
)
329 for (search_symbol
= globals
.search_symbol
;
331 search_symbol
= search_symbol
->next
)
333 if (!strcmp(symbolname
, search_symbol
->symbolname
))
335 search_symbol
->found
= 1;
342 /* return: some symbols weren't found */
343 static int symbol_finish(void)
345 const search_symbol
*search_symbol
;
348 for (search_symbol
= globals
.search_symbol
;
350 search_symbol
= search_symbol
->next
)
352 if (search_symbol
->found
)
356 /* stderr? not a practice here */
357 puts("These requested <symfile> symbols weren't found:");
360 printf("\t%s\n",search_symbol
->symbolname
);
365 /*******************************************************************
369 int main (int argc
__attribute__((unused
)), char *argv
[])
371 int main (int argc
, char *argv
[])
374 parsed_symbol symbol
;
378 globals
.forward_dll
= NULL
;
379 globals
.input_name
= NULL
;
381 parse_options (argv
);
383 memset (&symbol
, 0, sizeof (parsed_symbol
));
385 switch (globals
.mode
)
388 globals
.uc_dll_name
= "";
391 symbol_init (&symbol
, globals
.input_name
);
392 globals
.input_module
= "";
393 if (symbol_demangle (&symbol
) == -1)
394 fatal( "Symbol hasn't got a mangled name\n");
395 if (symbol
.flags
& SYM_DATA
)
396 printf (symbol
.arg_text
[0]);
398 output_prototype (stdout
, &symbol
);
399 fputc ('\n', stdout
);
400 symbol_clear(&symbol
);
404 if (globals
.input_name
== NULL
)
405 fatal("No file name has been given\n");
407 dll_open (globals
.input_name
);
409 output_spec_preamble ();
410 output_header_preamble ();
411 output_c_preamble ();
413 while (!dll_next_symbol (&symbol
))
418 printf ("Export %3d - '%s' ...%c", count
, symbol
.symbol
,
419 VERBOSE
? '\n' : ' ');
421 if (globals
.do_code
&& symbol_searched(count
, symbol
.symbol
))
423 /* Attempt to get information about the symbol */
424 int result
= symbol_demangle (&symbol
);
427 result
= symbol_search (&symbol
);
429 if (!result
&& symbol
.function_name
)
430 /* Clean up the prototype */
431 symbol_clean_string (symbol
.function_name
);
434 puts (result
? "[Not Found]" : "[OK]");
439 output_spec_symbol (&symbol
);
440 output_header_symbol (&symbol
);
441 output_c_symbol (&symbol
);
443 symbol_clear (&symbol
);
447 output_install_script ();
450 puts ("Finished, Cleaning up...");
458 if (globals
.input_name
== NULL
)
459 fatal("No file name has been given\n");
461 dump_file(globals
.input_name
);