]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/kern/makesyscalls.sh
xnu-7195.81.3.tar.gz
[apple/xnu.git] / bsd / kern / makesyscalls.sh
index 13d56f58a62a1cf400c8228de32b6afe14fd04c3..a8d67728a21846ed1e4e08dad8e81ef2df181534 100755 (executable)
@@ -34,6 +34,10 @@ output_sysprotofile=0
 output_syshdrfile=0
 output_syscalltablefile=0
 output_auditevfile=0
+output_tracecodes=0
+output_systrace=0
+
+use_stdout=0
 
 # output files:
 syscallnamesfile="syscalls.c"
@@ -46,7 +50,8 @@ auditevfile="audit_kevents.c"
 syscallprefix="SYS_"
 switchname="sysent"
 namesname="syscallnames"
-
+tracecodename="syscall.codes"
+systraceargsfile="systrace_args.c"
 # tmp files:
 syslegal="sysent.syslegal.$$"
 sysent="sysent.switch.$$"
@@ -56,14 +61,18 @@ sysprotoend="sysprotoend.$$"
 syscallnamestempfile="syscallnamesfile.$$"
 syshdrtempfile="syshdrtempfile.$$"
 audittempfile="audittempfile.$$"
+tracecodetempfile="tracecodetempfile.$$"
+systraceargstempfile="systraceargstempfile.$$"
+systraceargdesctempfile="systraceargdesctempfile.$$"
+systracerettempfile="systracerettempfile.$$"
 
-trap "rm $syslegal $sysent $sysinc $sysarg $sysprotoend $syscallnamestempfile $syshdrtempfile $audittempfile" 0
+trap "rm $syslegal $sysent $sysinc $sysarg $sysprotoend $syscallnamestempfile $syshdrtempfile $audittempfile $tracecodetempfile $systraceargstempfile $systraceargdesctempfile $systracerettempfile" 0
 
-touch $syslegal $sysent $sysinc $sysarg $sysprotoend $syscallnamestempfile $syshdrtempfile $audittempfile
+touch $syslegal $sysent $sysinc $sysarg $sysprotoend $syscallnamestempfile $syshdrtempfile $audittempfile $tracecodetempfile $systraceargstempfile $systraceargdesctempfile $systracerettempfile
 
 case $# in
     0)
-       echo "usage: $0 input-file [<names|proto|header|table|audit> [<config-file>]]" 1>&2
+       echo "usage: $0 input-file [<names|proto|header|table|audit|trace> [<config-file>]]" 1>&2
        exit 1
        ;;
 esac
@@ -88,6 +97,13 @@ if [ -n "$1" ]; then
        audit)
            output_auditevfile=1
            ;;
+       systrace)
+           output_systrace=1
+           ;;
+       trace)
+           output_tracecodes=1
+           use_stdout=1
+           ;;
     esac
     shift;
 else
@@ -96,6 +112,7 @@ else
     output_syshdrfile=1
     output_syscalltablefile=1
     output_auditevfile=1
+    output_tracecodes=1
 fi
 
 if [ -n "$1" -a -f "$1" ]; then
@@ -131,11 +148,16 @@ s/\$//g
                syscallnamestempfile = \"$syscallnamestempfile\"
                syshdrfile = \"$syshdrfile\"
                syshdrtempfile = \"$syshdrtempfile\"
+               systraceargstempfile = \"$systraceargstempfile\"
+               systraceargdesctempfile = \"$systraceargdesctempfile\"
+               systracerettempfile = \"$systracerettempfile\"
                audittempfile = \"$audittempfile\"
+               tracecodetempfile = \"$tracecodetempfile\"
                syscallprefix = \"$syscallprefix\"
                switchname = \"$switchname\"
                namesname = \"$namesname\"
                infile = \"$input_file\"
+               infilepretty = \"${input_file#"$TARGET"}\"
                "'
 
                printf "/*\n" > syslegal
@@ -168,7 +190,7 @@ s/\$//g
                printf " * \n" > syslegal
                printf " * System call switch table.\n *\n" > syslegal
                printf " * DO NOT EDIT-- this file is automatically generated.\n" > syslegal
