]> git.saurik.com Git - apple/xnu.git/blobdiff - libsyscall/xcodescripts/create-syscalls.pl
xnu-1699.22.73.tar.gz
[apple/xnu.git] / libsyscall / xcodescripts / create-syscalls.pl
diff --git a/libsyscall/xcodescripts/create-syscalls.pl b/libsyscall/xcodescripts/create-syscalls.pl
new file mode 100755 (executable)
index 0000000..68366de
--- /dev/null
@@ -0,0 +1,403 @@
+#!/usr/bin/perl
+#
+# Copyright (c) 2006 Apple Computer, Inc. All rights reserved.
+#
+# @APPLE_OSREFERENCE_LICENSE_HEADER_START@
+# 
+# This file contains Original Code and/or Modifications of Original Code
+# as defined in and that are subject to the Apple Public Source License
+# Version 2.0 (the 'License'). You may not use this file except in
+# compliance with the License. Please obtain a copy of the License at
+# http://www.opensource.apple.com/apsl/ and read it before using this
+# file.
+# 
+# The Original Code and all software distributed under the License are
+# distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+# EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
+# INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
+# Please see the License for the specific language governing rights and
+# limitations under the License.
+# 
+# @APPLE_OSREFERENCE_LICENSE_HEADER_END@
+#
+##########################################################################
+#
+# % create-syscalls.pl syscalls.master custom-directory out-directory
+#
+# This script fills the the out-directory with a Makefile.inc and *.s
+# files to create the double-underbar syscall stubs.  It reads the
+# syscall.master file to get the symbol names and number of arguments,
+# and whether Libsystem should automatically create the (non-double-underbar)
+# stubs if Libc doesn't provide a wrapper.  Which system calls will get
+# the automatic treatment is writen to the libsyscall.list file, also
+# written to the out-directory.
+#
+# The custom-directory contains:
+# 1. SYS.h - used by the automatically created *.s and custom files
+# 2. custom.s - contains architecture specific additional system calls and
+#    auxilliary routines (like cerror)
+# 3. special case double-underbar stub files - which are copied into
+#    the out-directory
+#
+##########################################################################
+
+use strict;
+use File::Basename ();
+use File::Copy ();
+use File::Spec;
+use IO::File;
+
+my $MyName = File::Basename::basename($0);
+
+my @CustomSrc = qw(custom.s);
+
+my @Architectures = split /\s/, $ENV{"ARCHS"};
+my @Copy = (qw(SYS.h), @CustomSrc);
+my $CustomDir;
+my $PlatformsDir;
+my $PlatformName;
+my $OutDir;
+# size in bytes of known types (only used for i386)
+my %TypeBytes = (
+    'au_asid_t'                => 4,
+    'caddr_t'          => 4,
+    'gid_t'            => 4,
+    'id_t'             => 4,
+    'idtype_t'         => 4,
+    'int'              => 4,
+    'int32_t'          => 4,
+    'int64_t'          => 8,
+    'key_t'            => 4,
+    'long'             => 4,
+    'mach_port_name_t' => 4,
+    'mode_t'           => 4,
+    'off_t'            => 8,
+    'pid_t'            => 4,
+    'semun_t'          => 4,
+    'sigset_t'         => 4,
+    'size_t'           => 4,
+    'socklen_t'                => 4,
+    'ssize_t'          => 4,
+    'u_int'            => 4,
+    'u_long'           => 4,
+    'uid_t'            => 4,
+    'uint32_t'         => 4,
+    'uint64_t'         => 8,
+    'user_addr_t'      => 4,
+    'user_long_t'      => 4,
+    'user_size_t'      => 4,
+    'user_ssize_t'     => 4,
+    'user_ulong_t'     => 4,
+);
+
+# Moving towards storing all data in this hash, then we always know
+# if data is aliased or not, or promoted or not.
+my %Symbols = (
+    "quota" => {
+        c_sym => "quota",
+        syscall => "quota",
+        asm_sym => "_quota",
+        is_private => undef,
+        is_custom => undef,
+        nargs => 4,
+        bytes => 0,
+        aliases => {},
+    },
+    "setquota" => {
+        c_sym => "setquota",
+        syscall => "setquota",
+        asm_sym => "_setquota",
+        is_private => undef,
+        is_custom => undef,
+        nargs => 2,
+        bytes => 0,
+        aliases => {},
+    },
+    "syscall" => {
+        c_sym => "syscall",
+        syscall => "syscall",
+        asm_sym => "_syscall",
+        is_private => undef,
+        is_custom => undef,
+        nargs => 0,
+        bytes => 0,
+        aliases => {},
+    },
+);
+
+sub usage {
+    die "Usage: $MyName syscalls.master custom-directory platforms-directory out-directory\n";
+}
+
+##########################################################################
+# Read the syscall.master file and collect the system call names and number
+# of arguments.  It looks for the NO_SYSCALL_STUB quailifier following the
+# prototype to determine if no automatic stub should be created by Libsystem.
+# System call name that are already prefixed with double-underbar are set as
+# if the NO_SYSCALL_STUB qualifier were specified (whether it is or not).
+#
+# For the #if lines in syscall.master, all macros are assumed to be defined,
+# except COMPAT_GETFSSTAT (assumed undefined).
+##########################################################################
+sub readMaster {
+    my $file = shift;
+    local $_;
+    my $f = IO::File->new($file, 'r');
+    die "$MyName: $file: $!\n" unless defined($f);
+    my $line = 0;
+    my $skip = 0;
+    while(<$f>) {
+        $line++;
+        if(/^#\s*endif/) {
+            $skip = 0;
+            next;
+        }
+        if(/^#\s*else/) {
+            $skip = -$skip;
+            next;
+        }
+        chomp;
+        if(/^#\s*if\s+(\S+)$/) {
+            $skip = ($1 eq 'COMPAT_GETFSSTAT') ? -1 : 1;
+            next;
+        }
+        next if $skip < 0;
+        next unless /^\d/;
+        s/^[^{]*{\s*//;
+        s/\s*}.*$//; # }
+        die "$MyName: no function prototype on line $line\n" unless length($_) > 0 && /;$/;
+        my $no_syscall_stub = /\)\s*NO_SYSCALL_STUB\s*;/;
+        my($name, $args) = /\s(\S+)\s*\(([^)]*)\)/;
+        next if $name =~ /e?nosys/;
+        $args =~ s/^\s+//;
+        $args =~ s/\s+$//;
+        my $argbytes = 0;
+        my $nargs = 0;
+        if($args ne '' && $args ne 'void') {
+            my @a = split(',', $args);
+            $nargs = scalar(@a);
+            # Calculate the size of all the arguments (only used for i386)
+            for my $type (@a) {
+                $type =~ s/\s*\w+$//; # remove the argument name
+                if($type =~ /\*$/) {
+                    $argbytes += 4; # a pointer type
+                } else {
+                    $type =~ s/^.*\s//; # remove any type qualifier, like unsigned
+                    my $b = $TypeBytes{$type};
+                    die "$MyName: $name: unknown type '$type'\n" unless defined($b);
+                    $argbytes += $b;
+                }
+            }
+        }
+        $Symbols{$name} = {
+            c_sym => $name,
+            syscall => $name,
+            asm_sym => $no_syscall_stub ? "___$name" : "_$name",
+            is_private => $no_syscall_stub,
+            is_custom => undef,
+            nargs => $nargs,
+            bytes => $argbytes,
+            aliases => {},
+            except => [],
+        };
+    }
+}
+
+sub checkForCustomStubs {
+    my ($dir) = @_;
+    
+    my ($c_sym_name, $sym);
+    while (($c_sym_name, $sym) = each %Symbols) {
+        my $source = "__".$$sym{c_sym}.".s";
+        my $custom = File::Spec->join($dir, $source);
+        next unless -f $custom;
+
+        $$sym{is_custom} = $source;
+        if (!$$sym{is_private}) {
+            foreach my $subarch (@Architectures) {
+                (my $arch = $subarch) =~ s/arm(.*)/arm/;
+                $$sym{aliases}{$arch} = [] unless $$sym{aliases}{$arch};
+                push(@{$$sym{aliases}{$arch}}, $$sym{asm_sym});
+            }
+            $$sym{asm_sym} = "__".$$sym{asm_sym};
+            $$sym{is_private} = 1;
+        }
+    }    
+}
+
+sub readAliases {
+    my ($platformDir, $platformName) = @_;
+    my $genericMap = File::Spec->join($platformDir, "syscall.map");
+    
+    my %sym_to_c;
+    foreach my $k (keys %Symbols) {
+        $sym_to_c{$Symbols{$k}{asm_sym}} = $k;
+    }
+    
+    my @a = ();
+    for my $arch (@Architectures) {
+        (my $new_arch = $arch) =~ s/arm(.*)/arm/g;
+        push(@a, $new_arch) unless grep { $_ eq $new_arch } @a;
+    }
+    
+    foreach my $arch (@a) {
+        my $syscallFile = File::Spec->join($platformDir, $platformName, $arch, "syscall.map");
+        
+        my @files = ();
+        push(@files, IO::File->new($syscallFile, 'r'));
+        die "$MyName: $syscallFile: $!\n" unless defined($files[$#files]);
+        push(@files, IO::File->new($genericMap, 'r'));
+        die "$MyName: $genericMap: $!\n" unless defined($files[$#files]);
+        
+        foreach my $f (@files) {
+            while (<$f>) {
+                next if /^#/;
+                chomp;
+                
+                my ($alias, $target_symbol) = split;
+                if (defined($target_symbol)) {
+                    foreach my $sym (values %Symbols) {
+                        # I've eliminated most of the ugly from this script except
+                        # the need to try stripping underbars here.
+                        if ($$sym{is_private}) {
+                            next unless $$sym{asm_sym} eq $target_symbol;
+                        } else {
+                            (my $target = $target_symbol) =~ s/^__//;
+                            next unless ($$sym{asm_sym} eq $target || $$sym{asm_sym} eq $target_symbol);
+                        }
+                        $$sym{aliases}{$arch} = [] unless $$sym{aliases}{$arch};
+                        
+                        die "$MyName: $arch $$sym{asm_sym} -> $alias: Duplicate alias.\n" if grep { $_ eq $alias } @{$$sym{aliases}{$arch}};
+                        push(@{$$sym{aliases}{$arch}}, $alias);
+                        
+                        # last thing to do, if we aliased over a first class symbol, we need
+                        # to mark it
+                        my $c = $sym_to_c{$alias};
+                        if ($Symbols{$c}) {
+                            push(@{$Symbols{$c}{except}}, $arch);
+                        }
+                    }
+                }
+            }
+        }
+    }
+}
+
+##########################################################################
+# Make a __xxx.s file: if it exists in the $CustomDir, just copy it, otherwise
+# create one.  We define the macro __SYSCALL_32BIT_ARG_BYTES so that SYS.h could
+# use that to define __SYSCALL dependent on the arguments' total size.
+##########################################################################
+sub writeStubForSymbol {
+    my ($f, $symbol) = @_;
+    
+    my @conditions;
+    for my $subarch (@Architectures) {
+        (my $arch = $subarch) =~ s/arm(.*)/arm/;
+        push(@conditions, "defined(__${arch}__)") unless grep { $_ eq $arch } @{$$symbol{except}};
+    }
+    
+    print $f "#define __SYSCALL_32BIT_ARG_BYTES $$symbol{bytes}\n";
+    print $f "#include \"SYS.h\"\n\n";
+    if (scalar(@conditions)) {
+        printf $f "#if " . join(" || ", @conditions) . "\n";
+        printf $f "__SYSCALL(%s, %s, %d)\n", $$symbol{asm_sym}, $$symbol{syscall}, $$symbol{nargs};
+        if (!$$symbol{is_private} && (scalar(@conditions) < scalar(@Architectures))) {
+            printf $f "#else\n";
+            printf $f "__SYSCALL(%s, %s, %d)\n", "__".$$symbol{asm_sym}, $$symbol{syscall}, $$symbol{nargs};
+        }
+        printf $f "#endif\n\n";
+    } else {
+        # actually this isnt an inconsistency. kernel can expose what it wants but if all our arches
+        # override it we need to honour that.
+    }
+}
+
+sub writeAliasesForSymbol {
+    my ($f, $symbol) = @_;
+    
+    foreach my $subarch (@Architectures) {
+        (my $arch = $subarch) =~ s/arm(.*)/arm/;
+        
+        next unless scalar($$symbol{aliases}{$arch});
+        
+                               printf $f "#if defined(__${arch}__)\n";
+        foreach my $alias_sym (@{$$symbol{aliases}{$arch}}) {
+            my $sym = (grep { $_ eq $arch } @{$$symbol{except}}) ? "__".$$symbol{asm_sym} : $$symbol{asm_sym};
+                                       
+                                               printf $f "\t.globl\t$alias_sym\n";
+                                               printf $f "\t.set\t$alias_sym, $sym\n";
+        }
+                               printf $f "#endif\n\n";
+    }
+}
+
+usage() unless scalar(@ARGV) == 5;
+$CustomDir = $ARGV[1];
+die "$MyName: $CustomDir: No such directory\n" unless -d $CustomDir;
+$PlatformsDir = $ARGV[2];
+die "$MyName: $PlatformsDir: No such directory\n" unless -d $PlatformsDir;
+$PlatformName = $ARGV[3];
+die "$MyName: $PlatformsDir/$PlatformName: No such directory\n" unless -d "$PlatformsDir/$PlatformName";
+$OutDir = $ARGV[4];
+die "$MyName: $OutDir: No such directory\n" unless -d $OutDir;
+
+readMaster($ARGV[0]);
+checkForCustomStubs($CustomDir);
+readAliases($PlatformsDir, $PlatformName);
+
+##########################################################################
+# copy the files specified in @Copy from the $CustomDir to $OutDir
+##########################################################################
+for(@Copy) {
+    my $custom = File::Spec->join($CustomDir, $_);
+    my $path = File::Spec->join($OutDir, $_);
+    print "Copy $custom -> $path\n";
+    File::Copy::copy($custom, $path) || die "$MyName: copy($custom, $path): $!\n";
+}
+
+##########################################################################
+# make all the *.s files
+##########################################################################
+my @src;
+my($k, $sym);
+while (($k, $sym) = each %Symbols)
+{
+       my $srcname = $$sym{asm_sym} . ".s";
+       my $outpath = File::Spec->join($OutDir, $srcname);
+
+       if ($$sym{is_custom}) {
+               my $custom = File::Spec->join($CustomDir, $$sym{is_custom});
+               File::Copy::copy($custom, $outpath);
+               print "Copied $outpath\n";
+               
+               print "Writing aliases for $srcname\n";
+               my $f = IO::File->new($outpath, 'a');
+               die "$MyName: $outpath: $!\n" unless defined($f);
+               writeAliasesForSymbol($f, $sym);
+               undef $f;
+       } else {
+               my $f = IO::File->new($outpath, 'w');
+               die "$MyName: $outpath: $!\n" unless defined($f);
+               
+               printf "Creating $outpath\n";
+               writeStubForSymbol($f, $sym);
+               writeAliasesForSymbol($f, $sym);
+               undef $f;
+       }
+       push(@src, $srcname);
+}
+
+##########################################################################
+# create the Makefile.inc file from the list for files in @src and @CustomSrc
+##########################################################################
+my $path = File::Spec->join($OutDir, 'stubs.list');
+my $f = IO::File->new($path, 'w');
+my @sources = sort(@src, @CustomSrc);
+for my $s (@sources) {
+       printf $f File::Spec->join($OutDir, $s) . "\n";
+}
+undef $f;
+undef $path;
+