Fixed some issues found by winapi_check.
[wine] / tools / winapi_check / winapi_local.pm
1 #
2 # Copyright 1999, 2000, 2001 Patrik Stridvall
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17 #
18
19 package winapi_local;
20
21 use strict;
22
23 use nativeapi qw($nativeapi);
24 use options qw($options);
25 use output qw($output);
26 use winapi qw($win16api $win32api @winapis);
27
28 sub check_function {
29     my $function = shift;
30
31     my $return_type = $function->return_type;
32     my $calling_convention = $function->calling_convention;
33     my $calling_convention16 = $function->calling_convention16;
34     my $calling_convention32 = $function->calling_convention32;
35     my $internal_name = $function->internal_name;
36     my $external_name16 = $function->external_name16;
37     my $external_name32 = $function->external_name32;
38     my $module16 = $function->module16;
39     my $module32 = $function->module32;
40     my $refargument_types = $function->argument_types;
41
42     if(!defined($refargument_types)) {
43         return;
44     }
45
46     if($options->win16 && $options->report_module($module16)) {
47         _check_function($return_type,
48                         $calling_convention, $external_name16,
49                         $internal_name, $refargument_types,
50                         $win16api);
51     }
52
53     if($options->win32 && $options->report_module($module32)) {
54         _check_function($return_type,
55                         $calling_convention, $external_name32,
56                         $internal_name, $refargument_types,
57                         $win32api);
58     }
59 }
60
61 sub _check_function {
62     my $return_type = shift;
63     my $calling_convention = shift;
64     my $external_name = shift;
65     my $internal_name = shift;
66     my $refargument_types = shift;
67     my @argument_types = @$refargument_types;
68     my $winapi = shift;
69
70     my $module = $winapi->function_internal_module($internal_name);
71
72     if($winapi->name eq "win16") {
73         if($winapi->is_function_stub_in_module($module, $internal_name)) {
74             if($options->implemented) {
75                 $output->write("function implemented but declared as stub in .spec file\n");
76             }
77             return;
78         } elsif($winapi->is_function_stub_in_module($module, $internal_name)) {
79             if($options->implemented_win32) {
80                 $output->write("32-bit variant of function implemented but declared as stub in .spec file\n");
81             }
82             return;
83         }
84     } elsif($winapi->is_function_stub_in_module($module, $internal_name)) {
85         if($options->implemented) {
86             $output->write("function implemented but declared as stub in .spec file\n");
87         }
88         return;
89     }
90
91     my $forbidden_return_type = 0;
92     my $implemented_return_kind;
93     $winapi->type_used_in_module($return_type,$module);
94     if(!defined($implemented_return_kind = $winapi->translate_argument($return_type))) {
95         $winapi->declare_argument($return_type, "unknown");
96         if($return_type ne "") {
97             $output->write("no translation defined: " . $return_type . "\n");
98         }
99     } elsif(!$winapi->is_allowed_kind($implemented_return_kind) ||
100             !$winapi->is_allowed_type_in_module($return_type, $module))
101     {
102         $forbidden_return_type = 1;
103         $winapi->allow_kind($implemented_return_kind);
104         $winapi->allow_type_in_module($return_type, $module);
105         if($options->report_argument_forbidden($return_type)) {
106             $output->write("return type is forbidden: $return_type ($implemented_return_kind)\n");
107         }
108     }
109
110     my $segmented = 0;
111     if(defined($implemented_return_kind) && $implemented_return_kind =~ /^segptr|segstr$/) {
112         $segmented = 1;
113     }
114
115     my $implemented_calling_convention;
116     if($winapi->name eq "win16") {
117         if($calling_convention =~ /^__cdecl$/) {
118             $implemented_calling_convention = "cdecl";
119         } elsif($calling_convention =~ /^VFWAPIV|WINAPIV$/) {
120             $implemented_calling_convention = "varargs";
121         } elsif($calling_convention =~ /^__stdcall|VFWAPI|WINAPI|CALLBACK$/) {
122             if($implemented_return_kind =~ /^s_word|word|void$/) {
123                 $implemented_calling_convention = "pascal16";
124             } else {
125                 $implemented_calling_convention = "pascal";
126             }
127         } elsif($calling_convention =~ /^__asm$/) {
128             $implemented_calling_convention = "asm";
129         } else {
130             $implemented_calling_convention = "cdecl";
131         }
132     } elsif($winapi->name eq "win32") {
133         if($calling_convention =~ /^__cdecl$/) {
134             $implemented_calling_convention = "cdecl";
135         } elsif($calling_convention =~ /^VFWAPIV|WINAPIV$/) {
136             $implemented_calling_convention = "varargs";
137         } elsif($calling_convention =~ /^__stdcall|VFWAPI|WINAPI|CALLBACK$/) {
138             if(defined($implemented_return_kind) && $implemented_return_kind =~ /^longlong$/) {
139                 $implemented_calling_convention = "stdcall"; # FIXME: Check entry flags
140             } else {
141                 $implemented_calling_convention = "stdcall";
142             }
143         } elsif($calling_convention =~ /^__asm$/) {
144             $implemented_calling_convention = "asm";
145         } else {
146             $implemented_calling_convention = "cdecl";
147         }
148     }
149
150     my $declared_calling_convention = $winapi->function_internal_calling_convention($internal_name);
151     my @declared_argument_kinds = split(/\s+/, $winapi->function_internal_arguments($internal_name));
152
153     if($implemented_calling_convention ne $declared_calling_convention &&
154        $implemented_calling_convention ne "asm" &&
155        !($declared_calling_convention =~ /^pascal/ && $forbidden_return_type) &&
156        !($implemented_calling_convention =~ /^cdecl|varargs$/ && $declared_calling_convention =~ /^cdecl|varargs$/))
157     {
158         if($options->calling_convention && (
159             ($options->calling_convention_win16 && $winapi->name eq "win16") ||
160             ($options->calling_convention_win32 && $winapi->name eq "win32")) &&
161             !$nativeapi->is_function($internal_name))
162         {
163             $output->write("calling convention mismatch: $implemented_calling_convention != $declared_calling_convention\n");
164         }
165     }
166
167     if($declared_calling_convention eq "varargs") {
168         if($#argument_types != -1 && $argument_types[$#argument_types] eq "...") {
169             pop @argument_types;
170         } else {
171             $output->write("function not implemented as vararg\n");
172         }
173     } elsif($#argument_types != -1 && $argument_types[$#argument_types] eq "...") {
174         if($#argument_types == 0 || $winapi->name eq "win16") {
175             pop @argument_types;
176         } else {
177             $output->write("function not declared as vararg\n");
178         }
179     }
180
181     if($#argument_types != -1 && $argument_types[$#argument_types] eq "CONTEXT *" &&
182        $internal_name !~ /^(Get|Set)ThreadContext$/) # FIXME: Kludge
183     {
184         $#argument_types--;
185     }
186
187     if($internal_name =~ /^NTDLL__ftol|NTDLL__CIpow$/) { # FIXME: Kludge
188         # ignore
189     } else {
190         my $n = 0;
191         my @argument_kinds = map {
192             my $type = $_;
193             my $kind = "unknown";
194             $winapi->type_used_in_module($type,$module);
195             if($type eq "CONTEXT86 *") {
196                 $kind = "context86";
197             } elsif(!defined($kind = $winapi->translate_argument($type))) {
198                 $winapi->declare_argument($type, "unknown");
199                 $output->write("no translation defined: " . $type . "\n");
200             } elsif(!$winapi->is_allowed_kind($kind) ||
201                     !$winapi->is_allowed_type_in_module($type, $module))
202             {
203                 $winapi->allow_kind($kind);
204                 $winapi->allow_type_in_module($type, $module);
205                 if($options->report_argument_forbidden($type)) {
206                     $output->write("argument " . ($n + 1) . " type is forbidden: " . $type . " (" . $kind . ")\n");
207                 }
208             }
209
210             # FIXME: Kludge
211             if(defined($kind) && $kind eq "struct16") {
212                 $n+=4;
213                 ("long", "long", "long", "long");
214             } elsif(defined($kind) && $kind eq "longlong") {
215                 $n+=2;
216                 ("long", "long");
217             } else {
218                 $n++;
219                 $kind;
220             }
221         } @argument_types;
222
223         for my $n (0..$#argument_kinds) {
224             if(!defined($argument_kinds[$n]) || !defined($declared_argument_kinds[$n])) { next; }
225
226             if($argument_kinds[$n] =~ /^segptr|segstr$/ ||
227                $declared_argument_kinds[$n] =~ /^segptr|segstr$/)
228             {
229                 $segmented = 1;
230             }
231
232             # FIXME: Kludge
233             if(!defined($argument_types[$n])) {
234                 $argument_types[$n] = "";
235             }
236
237             if($argument_kinds[$n] eq "context86") {
238                 # Nothing
239             } elsif(!$winapi->is_allowed_kind($argument_kinds[$n]) ||
240                !$winapi->is_allowed_type_in_module($argument_types[$n], $module))
241             {
242                 $winapi->allow_kind($argument_kinds[$n]);
243                 $winapi->allow_type_in_module($argument_types[$n],, $module);
244                 if($options->report_argument_forbidden($argument_types[$n])) {
245                     $output->write("argument " . ($n + 1) . " type is forbidden: " .
246                                    "$argument_types[$n] ($argument_kinds[$n])\n");
247                 }
248             } elsif($argument_kinds[$n] ne $declared_argument_kinds[$n]) {
249                 if($options->report_argument_kind($argument_kinds[$n]) ||
250                    $options->report_argument_kind($declared_argument_kinds[$n]))
251                 {
252                     $output->write("argument " . ($n + 1) . " type mismatch: " .
253                              $argument_types[$n] . " ($argument_kinds[$n]) != " .
254                              $declared_argument_kinds[$n] . "\n");
255                 }
256             }
257         }
258
259         if($#argument_kinds != $#declared_argument_kinds &&
260            $implemented_calling_convention ne "asm")
261         {
262             if($options->argument_count) {
263                 $output->write("argument count differs: " .
264                     ($#argument_types + 1) . " != " .
265                     ($#declared_argument_kinds + 1) . "\n");
266             }
267         }
268
269     }
270
271     if($segmented && $options->shared_segmented && $winapi->is_shared_internal_function($internal_name)) {
272         $output->write("function using segmented pointers shared between Win16 och Win32\n");
273     }
274 }
275
276 sub check_statements {
277     my $functions = shift;
278     my $function = shift;
279
280     my $module16 = $function->module16;
281     my $module32 = $function->module32;
282
283     if($options->win16 && $options->report_module($module16)) {
284         _check_statements($win16api, $functions, $function);
285     }
286
287     if($options->win32 && $options->report_module($module32)) {
288         _check_statements($win16api, $functions, $function);
289     }
290 }
291
292 sub _check_statements {
293     my $winapi = shift;
294     my $functions = shift;
295     my $function = shift;
296
297     my $module = $function->module;
298     my $internal_name = $function->internal_name;
299
300     my $first_debug_message = 1;
301     local $_ = $function->statements;
302     while(defined($_)) {
303         if(s/(\w+)\s*(?:\(\s*(\w+)\s*\))?\s*\(\s*((?:\"[^\"]*\"|\([^\)]*\)|[^\)])*?)\s*\)//) {
304             my $called_name = $1;
305             my $channel = $2;
306             my $called_arguments = $3;
307             if($called_name =~ /^if|for|while|switch|sizeof$/) {
308                 # Nothing
309             } elsif($called_name =~ /^ERR|FIXME|MSG|TRACE|WARN$/) {
310                 if($first_debug_message && $called_name =~ /^FIXME|TRACE$/) {
311                     $first_debug_message = 0;
312                     if($called_arguments =~ /^\"\((.*?)\)(.*?)\"\s*,\s*(.*?)$/) {
313                         my $formating = $1;
314                         my $extra = $2;
315                         my $arguments = $3;
316
317                         my $format;
318                         my $argument;
319                         my $n = 0;
320                         while($formating && ($formating =~ s/^([^,]*),?//, $format = $1, $format =~ s/^\s*(.*?)\s*$/$1/) &&
321                               $arguments && ($arguments =~ s/^([^,]*),?//, $argument = $1, $argument =~ s/^\s*(.*?)\s*$/$1/))
322                         {
323                             my $type = @{$function->argument_types}[$n];
324                             my $name = @{$function->argument_names}[$n];
325
326                             $n++;
327
328                             if(!defined($type)) { last; }
329
330                             $format =~ s/^\w+\s*[:=]?\s*//;
331                             $format =~ s/\s*\{[^\{\}]*\}$//;
332                             $format =~ s/\s*\[[^\[\]]*\]$//;
333                             $format =~ s/^\'(.*?)\'$/$1/;
334                             $format =~ s/^\\\"(.*?)\\\"$/$1/;
335
336                             if($options->debug_messages) {
337                                 if($argument !~ /$name/) {
338                                     $output->write("$called_name: argument $n is wrong ($name != '$argument')\n");
339                                 } elsif(!$winapi->is_allowed_type_format($module, $type, $format)) {
340                                     $output->write("$called_name: argument $n ($type $name) has illegal format ($format)\n");
341                                 }
342                             }
343                         }
344
345                         if($options->debug_messages) {
346                             my $count = $#{$function->argument_types} + 1;
347                             if($n != $count) {
348                                 $output->write("$called_name: argument count mismatch ($n != $count)\n");
349                             }
350                         }
351                     }
352                 }
353             } elsif($options->cross_call) {
354                 $$functions{$internal_name}->function_called($called_name);
355                 if(!defined($$functions{$called_name})) {
356                     $$functions{$called_name} = 'winapi_function'->new;
357                 }
358                 $$functions{$called_name}->function_called_by($internal_name);
359             }
360         } else {
361             undef $_;
362         }
363     }
364 }
365
366 sub check_file {
367     my $file = shift;
368     my $functions = shift;
369
370     if($options->cross_call) {
371         my @names = sort(keys(%$functions));
372         for my $name (@names) {
373             my @called_names = $$functions{$name}->called_function_names;
374             my @called_by_names = $$functions{$name}->called_by_function_names;
375             my $module = $$functions{$name}->module;
376
377             if($options->cross_call_win32_win16) {
378                 my $module16 = $$functions{$name}->module16;
379                 my $module32 = $$functions{$name}->module32;
380
381                 if($#called_names >= 0 && (defined($module16) || defined($module32)) ) {
382                     for my $called_name (@called_names) {
383                         my $called_module16 = $$functions{$called_name}->module16;
384                         my $called_module32 = $$functions{$called_name}->module32;
385                         if(defined($module32) &&
386                            defined($called_module16) && !defined($called_module32) &&
387                            $name ne $called_name)
388                         {
389                             $output->write("$file: $module: $name: illegal call to $called_name (Win32 -> Win16)\n");
390                         }
391                     }
392                 }
393             }
394
395             if($options->cross_call_unicode_ascii) {
396                 if($name =~ /W$/) {
397                     for my $called_name (@called_names) {
398                         if($called_name =~ /A$/) {
399                             $output->write("$file: $module: $name: illegal call to $called_name (Unicode -> ASCII)\n");
400                         }
401                     }
402                 }
403             }
404         }
405     }
406 }
407
408 1;