-               printf " * created from %s\n */\n\n", infile > syslegal
+               printf " * created from %s\n */\n\n", infilepretty > syslegal
        }
        NR == 1 {
                printf "\n/* The casts are bogus but will do for now. */\n" > sysent
@@ -222,6 +244,19 @@ s/\$//g
                printf "#include <bsm/audit_kevents.h>\n\n" > audittempfile
                printf "#if CONFIG_AUDIT\n\n" > audittempfile
                printf "au_event_t sys_au_event[] = {\n" > audittempfile
+
+               printf "/*\n * System call argument to DTrace register array conversion.\n */\n" > systraceargstempfile
+               printf "#include <sys/systrace_args.h>\n" > systraceargstempfile
+               printf "void\nsystrace_args(int sysnum, void *params, uint64_t *uarg)\n{\n" > systraceargstempfile
+               printf "\tint64_t *iarg  = (int64_t *) uarg;\n" > systraceargstempfile
+               printf "\tswitch (sysnum) {\n" > systraceargstempfile
+
+               printf "void\nsystrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)\n{\n\tconst char *p = NULL;\n" > systraceargdesctempfile
+               printf "\tswitch (sysnum) {\n" > systraceargdesctempfile
+
+               printf "void\nsystrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)\n{\n\tconst char *p = NULL;\n" > systracerettempfile
+               printf "\tswitch (sysnum) {\n" > systracerettempfile
+
                next
        }
        NF == 0 || $1 ~ /^;/ {
@@ -237,6 +272,9 @@ s/\$//g
                print > syscallnamestempfile
                print > sysprotoend
                print > audittempfile
+               print > systraceargstempfile
+               print > systraceargdesctempfile
+               print > systracerettempfile
                savesyscall = syscall_num
                skip_for_header = 0
                next
@@ -247,6 +285,9 @@ s/\$//g
                print > syscallnamestempfile
                print > sysprotoend
                print > audittempfile
+               print > systraceargstempfile
+               print > systraceargdesctempfile
+               print > systracerettempfile
                syscall_num = savesyscall
                skip_for_header = 1
                next
@@ -257,6 +298,9 @@ s/\$//g
                print > syscallnamestempfile
                print > sysprotoend
                print > audittempfile
+               print > systraceargstempfile
+               print > systraceargdesctempfile
+               print > systracerettempfile
                skip_for_header = 0
                next
        }
@@ -290,6 +334,7 @@ s/\$//g
                argc = 0
                argssize = "0"
                additional_comments = " "
+               obs_comments = "_"
 
                # find start and end of call name and arguments
                if ($current_field != "{")
@@ -347,9 +392,15 @@ s/\$//g
                        current_field = comments_start + 1
                        while (current_field < comments_end) {
                                additional_comments = additional_comments $current_field " "
+                               obs_comments = obs_comments $current_field "_"
                                current_field++
                        }
                }
+               sub(/old/, "obs", obs_comments)
+               obs_comments = substr(obs_comments, 1, length(obs_comments)-1)
+               if (obs_comments == "_") {
+                       obs_comments = ""
+               }
 
                # get function return type
                current_field = args_start + 1
@@ -359,6 +410,9 @@ s/\$//g
                current_field++
                funcname = $current_field
                argalias = funcname "_args"
+               if (substr(argalias, 1, 4) == "sys_") {
+                       argalias = substr(argalias, 5)
+               }
                current_field++ # bump past function name
 
                if ($current_field != "(")
