blob: eeec9344636e63e02e0ce8e685152bd2511404bd [file] [log] [blame]
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001#! /usr/bin/perl -w
Alexandre Julliard767e6f61998-08-09 12:47:43 +00002#
Alexandre Julliard5bc78081999-06-22 17:26:53 +00003# Build the server/trace.c and server/request.h files
Alexandre Julliard37ec9272001-07-19 00:35:37 +00004# from the contents of include/wine/server.h.
Alexandre Julliard767e6f61998-08-09 12:47:43 +00005#
6# Copyright (C) 1998 Alexandre Julliard
7#
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00008# This library is free software; you can redistribute it and/or
9# modify it under the terms of the GNU Lesser General Public
10# License as published by the Free Software Foundation; either
11# version 2.1 of the License, or (at your option) any later version.
12#
13# This library is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# Lesser General Public License for more details.
17#
18# You should have received a copy of the GNU Lesser General Public
19# License along with this library; if not, write to the Free Software
Jonathan Ernst360a3f92006-05-18 14:49:52 +020020# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard0799c1a2002-03-09 23:29:33 +000021#
Francois Gougetbd007ba2004-10-04 18:54:04 +000022use strict;
Alexandre Julliard767e6f61998-08-09 12:47:43 +000023
Francois Gougetbd007ba2004-10-04 18:54:04 +000024my %formats =
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010025( # size align format
26 "int" => [ 4, 4, "%d" ],
27 "short int" => [ 2, 2, "%d" ],
28 "char" => [ 1, 1, "%c" ],
29 "unsigned char" => [ 1, 1, "%02x" ],
30 "unsigned short"=> [ 2, 2, "%04x" ],
31 "unsigned int" => [ 4, 4, "%08x" ],
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010032 "void*" => [ 4, 4, "%p" ],
33 "data_size_t" => [ 4, 4, "%u" ],
34 "obj_handle_t" => [ 4, 4, "%04x" ],
35 "atom_t" => [ 2, 2, "%04x" ],
36 "user_handle_t" => [ 4, 4, "%08x" ],
37 "process_id_t" => [ 4, 4, "%04x" ],
38 "thread_id_t" => [ 4, 4, "%04x" ],
Alexandre Julliard947976f2008-12-29 17:10:11 +010039 "client_ptr_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliardf2c4e092008-12-29 16:47:51 +010040 "mod_handle_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliard3cd817b2008-12-24 12:06:18 +010041 "lparam_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliarda6216ab2008-12-17 19:43:40 +010042 "apc_param_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliard29d97592008-12-17 19:25:49 +010043 "file_pos_t" => [ 8, 8, "&dump_uint64" ],
44 "mem_size_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010045 "timeout_t" => [ 8, 8, "&dump_timeout" ],
46 "rectangle_t" => [ 16, 4, "&dump_rectangle" ],
47 "char_info_t" => [ 4, 2, "&dump_char_info" ],
Alexandre Julliardc86ec642008-12-30 15:22:45 +010048 "apc_call_t" => [ 40, 8, "&dump_apc_call" ],
49 "apc_result_t" => [ 40, 8, "&dump_apc_result" ],
Alexandre Julliarda7b3efd2008-12-26 12:17:20 +010050 "async_data_t" => [ 32, 8, "&dump_async_data" ],
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010051 "luid_t" => [ 8, 4, "&dump_luid" ],
52 "ioctl_code_t" => [ 4, 4, "&dump_ioctl_code" ],
Alexandre Julliard767e6f61998-08-09 12:47:43 +000053);
54
55my @requests = ();
56my %replies = ();
57
Alexandre Julliard5bc78081999-06-22 17:26:53 +000058my @trace_lines = ();
59
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010060my $max_req_size = 64;
Alexandre Julliard37ec9272001-07-19 00:35:37 +000061
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010062my $warnings = scalar(@ARGV) && $ARGV[0] eq "-w";
Alexandre Julliard767e6f61998-08-09 12:47:43 +000063
Francois Gouget11a7b292004-10-21 19:58:39 +000064### Generate a dumping function
65
66sub DO_DUMP_FUNC($$@)
67{
68 my $name = shift;
69 my $req = shift;
70 push @trace_lines, "static void dump_${name}_$req( const struct ${name}_$req *req )\n{\n";
71 while ($#_ >= 0)
72 {
73 my $type = shift;
74 my $var = shift;
75 if (defined($formats{$type}))
76 {
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010077 my $fmt = ${$formats{$type}}[2];
78 if ($fmt =~ /^&(.*)/)
Francois Gouget11a7b292004-10-21 19:58:39 +000079 {
80 my $func = $1;
81 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
82 push @trace_lines, " $func( &req->$var );\n";
83 push @trace_lines, " fprintf( stderr, \",\" );\n" if ($#_ > 0);
84 }
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010085 elsif ($fmt =~ /^(%.*)\s+\((.*)\)/)
Alexandre Julliard58273ea2006-01-23 16:40:57 +010086 {
87 my ($format, $cast) = ($1, $2);
88 push @trace_lines, " fprintf( stderr, \" $var=$format";
89 push @trace_lines, "," if ($#_ > 0);
90 push @trace_lines, "\", ($cast)req->$var );\n";
91 }
Francois Gouget11a7b292004-10-21 19:58:39 +000092 else
93 {
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010094 push @trace_lines, " fprintf( stderr, \" $var=$fmt";
Francois Gouget11a7b292004-10-21 19:58:39 +000095 push @trace_lines, "," if ($#_ > 0);
Alexandre Julliard58273ea2006-01-23 16:40:57 +010096 push @trace_lines, "\", req->$var );\n";
Francois Gouget11a7b292004-10-21 19:58:39 +000097 }
98 }
99 else # must be some varargs format
100 {
101 my $func = $type;
102 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
103 push @trace_lines, " $func;\n";
104 push @trace_lines, " fputc( ',', stderr );\n" if ($#_ > 0);
105 }
106 }
107 push @trace_lines, "}\n\n";
108}
109
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000110### Parse the request definitions
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000111
Francois Gougetbd007ba2004-10-04 18:54:04 +0000112sub PARSE_REQUESTS()
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000113{
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000114 # states: 0 = header 1 = declarations 2 = inside @REQ 3 = inside @REPLY
115 my $state = 0;
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100116 my $offset = 0;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000117 my $name = "";
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000118 my @in_struct = ();
119 my @out_struct = ();
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000120
121 open(PROTOCOL,"server/protocol.def") or die "Can't open server/protocol.def";
122
123 while (<PROTOCOL>)
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000124 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000125 my ($type, $var);
126 # strip comments
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000127 s!/\*.*\*/!!g;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000128 # strip white space at end of line
129 s/\s+$//;
130
131 if (/^\@HEADER/)
Alexandre Julliard86113532000-08-29 03:54:30 +0000132 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000133 die "Misplaced \@HEADER" unless $state == 0;
134 $state++;
Alexandre Julliard86113532000-08-29 03:54:30 +0000135 next;
136 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000137
138 # ignore everything while in state 0
139 next if $state == 0;
140
141 if (/^\@REQ\(\s*(\w+)\s*\)/)
Alexandre Julliard86113532000-08-29 03:54:30 +0000142 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000143 $name = $1;
144 die "Misplaced \@REQ" unless $state == 1;
145 # start a new request
146 @in_struct = ();
147 @out_struct = ();
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100148 $offset = 12;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000149 print SERVER_PROT "struct ${name}_request\n{\n";
150 print SERVER_PROT " struct request_header __header;\n";
151 $state++;
152 next;
Alexandre Julliard86113532000-08-29 03:54:30 +0000153 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000154
155 if (/^\@REPLY/)
Alexandre Julliard86113532000-08-29 03:54:30 +0000156 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000157 die "Misplaced \@REPLY" unless $state == 2;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000158 print SERVER_PROT "};\n";
159 print SERVER_PROT "struct ${name}_reply\n{\n";
160 print SERVER_PROT " struct reply_header __header;\n";
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100161 die "request $name too large ($offset)" if ($offset > $max_req_size);
162 $offset = 8;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000163 $state++;
164 next;
Alexandre Julliard86113532000-08-29 03:54:30 +0000165 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000166
167 if (/^\@END/)
Alexandre Julliard86113532000-08-29 03:54:30 +0000168 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000169 die "Misplaced \@END" unless ($state == 2 || $state == 3);
170 print SERVER_PROT "};\n";
171
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000172 if ($state == 2) # build dummy reply struct
173 {
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100174 die "request $name too large ($offset)" if ($offset > $max_req_size);
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000175 print SERVER_PROT "struct ${name}_reply\n{\n";
176 print SERVER_PROT " struct reply_header __header;\n";
177 print SERVER_PROT "};\n";
178 }
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100179 else
180 {
181 die "reply $name too large ($offset)" if ($offset > $max_req_size);
182 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000183 # got a complete request
184 push @requests, $name;
Francois Gouget11a7b292004-10-21 19:58:39 +0000185 DO_DUMP_FUNC( $name, "request", @in_struct);
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000186 if ($#out_struct >= 0)
187 {
188 $replies{$name} = 1;
Francois Gouget11a7b292004-10-21 19:58:39 +0000189 DO_DUMP_FUNC( $name, "reply", @out_struct);
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000190 }
191 $state = 1;
192 next;
Alexandre Julliard86113532000-08-29 03:54:30 +0000193 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000194
195 if ($state != 1)
196 {
197 # skip empty lines (but keep them in output file)
198 if (/^$/)
199 {
200 print SERVER_PROT "\n";
201 next;
202 }
203
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000204 if (/^\s*VARARG\((\w+),(\w+),(\w+)\)/)
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000205 {
206 $var = $1;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000207 $type = "dump_varargs_" . $2 . "( min(cur_size,req->" . $3 . ") )";
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000208 s!(VARARG\(.*\)\s*;)!/* $1 */!;
209 }
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000210 elsif (/^\s*VARARG\((\w+),(\w+)\)/)
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000211 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000212 $var = $1;
213 $type = "dump_varargs_" . $2 . "( cur_size )";
214 s!(VARARG\(.*\)\s*;)!/* $1 */!;
215 }
216 elsif (/^\s*(\w+\**(\s+\w+\**)*)\s+(\w+);/)
217 {
218 $type = $1;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000219 $var = $3;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000220 die "Unrecognized type $type" unless defined($formats{$type});
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100221 my @fmt = @{$formats{$type}};
222 if ($offset & ($fmt[1] - 1))
223 {
224 print "protocol.def:$.: warning: $name $offset $type $var needs padding\n" if $warnings;
225 }
226 $offset = ($offset + $fmt[1] - 1) & ~($fmt[1] - 1);
227 $offset += $fmt[0];
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000228 }
229 else
230 {
231 die "Unrecognized syntax $_";
232 }
233 if ($state == 2) { push @in_struct, $type, $var; }
234 if ($state == 3) { push @out_struct, $type, $var; }
235 }
236
237 # Pass it through into the output file
238 print SERVER_PROT $_ . "\n";
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000239 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000240 close PROTOCOL;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000241}
242
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000243### Retrieve the server protocol version from the existing server_protocol.h file
244
Francois Gougetbd007ba2004-10-04 18:54:04 +0000245sub GET_PROTOCOL_VERSION()
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000246{
247 my $protocol = 0;
248 open SERVER_PROT, "include/wine/server_protocol.h" or return 0;
249 while (<SERVER_PROT>)
250 {
251 if (/^\#define SERVER_PROTOCOL_VERSION (\d+)/) { $protocol = $1; last; }
252 }
253 close SERVER_PROT;
254 return $protocol;
255}
256
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000257### Retrieve the list of status and errors used in the server
258
259sub GET_ERROR_NAMES()
260{
261 my %errors = ();
262 foreach my $f (glob "server/*.c")
263 {
Alexandre Julliard3d39c622007-04-04 18:01:22 +0200264 next if $f eq "server/trace.c";
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000265 open FILE, $f or die "Can't open $f";
266 while (<FILE>)
267 {
Alexandre Julliard3d39c622007-04-04 18:01:22 +0200268 if (/STATUS_(\w+)/)
Alexandre Julliard60d65182007-01-04 13:51:12 +0100269 {
270 $errors{$1} = "STATUS_$1" unless $1 eq "SUCCESS";
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000271 }
272 elsif (/set_win32_error\s*\(\s*(\w+)\s*\)/)
273 {
274 $errors{$1} = "0xc0010000 | $1";
275 }
276 }
277 close FILE;
278 }
279 return %errors;
280}
281
Alexandre Julliard37f36912008-12-10 17:13:30 +0100282# update a file if changed
283sub update_file($)
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000284{
Alexandre Julliard37f36912008-12-10 17:13:30 +0100285 my $file = shift;
286 my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
287 if (!$ret)
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000288 {
Alexandre Julliard37f36912008-12-10 17:13:30 +0100289 unlink "$file.new";
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000290 }
Alexandre Julliard37f36912008-12-10 17:13:30 +0100291 else
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000292 {
Alexandre Julliard37f36912008-12-10 17:13:30 +0100293 rename "$file.new", "$file";
294 print "$file updated\n";
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000295 }
Alexandre Julliard37f36912008-12-10 17:13:30 +0100296 return $ret;
297}
298
299# replace some lines in a file between two markers
300sub replace_in_file($$$@)
301{
302 my $file = shift;
303 my $start = shift;
304 my $end = shift;
305
306 open NEW_FILE, ">$file.new" or die "cannot create $file.new";
307
308 if (defined($start))
309 {
310 open OLD_FILE, "$file" or die "cannot open $file";
311 while (<OLD_FILE>)
312 {
313 print NEW_FILE $_;
314 last if /$start/;
315 }
316 }
317
318 print NEW_FILE "\n", @_, "\n";
319
320 if (defined($end))
321 {
322 my $skip=1;
323 while (<OLD_FILE>)
324 {
325 $skip = 0 if /$end/;
326 print NEW_FILE $_ unless $skip;
327 }
328 }
329
330 close OLD_FILE if defined($start);
331 close NEW_FILE;
332 return update_file($file);
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000333}
Francois Gougetbd007ba2004-10-04 18:54:04 +0000334
335### Main
336
337# Get the server protocol version
338my $protocol = GET_PROTOCOL_VERSION();
339
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000340my %errors = GET_ERROR_NAMES();
341
Francois Gougetbd007ba2004-10-04 18:54:04 +0000342### Create server_protocol.h and print header
343
Alexandre Julliard37f36912008-12-10 17:13:30 +0100344open SERVER_PROT, ">include/wine/server_protocol.h.new" or die "Cannot create include/wine/server_protocol.h.new";
Francois Gougetbd007ba2004-10-04 18:54:04 +0000345print SERVER_PROT "/*\n * Wine server protocol definitions\n *\n";
346print SERVER_PROT " * This file is automatically generated; DO NO EDIT!\n";
347print SERVER_PROT " * Edit server/protocol.def instead and re-run tools/make_requests\n";
348print SERVER_PROT " */\n\n";
349print SERVER_PROT "#ifndef __WINE_WINE_SERVER_PROTOCOL_H\n";
350print SERVER_PROT "#define __WINE_WINE_SERVER_PROTOCOL_H\n";
351
352### Parse requests to find request/reply structure definitions
353
354PARSE_REQUESTS();
355
356### Build the request list and structures
357
358print SERVER_PROT "\n\nenum request\n{\n";
359foreach my $req (@requests) { print SERVER_PROT " REQ_$req,\n"; }
360print SERVER_PROT " REQ_NB_REQUESTS\n};\n\n";
361
362print SERVER_PROT "union generic_request\n{\n";
363print SERVER_PROT " struct request_max_size max_size;\n";
364print SERVER_PROT " struct request_header request_header;\n";
365foreach my $req (@requests) { print SERVER_PROT " struct ${req}_request ${req}_request;\n"; }
366print SERVER_PROT "};\n";
367
368print SERVER_PROT "union generic_reply\n{\n";
369print SERVER_PROT " struct request_max_size max_size;\n";
370print SERVER_PROT " struct reply_header reply_header;\n";
371foreach my $req (@requests) { print SERVER_PROT " struct ${req}_reply ${req}_reply;\n"; }
372print SERVER_PROT "};\n\n";
373
374printf SERVER_PROT "#define SERVER_PROTOCOL_VERSION %d\n\n", $protocol + 1;
375print SERVER_PROT "#endif /* __WINE_WINE_SERVER_PROTOCOL_H */\n";
376close SERVER_PROT;
Alexandre Julliard37f36912008-12-10 17:13:30 +0100377update_file( "include/wine/server_protocol.h" );
Francois Gougetbd007ba2004-10-04 18:54:04 +0000378
379### Output the dumping function tables
380
381push @trace_lines, "static const dump_func req_dumpers[REQ_NB_REQUESTS] = {\n";
382foreach my $req (@requests)
383{
384 push @trace_lines, " (dump_func)dump_${req}_request,\n";
385}
386push @trace_lines, "};\n\n";
387
388push @trace_lines, "static const dump_func reply_dumpers[REQ_NB_REQUESTS] = {\n";
389foreach my $req (@requests)
390{
Michael Stefaniucdf17fcd2008-11-05 10:50:38 +0100391 push @trace_lines, " ", $replies{$req} ? "(dump_func)dump_${req}_reply,\n" : "NULL,\n";
Francois Gougetbd007ba2004-10-04 18:54:04 +0000392}
393push @trace_lines, "};\n\n";
394
395push @trace_lines, "static const char * const req_names[REQ_NB_REQUESTS] = {\n";
396foreach my $req (@requests)
397{
398 push @trace_lines, " \"$req\",\n";
399}
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000400push @trace_lines, "};\n\n";
401
402push @trace_lines, "static const struct\n{\n";
403push @trace_lines, " const char *name;\n";
404push @trace_lines, " unsigned int value;\n";
405push @trace_lines, "} status_names[] =\n{\n";
406
407foreach my $err (sort keys %errors)
408{
409 push @trace_lines, sprintf(" { %-30s %s },\n", "\"$err\",", $errors{$err});
410}
411push @trace_lines, " { NULL, 0 }\n";
Francois Gougetbd007ba2004-10-04 18:54:04 +0000412push @trace_lines, "};\n";
413
Alexandre Julliard37f36912008-12-10 17:13:30 +0100414replace_in_file( "server/trace.c",
415 "### make_requests begin ###",
416 "### make_requests end ###",
417 @trace_lines );
Alexandre Julliard691884b2004-11-02 20:15:53 +0000418
419### Output the request handlers list
420
421my @request_lines = ();
422
423foreach my $req (@requests) { push @request_lines, "DECL_HANDLER($req);\n"; }
424push @request_lines, "\n#ifdef WANT_REQUEST_HANDLERS\n\n";
425push @request_lines, "typedef void (*req_handler)( const void *req, void *reply );\n";
426push @request_lines, "static const req_handler req_handlers[REQ_NB_REQUESTS] =\n{\n";
427foreach my $req (@requests)
428{
429 push @request_lines, " (req_handler)req_$req,\n";
430}
431push @request_lines, "};\n#endif /* WANT_REQUEST_HANDLERS */\n";
432
Alexandre Julliard37f36912008-12-10 17:13:30 +0100433replace_in_file( "server/request.h",
434 "### make_requests begin ###",
435 "### make_requests end ###",
436 @request_lines );