3 # Copyright (c) 2006-2012 Apple Inc. All rights reserved.
5 # @APPLE_OSREFERENCE_LICENSE_HEADER_START@
7 # This file contains Original Code and/or Modifications of Original Code
8 # as defined in and that are subject to the Apple Public Source License
9 # Version 2.0 (the 'License'). You may not use this file except in
10 # compliance with the License. Please obtain a copy of the License at
11 # http://www.opensource.apple.com/apsl/ and read it before using this
14 # The Original Code and all software distributed under the License are
15 # distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 # EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 # INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
19 # Please see the License for the specific language governing rights and
20 # limitations under the License.
22 # @APPLE_OSREFERENCE_LICENSE_HEADER_END@
24 ##########################################################################
26 # % create-syscalls.pl syscalls.master custom-directory platforms-directory platform-name out-directory
28 # This script fills the the out-directory with a Makefile.inc and *.s
29 # files to create the double-underbar syscall stubs. It reads the
30 # syscall.master file to get the symbol names and number of arguments,
31 # and whether Libsystem should automatically create the (non-double-underbar)
32 # stubs if Libc doesn't provide a wrapper. Which system calls will get
33 # the automatic treatment is writen to the libsyscall.list file, also
34 # written to the out-directory.
36 # The custom-directory contains:
37 # 1. SYS.h - used by the automatically created *.s and custom files
38 # 2. custom.s - contains architecture specific additional system calls and
39 # auxilliary routines (like cerror)
40 # 3. special case double-underbar stub files - which are copied into
43 ##########################################################################
46 use File
::Basename
();
51 my $MyName = File
::Basename
::basename
($0);
53 my @CustomSrc = qw(custom.s);
55 my @Architectures = split /\s/, $ENV{"ARCHS"};
56 my @Copy = (qw(SYS.h), @CustomSrc);
61 # size in bytes of known types (only used for i386)
75 'mach_port_name_t' => 4,
97 # Moving towards storing all data in this hash, then we always know
98 # if data is aliased or not, or promoted or not.
112 syscall => "setquota",
113 asm_sym
=> "_setquota",
122 syscall => "syscall",
123 asm_sym
=> "_syscall",
132 # An explicit list of cancelable syscalls. For creating stubs that call the
133 # cancellable version of cerror.
135 accept access aio_suspend
136 close connect connectx
138 fcntl fdatasync fpathconf fstat fsync
144 pathconf peeloff poll posix_spawn pread pwrite
145 read readv recvfrom recvmsg
rename
146 __semwait_signal __sigwait
147 select sem_wait
semop sendmsg sendto sigsuspend
stat symlink sync
149 wait4 waitid
write writev
153 die "Usage: $MyName syscalls.master custom-directory platforms-directory platform-name out-directory\n";
156 ##########################################################################
157 # Read the syscall.master file and collect the system call names and number
158 # of arguments. It looks for the NO_SYSCALL_STUB quailifier following the
159 # prototype to determine if no automatic stub should be created by Libsystem.
160 # System call name that are already prefixed with double-underbar are set as
161 # if the NO_SYSCALL_STUB qualifier were specified (whether it is or not).
163 # For the #if lines in syscall.master, all macros are assumed to be defined,
164 # except COMPAT_GETFSSTAT (assumed undefined).
165 ##########################################################################
169 my $f = IO
::File-
>new($file, 'r');
170 die "$MyName: $file: $!\n" unless defined($f);
184 if(/^#\s*if\s+(\S+)$/) {
185 $skip = ($1 eq 'COMPAT_GETFSSTAT') ? -1 : 1;
192 die "$MyName: no function prototype on line $line\n" unless length($_) > 0 && /;$/;
193 my $no_syscall_stub = /\)\s*NO_SYSCALL_STUB\s*;/;
194 my($name, $args) = /\s(\S+)\s*\(([^)]*)\)/;
195 next if $name =~ /e?nosys/;
200 if($args ne '' && $args ne 'void') {
201 my @a = split(',', $args);
203 # Calculate the size of all the arguments (only used for i386)
205 $type =~ s/\s*\w+$//; # remove the argument name
207 $argbytes += 4; # a pointer type
209 $type =~ s/^.*\s//; # remove any type qualifier, like unsigned
210 my $b = $TypeBytes{$type};
211 die "$MyName: $name: unknown type '$type'\n" unless defined($b);
219 asm_sym
=> $no_syscall_stub ? "___$name" : "_$name",
220 is_private
=> $no_syscall_stub,
230 sub checkForCustomStubs
{
233 my ($c_sym_name, $sym);
234 while (($c_sym_name, $sym) = each %Symbols) {
235 my $source = "__".$$sym{c_sym
}.".s";
236 my $custom = File
::Spec-
>join($dir, $source);
237 next unless -f
$custom;
239 $$sym{is_custom
} = $source;
240 if (!$$sym{is_private
}) {
241 foreach my $subarch (@Architectures) {
242 (my $arch = $subarch) =~ s/arm(v.*)/arm/;
243 $$sym{aliases
}{$arch} = [] unless $$sym{aliases
}{$arch};
244 push(@{$$sym{aliases
}{$arch}}, $$sym{asm_sym
});
246 $$sym{asm_sym
} = "__".$$sym{asm_sym
};
247 $$sym{is_private
} = 1;
253 my ($platformDir, $platformName) = @_;
254 my $genericMap = File
::Spec-
>join($platformDir, "syscall.map");
257 foreach my $k (keys %Symbols) {
258 $sym_to_c{$Symbols{$k}{asm_sym
}} = $k;
262 for my $arch (@Architectures) {
263 (my $new_arch = $arch) =~ s/arm(v.*)/arm/g;
264 push(@a, $new_arch) unless grep { $_ eq $new_arch } @a;
267 foreach my $arch (@a) {
268 my $syscallFile = File
::Spec-
>join($platformDir, $platformName, $arch, "syscall.map");
271 push(@files, IO
::File-
>new($syscallFile, 'r'));
272 die "$MyName: $syscallFile: $!\n" unless defined($files[$#files]);
273 push(@files, IO
::File-
>new($genericMap, 'r'));
274 die "$MyName: $genericMap: $!\n" unless defined($files[$#files]);
276 foreach my $f (@files) {
281 my ($alias, $target_symbol) = split;
282 if (defined($target_symbol)) {
283 foreach my $sym (values %Symbols) {
284 # I've eliminated most of the ugly from this script except
285 # the need to try stripping underbars here.
286 if ($$sym{is_private
}) {
287 next unless $$sym{asm_sym
} eq $target_symbol;
289 (my $target = $target_symbol) =~ s/^__//;
290 next unless ($$sym{asm_sym
} eq $target || $$sym{asm_sym
} eq $target_symbol);
292 $$sym{aliases
}{$arch} = [] unless $$sym{aliases
}{$arch};
294 die "$MyName: $arch $$sym{asm_sym} -> $alias: Duplicate alias.\n" if grep { $_ eq $alias } @{$$sym{aliases
}{$arch}};
295 push(@{$$sym{aliases
}{$arch}}, $alias);
297 # last thing to do, if we aliased over a first class symbol, we need
299 my $c = $sym_to_c{$alias};
301 push(@{$Symbols{$c}{except
}}, $arch);
310 ##########################################################################
311 # Make a __xxx.s file: if it exists in the $CustomDir, just copy it, otherwise
312 # create one. We define the macro __SYSCALL_32BIT_ARG_BYTES so that SYS.h could
313 # use that to define __SYSCALL dependent on the arguments' total size.
314 ##########################################################################
315 sub writeStubForSymbol
{
316 my ($f, $symbol) = @_;
319 for my $subarch (@Architectures) {
320 (my $arch = $subarch) =~ s/arm(v.*)/arm/;
321 push(@conditions, "defined(__${arch}__)") unless grep { $_ eq $arch } @{$$symbol{except
}};
325 for (@Cancelable) { $is_cancel{$_} = 1 };
327 print $f "#define __SYSCALL_32BIT_ARG_BYTES $$symbol{bytes}\n";
328 print $f "#include \"SYS.h\"\n\n";
329 if (scalar(@conditions)) {
330 printf $f "#ifndef SYS_%s\n", $$symbol{syscall};
331 printf $f "#error \"SYS_%s not defined. The header files libsyscall is building against do not match syscalls.master.\"\n", $$symbol{syscall};
332 printf $f "#endif\n\n";
333 my $nc = ($is_cancel{$$symbol{syscall}} ? "cerror" : "cerror_nocancel");
334 printf $f "#if " . join(" || ", @conditions) . "\n";
335 printf $f "__SYSCALL2(%s, %s, %d, %s)\n", $$symbol{asm_sym
}, $$symbol{syscall}, $$symbol{nargs
}, $nc;
336 if (!$$symbol{is_private
} && (scalar(@conditions) < scalar(@Architectures))) {
338 printf $f "__SYSCALL2(%s, %s, %d, %s)\n", "__".$$symbol{asm_sym
}, $$symbol{syscall}, $$symbol{nargs
}, $nc;
340 printf $f "#endif\n\n";
342 # actually this isnt an inconsistency. kernel can expose what it wants but if all our arches
343 # override it we need to honour that.
347 sub writeAliasesForSymbol
{
348 my ($f, $symbol) = @_;
350 foreach my $subarch (@Architectures) {
351 (my $arch = $subarch) =~ s/arm(v.*)/arm/;
353 next unless scalar($$symbol{aliases
}{$arch});
355 printf $f "#if defined(__${arch}__)\n";
356 foreach my $alias_sym (@{$$symbol{aliases
}{$arch}}) {
357 my $sym = (grep { $_ eq $arch } @{$$symbol{except
}}) ? "__".$$symbol{asm_sym
} : $$symbol{asm_sym
};
359 printf $f "\t.globl\t$alias_sym\n";
360 printf $f "\t.set\t$alias_sym, $sym\n";
362 printf $f "#endif\n\n";
366 usage
() unless scalar(@ARGV) == 5;
367 $CustomDir = $ARGV[1];
368 die "$MyName: $CustomDir: No such directory\n" unless -d
$CustomDir;
369 $PlatformsDir = $ARGV[2];
370 die "$MyName: $PlatformsDir: No such directory\n" unless -d
$PlatformsDir;
371 $PlatformName = $ARGV[3];
372 die "$MyName: $PlatformsDir/$PlatformName: No such directory\n" unless -d
"$PlatformsDir/$PlatformName";
374 die "$MyName: $OutDir: No such directory\n" unless -d
$OutDir;
376 readMaster
($ARGV[0]);
377 checkForCustomStubs
($CustomDir);
378 readAliases
($PlatformsDir, $PlatformName);
380 ##########################################################################
381 # copy the files specified in @Copy from the $CustomDir to $OutDir
382 ##########################################################################
384 my $custom = File
::Spec-
>join($CustomDir, $_);
385 my $path = File
::Spec-
>join($OutDir, $_);
386 print "Copy $custom -> $path\n";
387 File
::Copy
::copy
($custom, $path) || die "$MyName: copy($custom, $path): $!\n";
390 ##########################################################################
391 # make all the *.s files
392 ##########################################################################
395 while (($k, $sym) = each %Symbols)
397 my $srcname = $$sym{asm_sym
} . ".s";
398 my $outpath = File
::Spec-
>join($OutDir, $srcname);
400 if ($$sym{is_custom
}) {
401 my $custom = File
::Spec-
>join($CustomDir, $$sym{is_custom
});
402 File
::Copy
::copy
($custom, $outpath);
403 print "Copied $outpath\n";
405 print "Writing aliases for $srcname\n";
406 my $f = IO
::File-
>new($outpath, 'a');
407 die "$MyName: $outpath: $!\n" unless defined($f);
408 writeAliasesForSymbol
($f, $sym);
411 my $f = IO
::File-
>new($outpath, 'w');
412 die "$MyName: $outpath: $!\n" unless defined($f);
414 printf "Creating $outpath\n";
415 writeStubForSymbol
($f, $sym);
416 writeAliasesForSymbol
($f, $sym);
419 push(@src, $srcname);
422 ##########################################################################
423 # create the Makefile.inc file from the list for files in @src and @CustomSrc
424 ##########################################################################
425 my $path = File
::Spec-
>join($OutDir, 'stubs.list');
426 my $f = IO
::File-
>new($path, 'w');
427 my @sources = sort(@src, @CustomSrc);
428 for my $s (@sources) {
429 printf $f File
::Spec-
>join($OutDir, $s) . "\n";