@@ -449,6 +503,40 @@ s/\$//g
                size32 = 0
 
                if ((funcname != "nosys" && funcname != "enosys") || (syscall_num == 0 && funcname == "nosys")) {
+                       printf("\t/* %s */\n\tcase %d: {\n", funcname, syscall_num) > systraceargstempfile
+                       printf("\t/* %s */\n\tcase %d:\n", funcname, syscall_num) > systraceargdesctempfile
+                       printf("\t/* %s */\n\tcase %d:\n", funcname, syscall_num) > systracerettempfile
+                       if (argc > 0) {
+                               printf("\t\tswitch(ndx) {\n") > systraceargdesctempfile
+                               printf("\t\tstruct %s *p = params;\n", argalias) > systraceargstempfile
+                               for (i = 1; i <= argc; i++) {
+                                       arg = argtype[i]
+                                       sub("__restrict$", "", arg)
+                                       if (index(arg, "*") > 0)
+                                               printf("\t\tcase %d:\n\t\t\tp = \"userland %s\";\n\t\t\tbreak;\n", i - 1, arg) > systraceargdesctempfile
+                                       else
+                                               printf("\t\tcase %d:\n\t\t\tp = \"%s\";\n\t\t\tbreak;\n", i - 1, arg) > systraceargdesctempfile
+                                       if (index(arg, "*") > 0 || arg == "caddr_t")
+                        printf("\t\tuarg[%d] = (uint64_t) p->%s; /* %s */\n", \
+                                                       i - 1, \
+                                                       argname[i], arg) > systraceargstempfile
+                                       else if (substr(arg, 1, 1) == "u" || arg == "size_t")
+                        printf("\t\tuarg[%d] = (uint64_t) p->%s; /* %s */\n", \
+                                                       i - 1, \
+                                                       argname[i], arg) > systraceargstempfile
+                                       else
+                        printf("\t\tiarg[%d] = (int64_t) p->%s; /* %s */\n", \
+                                                       i - 1, \
+                                                       argname[i], arg) > systraceargstempfile
+                               }
+                               printf("\t\tdefault:\n\t\t\tbreak;\n\t\t};\n") > systraceargdesctempfile
+
+                       }
+                       printf("\t\tbreak;\n\t}\n", argc) > systraceargstempfile
+                       printf("\t\tif (ndx == 0 || ndx == 1)\n") > systracerettempfile
+                       printf("\t\t\tp = \"%s\";\n", returntype) > systracerettempfile
+                       printf("\t\tbreak;\n") > systracerettempfile
+                       printf("\t\tbreak;\n") > systraceargdesctempfile
                        if (argc != 0) {
                                if (add_sysproto_entry == 1) {
                                        printf("struct %s {\n", argalias) > sysarg
@@ -502,7 +590,7 @@ s/\$//g
                                                         argtype[i] == "sigset_t" || argtype[i] == "gid_t" || argtype[i] == "unsigned int" ||
                                                         argtype[i] == "mode_t" || argtype[i] == "key_t" ||
                                                         argtype[i] == "mach_port_name_t" || argtype[i] == "au_asid_t" ||
-                                                        argtype[i] == "associd_t" || argtype[i] == "connid_t") {
+                                                        argtype[i] == "sae_associd_t" || argtype[i] == "sae_connid_t") {
                                                munge32 = munge32 "w"
                                                size32 += 4
                                        }
@@ -582,7 +670,7 @@ s/\$//g
                        }
                }
 
-               printf("#if CONFIG_REQUIRES_U32_MUNGING\n") > sysent
+               printf("#if CONFIG_REQUIRES_U32_MUNGING || (__arm__ && (__BIGGEST_ALIGNMENT__ > 4))\n") > sysent
                printf("\t{ \(sy_call_t *\)%s, %s, %s, %s, %s},", 
                                tempname, munge32, munge_ret, argssize, size32) > sysent
                linesize = length(tempname) + length(munge32) + \
