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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 _globals globals
; /* All global variables */
28 static void do_include (const char *arg
)
30 if (!globals
.directory
)
31 globals
.directory
= xstrdup(arg
);
33 globals
.directory
= strmake( "%s %s", globals
.directory
, arg
);
34 globals
.do_code
= TRUE
;
38 static inline const char* strip_ext (const char *str
)
40 int len
= strlen(str
);
41 if (len
>4 && strcmp(str
+len
-4,".dll") == 0)
42 return str_substring (str
, str
+len
-4);
48 static void do_name (const char *arg
)
50 globals
.dll_name
= strip_ext (arg
);
54 static void do_spec (const char *arg
)
56 if (globals
.mode
!= NONE
) fatal("Only one mode can be specified\n");
61 static void do_demangle (const char *arg
)
63 if (globals
.mode
!= NONE
) fatal("Only one mode can be specified\n");
65 globals
.do_code
= TRUE
;
66 globals
.do_demangle
= TRUE
;
70 static void do_dump (const char *arg
)
72 if (globals
.mode
!= NONE
) fatal("Only one mode can be specified\n");
74 globals
.do_code
= TRUE
;
78 static void do_code (const char *arg
)
80 globals
.do_code
= TRUE
;
84 static void do_trace (const char *arg
)
86 globals
.do_trace
= TRUE
;
87 globals
.do_code
= TRUE
;
91 static void do_forward (const char *arg
)
93 globals
.forward_dll
= arg
;
94 globals
.do_trace
= TRUE
;
95 globals
.do_code
= TRUE
;
98 static void do_document (const char *arg
)
100 globals
.do_documentation
= TRUE
;
103 static void do_cdecl (const char *arg
)
105 globals
.do_cdecl
= TRUE
;
109 static void do_quiet (const char *arg
)
111 globals
.do_quiet
= TRUE
;
115 static void do_start (const char *arg
)
117 globals
.start_ordinal
= atoi (arg
);
118 if (!globals
.start_ordinal
)
119 fatal ("Invalid -s option (must be numeric)");
123 static void do_end (const char *arg
)
125 globals
.end_ordinal
= atoi (arg
);
126 if (!globals
.end_ordinal
)
127 fatal ("Invalid -e option (must be numeric)");
131 static void do_symfile (const char *arg
)
134 char symstring
[256]; /* keep count with "%<width>s" below */
135 search_symbol
*symbolp
,**symbolptail
= &globals
.search_symbol
;
137 if (!(f
= fopen(arg
, "rt")))
138 fatal ("Cannot open <symfile>");
139 while (1 == fscanf(f
, "%255s", symstring
)) /* keep count with [<width>] above */
141 symstring
[sizeof(symstring
)-1] = '\0';
142 symbolp
= xmalloc(sizeof(*symbolp
) + strlen(symstring
));
143 strcpy(symbolp
->symbolname
, symstring
);
144 symbolp
->found
= FALSE
;
145 symbolp
->next
= NULL
;
146 *symbolptail
= symbolp
;
147 symbolptail
= &symbolp
->next
;
150 fatal ("Cannot close <symfile>");
154 static void do_verbose (const char *arg
)
156 globals
.do_verbose
= TRUE
;
160 static void do_symdmngl (const char *arg
)
162 globals
.do_demangle
= TRUE
;
165 static void do_dumphead (const char *arg
)
167 globals
.do_dumpheader
= TRUE
;
170 static void do_dumpsect (const char* arg
)
172 globals
.dumpsect
= arg
;
175 static void do_rawdebug (const char *arg
)
177 globals
.do_debug
= TRUE
;
180 static void do_dumpall(const char *arg
)
182 globals
.do_dumpheader
= TRUE
;
183 globals
.do_dump_rawdata
= TRUE
;
184 globals
.do_symbol_table
= TRUE
;
185 globals
.dumpsect
= "ALL";
188 static void do_symtable(const char* arg
)
190 globals
.do_symbol_table
= TRUE
;
198 void (*func
)(const char *arg
);
202 static const struct my_option option_table
[] = {
203 {"--help",NONE
, 0, do_usage
, "--help Display this help message"},
204 {"-h", NONE
, 0, do_usage
, "-h Synonym for --help"},
205 {"-?", NONE
, 0, do_usage
, "-? Synonym for --help"},
206 {"dump", DUMP
, 0, do_dump
, "dump <file> Dump the contents of 'file' (dll, exe, lib...)"},
207 {"-C", DUMP
, 0, do_symdmngl
, "-C Turn on symbol demangling"},
208 {"-f", DUMP
, 0, do_dumphead
, "-f Dump file header information"},
209 {"-G", DUMP
, 0, do_rawdebug
, "-G Dump raw debug information"},
210 {"-j", DUMP
, 1, do_dumpsect
, "-j <sect_name> Dump only the content of section 'sect_name' (import, export, debug, resource, tls, loadcfg, clr, reloc, except)"},
211 {"-t", DUMP
, 0, do_symtable
, "-t Dump symbol table"},
212 {"-x", DUMP
, 0, do_dumpall
, "-x Dump everything"},
213 {"sym", DMGL
, 0, do_demangle
, "sym <sym> Demangle C++ symbol <sym> and exit"},
214 {"spec", SPEC
, 0, do_spec
, "spec <dll> Use 'dll' for input file and generate implementation code"},
215 {"-I", SPEC
, 1, do_include
, "-I <dir> Look for prototypes in 'dir' (implies -c)"},
216 {"-c", SPEC
, 0, do_code
, "-c Generate skeleton code (requires -I)"},
217 {"-t", SPEC
, 0, do_trace
, "-t TRACE arguments (implies -c)"},
218 {"-f", SPEC
, 1, do_forward
, "-f <dll> Forward calls to 'dll' (implies -t)"},
219 {"-D", SPEC
, 0, do_document
, "-D Generate documentation"},
220 {"-o", SPEC
, 1, do_name
, "-o <name> Set the output dll name (default: dll). Note: strips .dll extensions"},
221 {"-C", SPEC
, 0, do_cdecl
, "-C Assume __cdecl calls (default: __stdcall)"},
222 {"-s", SPEC
, 1, do_start
, "-s <num> Start prototype search after symbol 'num'"},
223 {"-e", SPEC
, 1, do_end
, "-e <num> End prototype search after symbol 'num'"},
224 {"-S", SPEC
, 1, do_symfile
, "-S <symfile> Search only prototype names found in 'symfile'"},
225 {"-q", SPEC
, 0, do_quiet
, "-q Don't show progress (quiet)."},
226 {"-v", SPEC
, 0, do_verbose
, "-v Show lots of detail while working (verbose)."},
227 {NULL
, NONE
, 0, NULL
, NULL
}
230 void do_usage (const char *arg
)
232 const struct my_option
*opt
;
233 printf ("Usage: winedump [-h | sym <sym> | spec <dll> | dump <file>]\n");
234 printf ("Mode options (can be put as the mode (sym/spec/dump...) is declared):\n");
235 printf ("\tWhen used in --help mode\n");
236 for (opt
= option_table
; opt
->name
; opt
++)
237 if (opt
->mode
== NONE
)
238 printf ("\t %s\n", opt
->usage
);
239 printf ("\tWhen used in sym mode\n");
240 for (opt
= option_table
; opt
->name
; opt
++)
241 if (opt
->mode
== DMGL
)
242 printf ("\t %s\n", opt
->usage
);
243 printf ("\tWhen used in spec mode\n");
244 for (opt
= option_table
; opt
->name
; opt
++)
245 if (opt
->mode
== SPEC
)
246 printf ("\t %s\n", opt
->usage
);
247 printf ("\tWhen used in dump mode\n");
248 for (opt
= option_table
; opt
->name
; opt
++)
249 if (opt
->mode
== DUMP
)
250 printf ("\t %s\n", opt
->usage
);
257 /*******************************************************************
260 * Parse options from the argv array
262 static void parse_cmdline (char *argv
[])
264 const struct my_option
*opt
;
266 const char *arg
= NULL
;
272 for (opt
= option_table
; opt
->name
; opt
++)
274 if (globals
.mode
!= NONE
&& opt
->mode
!= NONE
&& globals
.mode
!= opt
->mode
)
276 if (((opt
->has_arg
== 1) && !strncmp (*ptr
, opt
->name
, strlen (opt
->name
))) ||
277 ((opt
->has_arg
== 2) && !strcmp (*ptr
, opt
->name
)))
279 arg
= *ptr
+ strlen (opt
->name
);
280 if (*arg
== '\0') arg
= *++ptr
;
283 if (!strcmp (*ptr
, opt
->name
))
292 if ((*ptr
)[0] == '-')
293 fatal ("Unrecognized option");
294 if (globals
.input_name
!= NULL
)
295 fatal ("Only one file can be treated at once");
296 globals
.input_name
= *ptr
;
298 else if (opt
->has_arg
&& arg
!= NULL
)
306 if (globals
.mode
== SPEC
&& globals
.do_code
&& !globals
.directory
)
307 fatal ("-I must be used if generating code");
309 if (VERBOSE
&& QUIET
)
310 fatal ("Options -v and -q are mutually exclusive");
312 if (globals
.mode
== NONE
)
316 static void set_module_name(BOOL setUC
)
318 /* FIXME: we shouldn't assume all module extensions are .dll in winedump
319 * in some cases, we could have some .drv for example
321 globals
.input_module
= replace_extension( get_basename( globals
.input_name
), ".dll", "" );
322 OUTPUT_UC_DLL_NAME
= (setUC
) ? str_toupper( xstrdup (OUTPUT_DLL_NAME
)) : "";
325 /* Marks the symbol as 'found'! */
326 /* return: perform-search */
327 static BOOL
symbol_searched(int count
, const char *symbolname
)
329 search_symbol
*search_symbol
;
331 if (!(count
>= globals
.start_ordinal
332 && (!globals
.end_ordinal
|| count
<= globals
.end_ordinal
)))
334 if (!globals
.search_symbol
)
336 for (search_symbol
= globals
.search_symbol
;
338 search_symbol
= search_symbol
->next
)
340 if (!strcmp(symbolname
, search_symbol
->symbolname
))
342 search_symbol
->found
= TRUE
;
349 /* return: some symbols weren't found */
350 static BOOL
symbol_finish(void)
352 const search_symbol
*search_symbol
;
353 BOOL started
= FALSE
;
355 for (search_symbol
= globals
.search_symbol
;
357 search_symbol
= search_symbol
->next
)
359 if (search_symbol
->found
)
363 /* stderr? not a practice here */
364 puts("These requested <symfile> symbols weren't found:");
367 printf("\t%s\n",search_symbol
->symbolname
);
372 /*******************************************************************
376 int main (int argc
__attribute__((unused
)), char *argv
[])
378 int main (int argc
, char *argv
[])
381 parsed_symbol symbol
;
385 globals
.forward_dll
= NULL
;
386 globals
.input_name
= NULL
;
387 globals
.dumpsect
= NULL
;
389 parse_cmdline (argv
);
391 memset (&symbol
, 0, sizeof (parsed_symbol
));
393 switch (globals
.mode
)
398 if (globals
.input_name
== NULL
)
399 fatal("No symbol name has been given\n");
400 printf("%s\n", get_symbol_str(globals
.input_name
));
404 if (globals
.input_name
== NULL
)
405 fatal("No file name has been given\n");
406 set_module_name(TRUE
);
407 if (!dll_open (globals
.input_name
))
410 output_spec_preamble ();
411 output_header_preamble ();
412 output_c_preamble ();
414 while (dll_next_symbol (&symbol
))
419 printf ("Export %3d - '%s' ...%c", count
, symbol
.symbol
,
420 VERBOSE
? '\n' : ' ');
422 if (globals
.do_code
&& symbol_searched(count
, symbol
.symbol
))
424 /* Attempt to get information about the symbol */
425 BOOL result
= symbol_demangle (&symbol
) || symbol_search(&symbol
);
427 if (result
&& symbol
.function_name
)
428 /* Clean up the prototype */
429 symbol_clean_string (symbol
.function_name
);
432 puts (result
? "[OK]" : "[Not Found]");
437 output_spec_symbol (&symbol
);
438 output_header_symbol (&symbol
);
439 output_c_symbol (&symbol
);
441 symbol_clear (&symbol
);
447 puts ("Finished, Cleaning up...");
455 if (globals
.input_name
== NULL
)
456 fatal("No file name has been given\n");
457 set_module_name(FALSE
);
458 dump_file(globals
.input_name
);