/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* ONC_PLUS EXTRACT START */ /* * Copyright (c) 1988, 2010, Oracle and/or its affiliates. All rights reserved. */ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ /* ONC_PLUS EXTRACT END */ #include #include #include #include #include /* ONC_PLUS EXTRACT START */ /* * This table is the switch used to transfer to the appropriate * routine for processing a system call. Each row contains the * number of arguments expected, a switch that tells systrap() * in trap.c whether a setjmp() is not necessary, and a pointer * to the routine. */ /* ONC_PLUS EXTRACT END */ int access(); int alarm(); int auditsys(); int64_t brandsys(); int brk(); int chdir(); int chmod(); int chown(); int chroot(); int cladm(); int close(); int exece(); int faccessat(); int fchmodat(); int fchownat(); int fcntl(); int64_t vfork(); int64_t forksys(); int fstat(); int fdsync(); int64_t getgid(); int ucredsys(); int64_t getpid(); int64_t getuid(); time_t gtime(); int getloadavg(); int rusagesys(); int getpagesizes(); int gtty(); #if defined(__i386) || defined(__amd64) int hrtsys(); #endif /* __i386 || __amd64 */ int ioctl(); int kill(); int labelsys(); int link(); int linkat(); off32_t lseek32(); off_t lseek64(); int lgrpsys(); int mmapobjsys(); int mknod(); int mknodat(); int mount(); int nice(); int nullsys(); int open(); int openat(); int pause(); long pcsample(); int privsys(); int profil(); ssize_t pread(); ssize_t pwrite(); ssize_t read(); int rename(); int renameat(); void rexit(); int semsys(); int setgid(); int setpgrp(); int setuid(); uintptr_t shmsys(); uint64_t sidsys(); int sigprocmask(); int sigsuspend(); int sigaltstack(); int sigaction(); int sigpending(); int sigresend(); int sigtimedwait(); int getsetcontext(); int stat(); int fstatat(); int stime(); int stty(); int syssync(); int sysacct(); clock_t times(); long ulimit(); int getrlimit32(); int setrlimit32(); int umask(); int umount2(); int unlink(); int unlinkat(); int utimesys(); int64_t utssys32(); int64_t utssys64(); int uucopy(); ssize_t uucopystr(); ssize_t write(); ssize_t readv(); ssize_t writev(); int syslwp_park(); int rmdir(); int mkdir(); int mkdirat(); int getdents32(); int statfs32(); int fstatfs32(); int sysfs(); int getmsg(); int pollsys(); int putmsg(); int uadmin(); int lstat(); int symlink(); int symlinkat(); ssize_t readlink(); ssize_t readlinkat(); int resolvepath(); int setgroups(); int getgroups(); int fchdir(); int fchown(); int fchmod(); int getcwd(); int statvfs(); int fstatvfs(); offset_t llseek32(); #if (defined(__i386) && !defined(__amd64)) || defined(__i386_COMPAT) int sysi86(); #endif int acl(); int facl(); long priocntlsys(); int waitsys(); int sigsendsys(); int mincore(); caddr_t smmap64(); caddr_t smmap32(); int smmaplf32(); int mprotect(); int munmap(); int uname(); int lchown(); int getpmsg(); int putpmsg(); int memcntl(); long sysconfig(); int adjtime(); long systeminfo(); int setegid(); int seteuid(); int setreuid(); int setregid(); int install_utrap(); #ifdef __sparc int sparc_utrap_install(); #endif int syslwp_create(); void syslwp_exit(); int syslwp_suspend(); int syslwp_continue(); int syslwp_private(); int lwp_detach(); int lwp_info(); int lwp_kill(); int lwp_self(); int64_t lwp_sigmask(); int yield(); int lwp_wait(); int lwp_mutex_timedlock(); int lwp_mutex_wakeup(); int lwp_mutex_unlock(); int lwp_mutex_trylock(); int lwp_mutex_register(); int lwp_rwlock_sys(); int lwp_sema_post(); int lwp_sema_timedwait(); int lwp_sema_trywait(); int lwp_cond_wait(); int lwp_cond_signal(); int lwp_cond_broadcast(); caddr_t schedctl(); long pathconf(); long fpathconf(); int processor_bind(); int processor_info(); int p_online(); /* * POSIX .4 system calls * */ int clock_gettime(); int clock_settime(); int clock_getres(); int timer_create(); int timer_delete(); int timer_settime(); int timer_gettime(); int timer_getoverrun(); int nanosleep(); int sigqueue(); int signotify(); int getdents64(); int stat64(); int lstat64(); int fstatat64(); int fstat64(); int statvfs64(); int fstatvfs64(); int setrlimit64(); int getrlimit64(); int pread64(); int pwrite64(); int open64(); int openat64(); /* * NTP syscalls */ int ntp_gettime(); int ntp_adjtime(); /* * ++++++++++++++++++++++++ * ++ SunOS4.1 Buyback ++ * ++++++++++++++++++++++++ * * fchroot, vhangup, gettimeofday */ int fchroot(); int vhangup(); int gettimeofday(); int getitimer(); int setitimer(); int corectl(); int modctl(); int64_t loadable_syscall(); int64_t indir(); long tasksys(); long rctlsys(); long zone(); int so_socket(); int so_socketpair(); int bind(); int listen(); int accept(); int connect(); int shutdown(); ssize_t recv(); ssize_t recvfrom(); ssize_t recvmsg(); ssize_t send(); ssize_t sendmsg(); ssize_t sendto(); int getpeername(); int getsockname(); int getsockopt(); int setsockopt(); int sockconfig(); ssize_t sendfilev(); typedef int64_t (*llfcn_t)(); /* for casting one-word returns */ /* * Sysent initialization macros. * These take the name string of the system call even though that isn't * currently used in the sysent entry. This might be useful someday. * * Initialization macro for system calls which take their args in the C style. * These system calls return the longlong_t return value and must call * set_errno() to return an error. For SPARC, narg must be at most six. * For more args, use the SYSENT_AP() routine. * * We are able to return two distinct values to userland via the rval_t. * At this time, that corresponds to one 64-bit quantity, or two 32-bit * quantities. The kernel does not currently need to return two 64-bit * values, or one 128 bit value(!), but we may do one day, so the calling * sequence between userland and the kernel should permit it. * * The interpretation of rval_t is provided by the sy_flags field * which is used to determine how to arrange the results in registers * (or on the stack) for return userland. */ /* returns a 64-bit quantity for both ABIs */ #define SYSENT_C(name, call, narg) \ { (narg), SE_64RVAL, NULL, NULL, (llfcn_t)(call) } /* returns one 32-bit value for both ABIs: r_val1 */ #define SYSENT_CI(name, call, narg) \ { (narg), SE_32RVAL1, NULL, NULL, (llfcn_t)(call) } /* returns 2 32-bit values: r_val1 & r_val2 */ #define SYSENT_2CI(name, call, narg) \ { (narg), SE_32RVAL1|SE_32RVAL2, NULL, NULL, (llfcn_t)(call) } /* * Initialization macro for system calls which take their args in the standard * Unix style of a pointer to the arg structure and a pointer to the rval_t. * * Deprecated wherever possible (slower on some architectures, and trickier * to maintain two flavours). */ #define SYSENT_AP(name, call, narg) \ { (narg), SE_64RVAL, (call), NULL, syscall_ap } /* * Conditional constructors to build the tables without #ifdef clutter */ #if defined(_LP64) #define IF_LP64(true, false) true #else #define IF_LP64(true, false) false #endif #if defined(__sparc) #define IF_sparc(true, false) true #else #define IF_sparc(true, false) false #endif #if defined(__i386) && !defined(__amd64) #define IF_i386(true, false) true #else #define IF_i386(true, false) false #endif #if defined(__i386) || defined(__amd64) #define IF_x86(true, false) true #else #define IF_x86(true, false) false #endif #if (defined(__i386) && !defined(__amd64)) || defined(__i386_COMPAT) #define IF_386_ABI(true, false) true #else #define IF_386_ABI(true, false) false #endif /* * Define system calls that return a native 'long' quantity i.e. a 32-bit * or 64-bit integer - depending on how the kernel is itself compiled * e.g. read(2) returns 'ssize_t' in the kernel and in userland. */ #define SYSENT_CL(name, call, narg) \ IF_LP64(SYSENT_C(name, call, narg), SYSENT_CI(name, call, narg)) /* * Initialization macro for loadable native system calls. */ #define SYSENT_LOADABLE() \ { 0, SE_LOADABLE, (int (*)())nosys, NULL, loadable_syscall } /* ONC_PLUS EXTRACT END */ /* * Initialization macro for loadable 32-bit compatibility system calls. */ #define SYSENT_LOADABLE32() SYSENT_LOADABLE() #define SYSENT_NOSYS() SYSENT_C("nosys", nosys, 0) struct sysent nosys_ent = SYSENT_NOSYS(); /* ONC_PLUS EXTRACT START */ /* * Native sysent table. */ struct sysent sysent[NSYSCALL] = { /* ONC_PLUS EXTRACT END */ /* 0 */ IF_LP64( SYSENT_NOSYS(), SYSENT_C("indir", indir, 1)), /* 1 */ SYSENT_CI("exit", rexit, 1), /* 2 */ SYSENT_LOADABLE(), /* (was forkall) */ /* 3 */ SYSENT_CL("read", read, 3), /* 4 */ SYSENT_CL("write", write, 3), /* 5 */ SYSENT_CI("open", open, 3), /* 6 */ SYSENT_CI("close", close, 1), /* 7 */ SYSENT_CI("linkat", linkat, 5), /* 8 */ SYSENT_LOADABLE(), /* (was creat) */ /* 9 */ SYSENT_CI("link", link, 2), /* 10 */ SYSENT_CI("unlink", unlink, 1), /* 11 */ SYSENT_CI("symlinkat", symlinkat, 3), /* 12 */ SYSENT_CI("chdir", chdir, 1), /* 13 */ SYSENT_CL("time", gtime, 0), /* 14 */ SYSENT_CI("mknod", mknod, 3), /* 15 */ SYSENT_CI("chmod", chmod, 2), /* 16 */ SYSENT_CI("chown", chown, 3), /* 17 */ SYSENT_CI("brk", brk, 1), /* 18 */ SYSENT_CI("stat", stat, 2), /* 19 */ IF_LP64( SYSENT_CL("lseek", lseek64, 3), SYSENT_CL("lseek", lseek32, 3)), /* 20 */ SYSENT_2CI("getpid", getpid, 0), /* 21 */ SYSENT_AP("mount", mount, 8), /* 22 */ SYSENT_CL("readlinkat", readlinkat, 4), /* 23 */ SYSENT_CI("setuid", setuid, 1), /* 24 */ SYSENT_2CI("getuid", getuid, 0), /* 25 */ SYSENT_CI("stime", stime, 1), /* 26 */ SYSENT_CL("pcsample", pcsample, 2), /* 27 */ SYSENT_CI("alarm", alarm, 1), /* 28 */ SYSENT_CI("fstat", fstat, 2), /* 29 */ SYSENT_CI("pause", pause, 0), /* 30 */ SYSENT_LOADABLE(), /* (was utime) */ /* 31 */ SYSENT_CI("stty", stty, 2), /* 32 */ SYSENT_CI("gtty", gtty, 2), /* 33 */ SYSENT_CI("access", access, 2), /* 34 */ SYSENT_CI("nice", nice, 1), /* 35 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("statfs", statfs32, 4)), /* 36 */ SYSENT_CI("sync", syssync, 0), /* 37 */ SYSENT_CI("kill", kill, 2), /* 38 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("fstatfs", fstatfs32, 4)), /* 39 */ SYSENT_CI("setpgrp", setpgrp, 3), /* 40 */ SYSENT_CI("uucopystr", uucopystr, 3), /* 41 */ SYSENT_LOADABLE(), /* (was dup) */ /* 42 */ SYSENT_LOADABLE(), /* pipe */ /* 43 */ SYSENT_CL("times", times, 1), /* 44 */ SYSENT_CI("prof", profil, 4), /* 45 */ SYSENT_CI("faccessat", faccessat, 4), /* 46 */ SYSENT_CI("setgid", setgid, 1), /* 47 */ SYSENT_2CI("getgid", getgid, 0), /* 48 */ SYSENT_CI("mknodat", mknodat, 4), /* 49 */ SYSENT_LOADABLE(), /* msgsys */ /* 50 */ IF_x86( SYSENT_CI("sysi86", sysi86, 4), SYSENT_LOADABLE()), /* (was sys3b) */ /* 51 */ SYSENT_LOADABLE(), /* sysacct */ /* 52 */ SYSENT_LOADABLE(), /* shmsys */ /* 53 */ SYSENT_LOADABLE(), /* semsys */ /* 54 */ SYSENT_CI("ioctl", ioctl, 3), /* 55 */ SYSENT_CI("uadmin", uadmin, 3), /* 56 */ SYSENT_CI("fchownat", fchownat, 5), /* 57 */ IF_LP64( SYSENT_2CI("utssys", utssys64, 4), SYSENT_2CI("utssys", utssys32, 4)), /* 58 */ SYSENT_CI("fdsync", fdsync, 2), /* 59 */ SYSENT_CI("exece", exece, 3), /* 60 */ SYSENT_CI("umask", umask, 1), /* 61 */ SYSENT_CI("chroot", chroot, 1), /* 62 */ SYSENT_CI("fcntl", fcntl, 3), /* 63 */ SYSENT_CI("ulimit", ulimit, 2), /* 64 */ SYSENT_CI("renameat", renameat, 4), /* 65 */ SYSENT_CI("unlinkat", unlinkat, 3), /* 66 */ SYSENT_CI("fstatat", fstatat, 4), /* 67 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("fstatat64", fstatat64, 4)), /* 68 */ SYSENT_CI("openat", openat, 4), /* 69 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("openat64", openat64, 4)), /* 70 */ SYSENT_CI("tasksys", tasksys, 5), /* 71 */ SYSENT_LOADABLE(), /* acctctl */ /* 72 */ SYSENT_LOADABLE(), /* exacct */ /* 73 */ SYSENT_CI("getpagesizes", getpagesizes, 3), /* 74 */ SYSENT_CI("rctlsys", rctlsys, 6), /* 75 */ SYSENT_2CI("sidsys", sidsys, 4), /* 76 */ SYSENT_LOADABLE(), /* (was fsat) */ /* 77 */ SYSENT_CI("lwp_park", syslwp_park, 3), /* 78 */ SYSENT_CL("sendfilev", sendfilev, 5), /* 79 */ SYSENT_CI("rmdir", rmdir, 1), /* 80 */ SYSENT_CI("mkdir", mkdir, 2), /* 81 */ IF_LP64( SYSENT_CI("getdents", getdents64, 3), SYSENT_CI("getdents", getdents32, 3)), /* 82 */ SYSENT_CI("privsys", privsys, 6), /* 83 */ SYSENT_CI("ucredsys", ucredsys, 3), /* 84 */ SYSENT_CI("sysfs", sysfs, 3), /* 85 */ SYSENT_CI("getmsg", getmsg, 4), /* 86 */ SYSENT_CI("putmsg", putmsg, 4), /* 87 */ SYSENT_LOADABLE(), /* (was poll) */ /* 88 */ SYSENT_CI("lstat", lstat, 2), /* 89 */ SYSENT_CI("symlink", symlink, 2), /* 90 */ SYSENT_CL("readlink", readlink, 3), /* 91 */ SYSENT_CI("setgroups", setgroups, 2), /* 92 */ SYSENT_CI("getgroups", getgroups, 2), /* 93 */ SYSENT_CI("fchmod", fchmod, 2), /* 94 */ SYSENT_CI("fchown", fchown, 3), /* 95 */ SYSENT_CI("sigprocmask", sigprocmask, 3), /* 96 */ SYSENT_CI("sigsuspend", sigsuspend, 1), /* 97 */ SYSENT_CI("sigaltstack", sigaltstack, 2), /* 98 */ SYSENT_CI("sigaction", sigaction, 3), /* 99 */ SYSENT_CI("sigpending", sigpending, 2), /* 100 */ SYSENT_CI("getsetcontext", getsetcontext, 2), /* 101 */ SYSENT_CI("fchmodat", fchmodat, 4), /* 102 */ SYSENT_CI("mkdirat", mkdirat, 3), /* 103 */ SYSENT_CI("statvfs", statvfs, 2), /* 104 */ SYSENT_CI("fstatvfs", fstatvfs, 2), /* 105 */ SYSENT_CI("getloadavg", getloadavg, 2), /* ONC_PLUS EXTRACT START */ /* 106 */ SYSENT_LOADABLE(), /* nfssys */ /* ONC_PLUS EXTRACT END */ /* 107 */ SYSENT_CI("waitsys", waitsys, 4), /* 108 */ SYSENT_CI("sigsendset", sigsendsys, 2), /* 109 */ IF_x86( SYSENT_AP("hrtsys", hrtsys, 5), SYSENT_LOADABLE()), /* 110 */ SYSENT_CI("utimesys", utimesys, 5), /* 111 */ SYSENT_CI("sigresend", sigresend, 3), /* 112 */ SYSENT_CL("priocntlsys", priocntlsys, 5), /* 113 */ SYSENT_CL("pathconf", pathconf, 2), /* 114 */ SYSENT_CI("mincore", mincore, 3), /* 115 */ IF_LP64( SYSENT_CL("mmap", smmap64, 6), SYSENT_CL("mmap", smmap32, 6)), /* 116 */ SYSENT_CI("mprotect", mprotect, 3), /* 117 */ SYSENT_CI("munmap", munmap, 2), /* 118 */ SYSENT_CL("fpathconf", fpathconf, 2), /* 119 */ SYSENT_2CI("vfork", vfork, 0), /* 120 */ SYSENT_CI("fchdir", fchdir, 1), /* 121 */ SYSENT_CL("readv", readv, 3), /* 122 */ SYSENT_CL("writev", writev, 3), /* 123 */ SYSENT_LOADABLE(), /* (was xstat) */ /* 124 */ SYSENT_LOADABLE(), /* (was lxstat) */ /* 125 */ SYSENT_LOADABLE(), /* (was fxstat) */ /* 126 */ SYSENT_LOADABLE(), /* (was xmknod) */ /* 127 */ SYSENT_CI("mmapobj", mmapobjsys, 5), /* 128 */ IF_LP64( SYSENT_CI("setrlimit", setrlimit64, 2), SYSENT_CI("setrlimit", setrlimit32, 2)), /* 129 */ IF_LP64( SYSENT_CI("getrlimit", getrlimit64, 2), SYSENT_CI("getrlimit", getrlimit32, 2)), /* 130 */ SYSENT_CI("lchown", lchown, 3), /* 131 */ SYSENT_CI("memcntl", memcntl, 6), /* 132 */ SYSENT_CI("getpmsg", getpmsg, 5), /* 133 */ SYSENT_CI("putpmsg", putpmsg, 5), /* 134 */ SYSENT_CI("rename", rename, 2), /* 135 */ SYSENT_CI("uname", uname, 1), /* 136 */ SYSENT_CI("setegid", setegid, 1), /* 137 */ SYSENT_CL("sysconfig", sysconfig, 1), /* 138 */ SYSENT_CI("adjtime", adjtime, 2), /* 139 */ SYSENT_CL("systeminfo", systeminfo, 3), /* 140 */ SYSENT_LOADABLE(), /* sharefs */ /* 141 */ SYSENT_CI("seteuid", seteuid, 1), /* 142 */ SYSENT_2CI("forksys", forksys, 2), /* 143 */ SYSENT_LOADABLE(), /* (was fork1) */ /* 144 */ SYSENT_CI("sigtimedwait", sigtimedwait, 3), /* 145 */ SYSENT_CI("lwp_info", lwp_info, 1), /* 146 */ SYSENT_CI("yield", yield, 0), /* 147 */ SYSENT_LOADABLE(), /* (was lwp_sema_wait) */ /* 148 */ SYSENT_CI("lwp_sema_post", lwp_sema_post, 1), /* 149 */ SYSENT_CI("lwp_sema_trywait", lwp_sema_trywait, 1), /* 150 */ SYSENT_CI("lwp_detach", lwp_detach, 1), /* 151 */ SYSENT_CI("corectl", corectl, 4), /* 152 */ SYSENT_CI("modctl", modctl, 6), /* 153 */ SYSENT_CI("fchroot", fchroot, 1), /* 154 */ SYSENT_LOADABLE(), /* (was utimes) */ /* 155 */ SYSENT_CI("vhangup", vhangup, 0), /* 156 */ SYSENT_CI("gettimeofday", gettimeofday, 1), /* 157 */ SYSENT_CI("getitimer", getitimer, 2), /* 158 */ SYSENT_CI("setitimer", setitimer, 3), /* 159 */ SYSENT_CI("lwp_create", syslwp_create, 3), /* 160 */ SYSENT_CI("lwp_exit", (int (*)())syslwp_exit, 0), /* 161 */ SYSENT_CI("lwp_suspend", syslwp_suspend, 1), /* 162 */ SYSENT_CI("lwp_continue", syslwp_continue, 1), /* 163 */ SYSENT_CI("lwp_kill", lwp_kill, 2), /* 164 */ SYSENT_CI("lwp_self", lwp_self, 0), /* 165 */ SYSENT_2CI("lwp_sigmask", lwp_sigmask, 5), /* 166 */ IF_x86( SYSENT_CI("lwp_private", syslwp_private, 3), SYSENT_NOSYS()), /* 167 */ SYSENT_CI("lwp_wait", lwp_wait, 2), /* 168 */ SYSENT_CI("lwp_mutex_wakeup", lwp_mutex_wakeup, 2), /* 169 */ SYSENT_LOADABLE(), /* (was lwp_mutex_lock) */ /* 170 */ SYSENT_CI("lwp_cond_wait", lwp_cond_wait, 4), /* 171 */ SYSENT_CI("lwp_cond_signal", lwp_cond_signal, 1), /* 172 */ SYSENT_CI("lwp_cond_broadcast", lwp_cond_broadcast, 1), /* 173 */ SYSENT_CL("pread", pread, 4), /* 174 */ SYSENT_CL("pwrite ", pwrite, 4), /* * The 64-bit C library maps llseek() to lseek(), so this * is needed as a native syscall only on the 32-bit kernel. */ /* 175 */ IF_LP64( SYSENT_NOSYS(), SYSENT_C("llseek", llseek32, 4)), /* 176 */ SYSENT_LOADABLE(), /* inst_sync */ /* 177 */ SYSENT_CI("brandsys", brandsys, 6), /* 178 */ SYSENT_LOADABLE(), /* kaio */ /* 179 */ SYSENT_LOADABLE(), /* cpc */ /* 180 */ SYSENT_CI("lgrpsys", lgrpsys, 3), /* 181 */ SYSENT_CI("rusagesys", rusagesys, 5), /* 182 */ SYSENT_LOADABLE(), /* portfs */ /* 183 */ SYSENT_CI("pollsys", pollsys, 4), /* 184 */ SYSENT_CI("labelsys", labelsys, 5), /* 185 */ SYSENT_CI("acl", acl, 4), /* 186 */ SYSENT_AP("auditsys", auditsys, 6), /* 187 */ SYSENT_CI("processor_bind", processor_bind, 4), /* 188 */ SYSENT_CI("processor_info", processor_info, 2), /* 189 */ SYSENT_CI("p_online", p_online, 2), /* 190 */ SYSENT_CI("sigqueue", sigqueue, 5), /* 191 */ SYSENT_CI("clock_gettime", clock_gettime, 2), /* 192 */ SYSENT_CI("clock_settime", clock_settime, 2), /* 193 */ SYSENT_CI("clock_getres", clock_getres, 2), /* 194 */ SYSENT_CI("timer_create", timer_create, 3), /* 195 */ SYSENT_CI("timer_delete", timer_delete, 1), /* 196 */ SYSENT_CI("timer_settime", timer_settime, 4), /* 197 */ SYSENT_CI("timer_gettime", timer_gettime, 2), /* 198 */ SYSENT_CI("timer_getoverrun", timer_getoverrun, 1), /* 199 */ SYSENT_CI("nanosleep", nanosleep, 2), /* 200 */ SYSENT_CI("facl", facl, 4), /* 201 */ SYSENT_LOADABLE(), /* door */ /* 202 */ SYSENT_CI("setreuid", setreuid, 2), /* 203 */ SYSENT_CI("setregid", setregid, 2), /* 204 */ SYSENT_CI("install_utrap", install_utrap, 3), /* 205 */ SYSENT_CI("signotify", signotify, 3), /* 206 */ SYSENT_CL("schedctl", schedctl, 0), /* 207 */ SYSENT_LOADABLE(), /* pset */ /* 208 */ IF_sparc( SYSENT_CI("sparc_utrap_install", sparc_utrap_install, 5), SYSENT_NOSYS()), /* 209 */ SYSENT_CI("resolvepath", resolvepath, 3), /* 210 */ SYSENT_CI("lwp_mutex_timedlock", lwp_mutex_timedlock, 3), /* 211 */ SYSENT_CI("lwp_sema_timedwait", lwp_sema_timedwait, 3), /* 212 */ SYSENT_CI("lwp_rwlock_sys", lwp_rwlock_sys, 3), /* * Syscalls 213-225: 32-bit system call support for large files. * * (The 64-bit C library transparently maps these system calls * back to their native versions, so almost all of them are only * needed as native syscalls on the 32-bit kernel). */ /* 213 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("getdents64", getdents64, 3)), /* 214 */ IF_LP64( SYSENT_NOSYS(), SYSENT_AP("smmaplf32", smmaplf32, 7)), /* 215 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("stat64", stat64, 2)), /* 216 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("lstat64", lstat64, 2)), /* 217 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("fstat64", fstat64, 2)), /* 218 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("statvfs64", statvfs64, 2)), /* 219 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("fstatvfs64", fstatvfs64, 2)), /* 220 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("setrlimit64", setrlimit64, 2)), /* 221 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("getrlimit64", getrlimit64, 2)), /* 222 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("pread64", pread64, 5)), /* 223 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("pwrite64", pwrite64, 5)), /* 224 */ SYSENT_LOADABLE(), /* (was creat64) */ /* 225 */ IF_LP64( SYSENT_NOSYS(), SYSENT_CI("open64", open64, 3)), /* 226 */ SYSENT_LOADABLE(), /* rpcsys */ /* 227 */ SYSENT_CL("zone", zone, 5), /* 228 */ SYSENT_LOADABLE(), /* autofssys */ /* 229 */ SYSENT_CI("getcwd", getcwd, 2), /* 230 */ SYSENT_CI("so_socket", so_socket, 5), /* 231 */ SYSENT_CI("so_socketpair", so_socketpair, 1), /* 232 */ SYSENT_CI("bind", bind, 4), /* 233 */ SYSENT_CI("listen", listen, 3), /* 234 */ SYSENT_CI("accept", accept, 4), /* 235 */ SYSENT_CI("connect", connect, 4), /* 236 */ SYSENT_CI("shutdown", shutdown, 3), /* 237 */ SYSENT_CL("recv", recv, 4), /* 238 */ SYSENT_CL("recvfrom", recvfrom, 6), /* 239 */ SYSENT_CL("recvmsg", recvmsg, 3), /* 240 */ SYSENT_CL("send", send, 4), /* 241 */ SYSENT_CL("sendmsg", sendmsg, 3), /* 242 */ SYSENT_CL("sendto", sendto, 6), /* 243 */ SYSENT_CI("getpeername", getpeername, 4), /* 244 */ SYSENT_CI("getsockname", getsockname, 4), /* 245 */ SYSENT_CI("getsockopt", getsockopt, 6), /* 246 */ SYSENT_CI("setsockopt", setsockopt, 6), /* 247 */ SYSENT_CI("sockconfig", sockconfig, 5), /* 248 */ SYSENT_CI("ntp_gettime", ntp_gettime, 1), /* 249 */ SYSENT_CI("ntp_adjtime", ntp_adjtime, 1), /* 250 */ SYSENT_CI("lwp_mutex_unlock", lwp_mutex_unlock, 1), /* 251 */ SYSENT_CI("lwp_mutex_trylock", lwp_mutex_trylock, 2), /* 252 */ SYSENT_CI("lwp_mutex_register", lwp_mutex_register, 2), /* 253 */ SYSENT_CI("cladm", cladm, 3), /* 254 */ SYSENT_CI("uucopy", uucopy, 3), /* 255 */ SYSENT_CI("umount2", umount2, 2) /* ONC_PLUS EXTRACT START */ }; /* ONC_PLUS EXTRACT END */ #ifdef _SYSCALL32_IMPL extern int ulimit32(); extern ssize_t read32(); extern ssize_t write32(); extern ssize_t pread32(); extern ssize_t pwrite32(); extern ssize_t readv32(); extern ssize_t writev32(); extern ssize_t readlink32(); extern ssize_t readlinkat32(); extern int open32(); extern int openat32(); extern int stat32(); extern int fstatat32(); extern int lstat32(); extern int fstat32(); extern int fstatat64_32(); extern int stat64_32(); extern int lstat64_32(); extern int fstat64_32(); extern int getmsg32(); extern int putmsg32(); extern int getpmsg32(); extern int putpmsg32(); extern int getsetcontext32(); extern int statvfs32(); extern int fstatvfs32(); extern int statvfs64_32(); extern int fstatvfs64_32(); extern int sigaction32(); extern clock32_t times32(); extern int stime32(); extern int getpagesizes32(); extern int sigaltstack32(); extern int sigqueue32(); extern offset_t llseek32(); extern int waitsys32(); extern ssize_t recv32(); extern ssize_t recvfrom32(); extern ssize_t send32(); extern ssize_t sendto32(); extern int privsys32(); extern int ucredsys32(); /* ONC_PLUS EXTRACT START */ /* * sysent table for ILP32 processes running on * a LP64 kernel. */ struct sysent sysent32[NSYSCALL] = { /* ONC_PLUS EXTRACT END */ /* 0 */ SYSENT_C("indir", indir, 1), /* 1 */ SYSENT_CI("exit", (int (*)())rexit, 1), /* 2 */ SYSENT_LOADABLE32(), /* (was forkall) */ /* 3 */ SYSENT_CI("read", read32, 3), /* 4 */ SYSENT_CI("write", write32, 3), /* 5 */ SYSENT_CI("open", open32, 3), /* 6 */ SYSENT_CI("close", close, 1), /* 7 */ SYSENT_CI("linkat", linkat, 5), /* 8 */ SYSENT_LOADABLE32(), /* (was creat32) */ /* 9 */ SYSENT_CI("link", link, 2), /* 10 */ SYSENT_CI("unlink", unlink, 1), /* 11 */ SYSENT_CI("symlinkat", symlinkat, 3), /* 12 */ SYSENT_CI("chdir", chdir, 1), /* 13 */ SYSENT_CI("time", gtime, 0), /* 14 */ SYSENT_CI("mknod", mknod, 3), /* 15 */ SYSENT_CI("chmod", chmod, 2), /* 16 */ SYSENT_CI("chown", chown, 3), /* 17 */ SYSENT_CI("brk", brk, 1), /* 18 */ SYSENT_CI("stat", stat32, 2), /* 19 */ SYSENT_CI("lseek", lseek32, 3), /* 20 */ SYSENT_2CI("getpid", getpid, 0), /* 21 */ SYSENT_AP("mount", mount, 8), /* 22 */ SYSENT_CI("readlinkat", readlinkat32, 4), /* 23 */ SYSENT_CI("setuid", setuid, 1), /* 24 */ SYSENT_2CI("getuid", getuid, 0), /* 25 */ SYSENT_CI("stime", stime32, 1), /* 26 */ SYSENT_CI("pcsample", pcsample, 2), /* 27 */ SYSENT_CI("alarm", alarm, 1), /* 28 */ SYSENT_CI("fstat", fstat32, 2), /* 29 */ SYSENT_CI("pause", pause, 0), /* 30 */ SYSENT_LOADABLE32(), /* (was utime) */ /* 31 */ SYSENT_CI("stty", stty, 2), /* 32 */ SYSENT_CI("gtty", gtty, 2), /* 33 */ SYSENT_CI("access", access, 2), /* 34 */ SYSENT_CI("nice", nice, 1), /* 35 */ SYSENT_CI("statfs", statfs32, 4), /* 36 */ SYSENT_CI("sync", syssync, 0), /* 37 */ SYSENT_CI("kill", kill, 2), /* 38 */ SYSENT_CI("fstatfs", fstatfs32, 4), /* 39 */ SYSENT_CI("setpgrp", setpgrp, 3), /* 40 */ SYSENT_CI("uucopystr", uucopystr, 3), /* 41 */ SYSENT_LOADABLE32(), /* (was dup) */ /* 42 */ SYSENT_LOADABLE32(), /* pipe */ /* 43 */ SYSENT_CI("times", times32, 1), /* 44 */ SYSENT_CI("prof", profil, 4), /* 45 */ SYSENT_CI("faccessat", faccessat, 4), /* 46 */ SYSENT_CI("setgid", setgid, 1), /* 47 */ SYSENT_2CI("getgid", getgid, 0), /* 48 */ SYSENT_CI("mknodat", mknodat, 4), /* 49 */ SYSENT_LOADABLE32(), /* msgsys */ /* 50 */ IF_386_ABI( SYSENT_CI("sysi86", sysi86, 4), SYSENT_LOADABLE32()), /* (was sys3b) */ /* 51 */ SYSENT_LOADABLE32(), /* sysacct */ /* 52 */ SYSENT_LOADABLE32(), /* shmsys */ /* 53 */ SYSENT_LOADABLE32(), /* semsys */ /* 54 */ SYSENT_CI("ioctl", ioctl, 3), /* 55 */ SYSENT_CI("uadmin", uadmin, 3), /* 56 */ SYSENT_CI("fchownat", fchownat, 5), /* 57 */ SYSENT_2CI("utssys", utssys32, 4), /* 58 */ SYSENT_CI("fdsync", fdsync, 2), /* 59 */ SYSENT_CI("exece", exece, 3), /* 60 */ SYSENT_CI("umask", umask, 1), /* 61 */ SYSENT_CI("chroot", chroot, 1), /* 62 */ SYSENT_CI("fcntl", fcntl, 3), /* 63 */ SYSENT_CI("ulimit", ulimit32, 2), /* 64 */ SYSENT_CI("renameat", renameat, 4), /* 65 */ SYSENT_CI("unlinkat", unlinkat, 3), /* 66 */ SYSENT_CI("fstatat", fstatat32, 4), /* 67 */ SYSENT_CI("fstatat64", fstatat64_32, 4), /* 68 */ SYSENT_CI("openat", openat32, 4), /* 69 */ SYSENT_CI("openat64", openat64, 4), /* 70 */ SYSENT_CI("tasksys", tasksys, 5), /* 71 */ SYSENT_LOADABLE32(), /* acctctl */ /* 72 */ SYSENT_LOADABLE32(), /* exacct */ /* 73 */ SYSENT_CI("getpagesizes", getpagesizes32, 3), /* 74 */ SYSENT_CI("rctlsys", rctlsys, 6), /* 75 */ SYSENT_2CI("sidsys", sidsys, 4), /* 76 */ SYSENT_LOADABLE32(), /* (was fsat) */ /* 77 */ SYSENT_CI("lwp_park", syslwp_park, 3), /* 78 */ SYSENT_CI("sendfilev", sendfilev, 5), /* 79 */ SYSENT_CI("rmdir", rmdir, 1), /* 80 */ SYSENT_CI("mkdir", mkdir, 2), /* 81 */ SYSENT_CI("getdents", getdents32, 3), /* 82 */ SYSENT_CI("privsys", privsys32, 6), /* 83 */ SYSENT_CI("ucredsys", ucredsys32, 3), /* 84 */ SYSENT_CI("sysfs", sysfs, 3), /* 85 */ SYSENT_CI("getmsg", getmsg32, 4), /* 86 */ SYSENT_CI("putmsg", putmsg32, 4), /* 87 */ SYSENT_LOADABLE32(), /* (was poll) */ /* 88 */ SYSENT_CI("lstat", lstat32, 2), /* 89 */ SYSENT_CI("symlink", symlink, 2), /* 90 */ SYSENT_CI("readlink", readlink32, 3), /* 91 */ SYSENT_CI("setgroups", setgroups, 2), /* 92 */ SYSENT_CI("getgroups", getgroups, 2), /* 93 */ SYSENT_CI("fchmod", fchmod, 2), /* 94 */ SYSENT_CI("fchown", fchown, 3), /* 95 */ SYSENT_CI("sigprocmask", sigprocmask, 3), /* 96 */ SYSENT_CI("sigsuspend", sigsuspend, 1), /* 97 */ SYSENT_CI("sigaltstack", sigaltstack32, 2), /* 98 */ SYSENT_CI("sigaction", sigaction32, 3), /* 99 */ SYSENT_CI("sigpending", sigpending, 2), /* 100 */ SYSENT_CI("getsetcontext", getsetcontext32, 2), /* 101 */ SYSENT_CI("fchmodat", fchmodat, 4), /* 102 */ SYSENT_CI("mkdirat", mkdirat, 3), /* 103 */ SYSENT_CI("statvfs", statvfs32, 2), /* 104 */ SYSENT_CI("fstatvfs", fstatvfs32, 2), /* 105 */ SYSENT_CI("getloadavg", getloadavg, 2), /* ONC_PLUS EXTRACT START */ /* 106 */ SYSENT_LOADABLE32(), /* nfssys */ /* ONC_PLUS EXTRACT END */ /* 107 */ SYSENT_CI("waitsys", waitsys32, 4), /* 108 */ SYSENT_CI("sigsendset", sigsendsys, 2), /* 109 */ IF_x86( SYSENT_AP("hrtsys", hrtsys, 5), SYSENT_LOADABLE32()), /* 110 */ SYSENT_CI("utimesys", utimesys, 5), /* 111 */ SYSENT_CI("sigresend", sigresend, 3), /* 112 */ SYSENT_CI("priocntlsys", priocntlsys, 5), /* 113 */ SYSENT_CI("pathconf", pathconf, 2), /* 114 */ SYSENT_CI("mincore", mincore, 3), /* 115 */ SYSENT_CI("mmap", smmap32, 6), /* 116 */ SYSENT_CI("mprotect", mprotect, 3), /* 117 */ SYSENT_CI("munmap", munmap, 2), /* 118 */ SYSENT_CI("fpathconf", fpathconf, 2), /* 119 */ SYSENT_2CI("vfork", vfork, 0), /* 120 */ SYSENT_CI("fchdir", fchdir, 1), /* 121 */ SYSENT_CI("readv", readv32, 3), /* 122 */ SYSENT_CI("writev", writev32, 3), /* 123 */ SYSENT_LOADABLE32(), /* was xstat32 */ /* 124 */ SYSENT_LOADABLE32(), /* was lxstat32 */ /* 125 */ SYSENT_LOADABLE32(), /* was fxstat32 */ /* 126 */ SYSENT_LOADABLE32(), /* was xmknod */ /* 127 */ SYSENT_CI("mmapobj", mmapobjsys, 5), /* 128 */ SYSENT_CI("setrlimit", setrlimit32, 2), /* 129 */ SYSENT_CI("getrlimit", getrlimit32, 2), /* 130 */ SYSENT_CI("lchown", lchown, 3), /* 131 */ SYSENT_CI("memcntl", memcntl, 6), /* 132 */ SYSENT_CI("getpmsg", getpmsg32, 5), /* 133 */ SYSENT_CI("putpmsg", putpmsg32, 5), /* 134 */ SYSENT_CI("rename", rename, 2), /* 135 */ SYSENT_CI("uname", uname, 1), /* 136 */ SYSENT_CI("setegid", setegid, 1), /* 137 */ SYSENT_CI("sysconfig", sysconfig, 1), /* 138 */ SYSENT_CI("adjtime", adjtime, 2), /* 139 */ SYSENT_CI("systeminfo", systeminfo, 3), /* 140 */ SYSENT_LOADABLE32(), /* sharefs */ /* 141 */ SYSENT_CI("seteuid", seteuid, 1), /* 142 */ SYSENT_2CI("forksys", forksys, 2), /* 143 */ SYSENT_LOADABLE32(), /* (was fork1) */ /* 144 */ SYSENT_CI("sigtimedwait", sigtimedwait, 3), /* 145 */ SYSENT_CI("lwp_info", lwp_info, 1), /* 146 */ SYSENT_CI("yield", yield, 0), /* 147 */ SYSENT_LOADABLE32(), /* (was lwp_sema_wait) */ /* 148 */ SYSENT_CI("lwp_sema_post", lwp_sema_post, 1), /* 149 */ SYSENT_CI("lwp_sema_trywait", lwp_sema_trywait, 1), /* 150 */ SYSENT_CI("lwp_detach", lwp_detach, 1), /* 151 */ SYSENT_CI("corectl", corectl, 4), /* 152 */ SYSENT_CI("modctl", modctl, 6), /* 153 */ SYSENT_CI("fchroot", fchroot, 1), /* 154 */ SYSENT_LOADABLE32(), /* (was utimes) */ /* 155 */ SYSENT_CI("vhangup", vhangup, 0), /* 156 */ SYSENT_CI("gettimeofday", gettimeofday, 1), /* 157 */ SYSENT_CI("getitimer", getitimer, 2), /* 158 */ SYSENT_CI("setitimer", setitimer, 3), /* 159 */ SYSENT_CI("lwp_create", syslwp_create, 3), /* 160 */ SYSENT_CI("lwp_exit", (int (*)())syslwp_exit, 0), /* 161 */ SYSENT_CI("lwp_suspend", syslwp_suspend, 1), /* 162 */ SYSENT_CI("lwp_continue", syslwp_continue, 1), /* 163 */ SYSENT_CI("lwp_kill", lwp_kill, 2), /* 164 */ SYSENT_CI("lwp_self", lwp_self, 0), /* 165 */ SYSENT_2CI("lwp_sigmask", lwp_sigmask, 5), /* 166 */ IF_x86( SYSENT_CI("lwp_private", syslwp_private, 3), SYSENT_NOSYS()), /* 167 */ SYSENT_CI("lwp_wait", lwp_wait, 2), /* 168 */ SYSENT_CI("lwp_mutex_wakeup", lwp_mutex_wakeup, 2), /* 169 */ SYSENT_LOADABLE32(), /* (was lwp_mutex_lock) */ /* 170 */ SYSENT_CI("lwp_cond_wait", lwp_cond_wait, 4), /* 171 */ SYSENT_CI("lwp_cond_signal", lwp_cond_signal, 1), /* 172 */ SYSENT_CI("lwp_cond_broadcast", lwp_cond_broadcast, 1), /* 173 */ SYSENT_CI("pread", pread32, 4), /* 174 */ SYSENT_CI("pwrite", pwrite32, 4), /* 175 */ SYSENT_C("llseek", llseek32, 4), /* 176 */ SYSENT_LOADABLE32(), /* inst_sync */ /* 177 */ SYSENT_CI("brandsys", brandsys, 6), /* 178 */ SYSENT_LOADABLE32(), /* kaio */ /* 179 */ SYSENT_LOADABLE32(), /* cpc */ /* 180 */ SYSENT_CI("lgrpsys", lgrpsys, 3), /* 181 */ SYSENT_CI("rusagesys", rusagesys, 5), /* 182 */ SYSENT_LOADABLE32(), /* portfs */ /* 183 */ SYSENT_CI("pollsys", pollsys, 4), /* 184 */ SYSENT_CI("labelsys", labelsys, 5), /* 185 */ SYSENT_CI("acl", acl, 4), /* 186 */ SYSENT_AP("auditsys", auditsys, 6), /* 187 */ SYSENT_CI("processor_bind", processor_bind, 4), /* 188 */ SYSENT_CI("processor_info", processor_info, 2), /* 189 */ SYSENT_CI("p_online", p_online, 2), /* 190 */ SYSENT_CI("sigqueue", sigqueue32, 5), /* 191 */ SYSENT_CI("clock_gettime", clock_gettime, 2), /* 192 */ SYSENT_CI("clock_settime", clock_settime, 2), /* 193 */ SYSENT_CI("clock_getres", clock_getres, 2), /* 194 */ SYSENT_CI("timer_create", timer_create, 3), /* 195 */ SYSENT_CI("timer_delete", timer_delete, 1), /* 196 */ SYSENT_CI("timer_settime", timer_settime, 4), /* 197 */ SYSENT_CI("timer_gettime", timer_gettime, 2), /* 198 */ SYSENT_CI("timer_getoverrun", timer_getoverrun, 1), /* 199 */ SYSENT_CI("nanosleep", nanosleep, 2), /* 200 */ SYSENT_CI("facl", facl, 4), /* 201 */ SYSENT_LOADABLE32(), /* door */ /* 202 */ SYSENT_CI("setreuid", setreuid, 2), /* 203 */ SYSENT_CI("setregid", setregid, 2), /* 204 */ SYSENT_CI("install_utrap", install_utrap, 3), /* 205 */ SYSENT_CI("signotify", signotify, 3), /* 206 */ SYSENT_CI("schedctl", schedctl, 0), /* 207 */ SYSENT_LOADABLE32(), /* pset */ /* 208 */ SYSENT_LOADABLE32(), /* 209 */ SYSENT_CI("resolvepath", resolvepath, 3), /* 210 */ SYSENT_CI("lwp_mutex_timedlock", lwp_mutex_timedlock, 3), /* 211 */ SYSENT_CI("lwp_sema_timedwait", lwp_sema_timedwait, 3), /* 212 */ SYSENT_CI("lwp_rwlock_sys", lwp_rwlock_sys, 3), /* * Syscalls 213-225: 32-bit system call support for large files. */ /* 213 */ SYSENT_CI("getdents64", getdents64, 3), /* 214 */ SYSENT_AP("smmaplf32", smmaplf32, 7), /* 215 */ SYSENT_CI("stat64", stat64_32, 2), /* 216 */ SYSENT_CI("lstat64", lstat64_32, 2), /* 217 */ SYSENT_CI("fstat64", fstat64_32, 2), /* 218 */ SYSENT_CI("statvfs64", statvfs64_32, 2), /* 219 */ SYSENT_CI("fstatvfs64", fstatvfs64_32, 2), /* 220 */ SYSENT_CI("setrlimit64", setrlimit64, 2), /* 221 */ SYSENT_CI("getrlimit64", getrlimit64, 2), /* 222 */ SYSENT_CI("pread64", pread64, 5), /* 223 */ SYSENT_CI("pwrite64", pwrite64, 5), /* 224 */ SYSENT_LOADABLE32(), /* (was creat64) */ /* 225 */ SYSENT_CI("open64", open64, 3), /* 226 */ SYSENT_LOADABLE32(), /* rpcsys */ /* 227 */ SYSENT_CI("zone", zone, 6), /* 228 */ SYSENT_LOADABLE32(), /* autofssys */ /* 229 */ SYSENT_CI("getcwd", getcwd, 2), /* 230 */ SYSENT_CI("so_socket", so_socket, 5), /* 231 */ SYSENT_CI("so_socketpair", so_socketpair, 1), /* 232 */ SYSENT_CI("bind", bind, 4), /* 233 */ SYSENT_CI("listen", listen, 3), /* 234 */ SYSENT_CI("accept", accept, 4), /* 235 */ SYSENT_CI("connect", connect, 4), /* 236 */ SYSENT_CI("shutdown", shutdown, 3), /* 237 */ SYSENT_CI("recv", recv32, 4), /* 238 */ SYSENT_CI("recvfrom", recvfrom32, 6), /* 239 */ SYSENT_CI("recvmsg", recvmsg, 3), /* 240 */ SYSENT_CI("send", send32, 4), /* 241 */ SYSENT_CI("sendmsg", sendmsg, 3), /* 242 */ SYSENT_CI("sendto", sendto32, 6), /* 243 */ SYSENT_CI("getpeername", getpeername, 4), /* 244 */ SYSENT_CI("getsockname", getsockname, 4), /* 245 */ SYSENT_CI("getsockopt", getsockopt, 6), /* 246 */ SYSENT_CI("setsockopt", setsockopt, 6), /* 247 */ SYSENT_CI("sockconfig", sockconfig, 5), /* 248 */ SYSENT_CI("ntp_gettime", ntp_gettime, 1), /* 249 */ SYSENT_CI("ntp_adjtime", ntp_adjtime, 1), /* 250 */ SYSENT_CI("lwp_mutex_unlock", lwp_mutex_unlock, 1), /* 251 */ SYSENT_CI("lwp_mutex_trylock", lwp_mutex_trylock, 2), /* 252 */ SYSENT_CI("lwp_mutex_register", lwp_mutex_register, 2), /* 253 */ SYSENT_CI("cladm", cladm, 3), /* 254 */ SYSENT_CI("uucopy", uucopy, 3), /* 255 */ SYSENT_CI("umount2", umount2, 2) /* ONC_PLUS EXTRACT START */ }; /* ONC_PLUS EXTRACT END */ #endif /* _SYSCALL32_IMPL */ /* * Space allocated and initialized in init_syscallnames(). */ char **syscallnames; systrace_sysent_t *systrace_sysent; void (*systrace_probe)(dtrace_id_t, uintptr_t, uintptr_t, uintptr_t, uintptr_t, uintptr_t, uintptr_t); /*ARGSUSED*/ void systrace_stub(dtrace_id_t id, uintptr_t arg0, uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5) {} /*ARGSUSED*/ int64_t dtrace_systrace_syscall(uintptr_t arg0, uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5) { systrace_sysent_t *sy = &systrace_sysent[curthread->t_sysnum]; dtrace_id_t id; int64_t rval; proc_t *p; if ((id = sy->stsy_entry) != DTRACE_IDNONE) (*systrace_probe)(id, arg0, arg1, arg2, arg3, arg4, arg5); /* * We want to explicitly allow DTrace consumers to stop a process * before it actually executes the meat of the syscall. */ p = ttoproc(curthread); mutex_enter(&p->p_lock); if (curthread->t_dtrace_stop && !curthread->t_lwp->lwp_nostop) { curthread->t_dtrace_stop = 0; stop(PR_REQUESTED, 0); } mutex_exit(&p->p_lock); rval = (*sy->stsy_underlying)(arg0, arg1, arg2, arg3, arg4, arg5); if (ttolwp(curthread)->lwp_errno != 0) rval = -1; if ((id = sy->stsy_return) != DTRACE_IDNONE) (*systrace_probe)(id, (uintptr_t)rval, (uintptr_t)rval, (uintptr_t)((int64_t)rval >> 32), 0, 0, 0); return (rval); } #ifdef _SYSCALL32_IMPL systrace_sysent_t *systrace_sysent32; /*ARGSUSED*/ int64_t dtrace_systrace_syscall32(uintptr_t arg0, uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5) { systrace_sysent_t *sy = &systrace_sysent32[curthread->t_sysnum]; dtrace_id_t id; int64_t rval; proc_t *p; if ((id = sy->stsy_entry) != DTRACE_IDNONE) (*systrace_probe)(id, arg0, arg1, arg2, arg3, arg4, arg5); /* * We want to explicitly allow DTrace consumers to stop a process * before it actually executes the meat of the syscall. */ p = ttoproc(curthread); mutex_enter(&p->p_lock); if (curthread->t_dtrace_stop && !curthread->t_lwp->lwp_nostop) { curthread->t_dtrace_stop = 0; stop(PR_REQUESTED, 0); } mutex_exit(&p->p_lock); rval = (*sy->stsy_underlying)(arg0, arg1, arg2, arg3, arg4, arg5); if (ttolwp(curthread)->lwp_errno != 0) rval = -1; if ((id = sy->stsy_return) != DTRACE_IDNONE) (*systrace_probe)(id, (uintptr_t)rval, (uintptr_t)rval, (uintptr_t)((uint64_t)rval >> 32), 0, 0, 0); return (rval); } #endif void dtrace_systrace_rtt(void) { systrace_sysent_t *sy; dtrace_id_t id; if (get_udatamodel() == DATAMODEL_NATIVE) { if (systrace_sysent == NULL) return; sy = &systrace_sysent[curthread->t_sysnum]; #ifdef _SYSCALL32_IMPL } else { if (systrace_sysent32 == NULL) return; sy = &systrace_sysent32[curthread->t_sysnum]; #endif } if ((id = sy->stsy_return) != DTRACE_IDNONE) (*systrace_probe)(id, 0, 0, 0, 0, 0, 0); }