@@ -597,6 +685,9 @@ s/\$//g
                # output to syscalls.c
                if (add_sysnames_entry == 1) {
                        tempname = funcname
+                       if (substr(tempname, 1, 4) == "sys_") {
+                               tempname = substr(tempname, 5)
+                       }
                        if (funcname == "nosys" || funcname == "enosys") {
                                if (syscall_num == 0)
                                        tempname = "syscall"
@@ -617,6 +708,9 @@ s/\$//g
                # output to syscalls.h
                if (add_sysheader_entry == 1) {
                        tempname = funcname
+                       if (substr(tempname, 1, 4) == "sys_") {
+                               tempname = substr(tempname, 5)
+                       }
                        if (syscall_num == 0) {
                                tempname = "syscall"
                        }
@@ -625,13 +719,6 @@ s/\$//g
                                linesize = length(syscallprefix) + length(tempname) + 12
                                align_comment(linesize, 30, syshdrtempfile)
                                printf("%d\n", syscall_num) > syshdrtempfile
-                               # special case for gettimeofday on ppc - cctools project uses old name
-                               if (tempname == "ppc_gettimeofday") {
-                                       printf("#define\t%s%s", syscallprefix, "gettimeofday") > syshdrtempfile
-                                       linesize = length(syscallprefix) + length(tempname) + 12
-                                       align_comment(linesize, 30, syshdrtempfile)
-                                       printf("%d\n", syscall_num) > syshdrtempfile
-                               }
                        }
                        else if (skip_for_header == 0) {
                                printf("\t\t\t/* %d %s*/\n", syscall_num, additional_comments) > syshdrtempfile
@@ -653,7 +740,21 @@ s/\$//g
                # output to audit_kevents.c
                printf("\t%s,\t\t", auditev) > audittempfile
                printf("/* %d = %s%s*/\n", syscall_num, tempname, additional_comments) > audittempfile 
-               
+
+               tempname = funcname
+               if (skip_for_header == 0) {
+                       if (tempname == "nosys" || tempname == "enosys") {
+                               if (obs_comments == "") {
+                                       printf("0x40c%04x\tBSC_#%d%s\n", (syscall_num*4), syscall_num, obs_comments) > tracecodetempfile 
+                               } else {
+                                       printf("0x40c%04x\tBSC%s\n", (syscall_num*4), obs_comments) > tracecodetempfile 
+                               }
+                       } else {        
+                               sub(/^_+/, "", tempname)
+                               printf("0x40c%04x\tBSC_%s\n", (syscall_num*4), tempname) > tracecodetempfile 
+                       }
+               }
+
                syscall_num++
                next
        }
@@ -671,24 +772,25 @@ s/\$//g
                printf("\n#endif /* !%s */\n", sysproto_h) > sysprotoend
 
                printf("};\n") > sysent
-               printf("int     nsysent = sizeof(sysent) / sizeof(sysent[0]);\n") > sysent
-               printf("/* Verify that NUM_SYSENT reflects the latest syscall count */\n") > sysent
-               printf("int     nsysent_size_check[((sizeof(sysent) / sizeof(sysent[0])) == NUM_SYSENT) ? 1 : -1] __unused;\n") > sysent
+               printf("const unsigned int nsysent = sizeof(sysent) / sizeof(sysent[0]);\n") > sysent
 
                printf("};\n") > syscallnamestempfile
                printf("#define\t%sMAXSYSCALL\t%d\n", syscallprefix, syscall_num) \
                    > syshdrtempfile
+               printf("#define\t%sinvalid\t%d\n", syscallprefix, 63) \
+                   > syshdrtempfile
                printf("\n#endif /* __APPLE_API_PRIVATE */\n") > syshdrtempfile
                printf("#endif /* !%s */\n", syscall_h) > syshdrtempfile
                printf("};\n\n") > audittempfile
                printf("#endif /* AUDIT */\n") > audittempfile
+
+               printf "\tdefault:\n\t\tbreak;\n\t};\n}\n" > systraceargstempfile
+               printf "\tdefault:\n\t\tbreak;\n\t};\n\tif (p != NULL)\n\t\tstrlcpy(desc, p, descsz);\n}\n" > systraceargdesctempfile
+               printf "\tdefault:\n\t\tbreak;\n\t};\n\tif (p != NULL)\n\t\tstrlcpy(desc, p, descsz);\n}\n" > systracerettempfile
        } '
 
-# define value in syscall table file to permit redifintion because of the way
-# __private_extern__ (doesn't) work.
 if [ $output_syscalltablefile -eq 1 ]; then
     cat $syslegal > $syscalltablefile
-    printf "#define __INIT_SYSENT_C__ 1\n" >> $syscalltablefile
     cat $sysinc $sysent >> $syscalltablefile
 fi
 
@@ -707,3 +809,18 @@ fi
 if [ $output_auditevfile -eq 1 ]; then
     cat $syslegal $audittempfile > $auditevfile
 fi
+
+if [ $output_systrace -eq 1 ]; then
+       cat $systraceargstempfile > $systraceargsfile
+       cat $systraceargdesctempfile >> $systraceargsfile
+       cat $systracerettempfile >> $systraceargsfile
+fi
+
+if [ $output_tracecodes -eq 1 ]; then
+       if [ $use_stdout -eq 1 ]; then
+               cat $tracecodetempfile
+       else
+               cat $tracecodetempfile > $tracecodename
+       fi
+fi
+