summaryrefslogtreecommitdiff
path: root/sys/i386/linux/linux_genassym.c
Commit message (Collapse)AuthorAgeFilesLines
* Implement vdso - virtual dynamic shared object. Through vdso LinuxDmitry Chagin2015-05-241-0/+3
| | | | | | | | | | | | exposes functions from kernel with proper DWARF CFI information so that it becomes easier to unwind through them. Using vdso is a mandatory for a thread cancelation && cleanup on a modern glibc. Differential Revision: https://reviews.freebsd.org/D1060 Notes: svn path=/head/; revision=283407
* Segment registers are stored in the uc_mcontext member of the structKonstantin Belousov2008-09-071-0/+1
| | | | | | | | | | | | l_ucontext. To restore the registers content, trampoline needs to dereference uc_mcontext instead of taking some undefined values from l_ucontext. Submitted by: Dmitry Chagin <dchagin@> MFC after: 1 week Notes: svn path=/head/; revision=182849
* Use __FBSDID().David E. O'Brien2003-06-021-1/+2
| | | | Notes: svn path=/head/; revision=115705
* Include <sys/systm.h> for the definition of offsetof() instead of dependingBruce Evans2002-09-051-0/+1
| | | | | | | | on the definition being misplaced in <sys/types.h>. The definition probably belongs in <sys/stddef.h>. Notes: svn path=/head/; revision=102964
* Round of cleanups and enhancements. These include (in random order):Marcel Moolenaar2001-09-081-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o Introduce private types for use in linux syscalls for two reasons: 1. establish type independence for ease in porting and, 2. provide a visual queue as to which syscalls have proper prototypes to further cleanup the i386/alpha split. Linuxulator types are prefixed by 'l_'. void and char have not been "virtualized". o Provide dummy functions for all syscalls and remove dummy functions or implementations of truely obsolete syscalls. o Sanitize the shm*, sem* and msg* syscalls. o Make a first attempt to implement the linux_sysctl syscall. At this time it only returns one MIB (KERN_VERSION), but most importantly, it tells us when we need to add additional sysctls :-) o Bump the kenel version up to 2.4.2 (this is not the same as the KERN_VERSION MIB, BTW). o Implement new syscalls, of which most are specific to i386. Our syscall table is now up to date with Linux 2.4.2. Some highlights: - Implement the 32-bit uid_t and gid_t bases syscalls. - Implement a couple of 64-bit file size/offset bases syscalls. o Fix or improve numerous syscalls and prototypes. o Reduce style(9) violations while I'm here. Especially indentation inconsistencies within the same file are addressed. Re-indenting did not obfuscate actual changes to the extend that it could not be combined. NOTE: I spend some time testing these changes and found that if there were regressions, they were not caused by these changes AFAICT. It was observed that installing a RH 7.1 runtime environment did make matters worse. Hangs and/or reboots have been observed with and without these changes, so when it failed to make life better in cases it doesn't look like it made it worse. Notes: svn path=/head/; revision=83221
* Remove unneeded <stddef.h> #includes.Poul-Henning Kamp2000-10-291-2/+0
| | | | Notes: svn path=/head/; revision=67899
* A start at an implemention of linux_rt_sendsig & linux_rt_sigreturnAndrew Gallatin2000-10-171-0/+4
| | | | | | | | | | | | | | | | | and associated user-level signal trampoline glue. Without this patch, an SA_SIGINFO style handler can be installed by a linux app, but if the handler accesses its sip argument, it will get a garbage pointer and likely segfault. We currently supply a valid pointer, but its contents are mainly garbage. Filling this in properly is future work. This is the second of 3 commits that will get IBM's JDK 1.3 working with FreeBSD ... Notes: svn path=/head/; revision=67234
* Include <stddef.h> here so that <sys/assym.h> can be unpolluted.Bruce Evans2000-01-081-1/+3
| | | | | | | | Include <sys/param.h> before <sys/assym.h> in case any of the magic in the former is ever needed in the latter. Notes: svn path=/head/; revision=55626
* Make offsetof equivalent with <stddef.h>. This paves the way forMarcel Moolenaar2000-01-031-4/+4
| | | | | | | | | further enhancements/reorganisations. Discussed with: bde Notes: svn path=/head/; revision=55343
* Use genassym(1) and <sys/assym.h> to generate assembler symbols.Marcel Moolenaar1999-12-231-18/+5
| | | | Notes: svn path=/head/; revision=55062
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Enable vmspace sharing on SMP. Major changes are,Luoqi Chen1999-04-281-2/+1
| | | | | | | | | | | | | | | | | | | | - %fs register is added to trapframe and saved/restored upon kernel entry/exit. - Per-cpu pages are no longer mapped at the same virtual address. - Each cpu now has a separate gdt selector table. A new segment selector is added to point to per-cpu pages, per-cpu global variables are now accessed through this new selector (%fs). The selectors in gdt table are rearranged for cache line optimization. - fask_vfork is now on as default for both UP and SMP. - Some aio code cleanup. Reviewed by: Alan Cox <alc@cs.rice.edu> John Dyson <dyson@iquest.net> Julian Elischer <julian@whistel.com> Bruce Evans <bde@zeta.org.au> David Greenman <dg@root.com> Notes: svn path=/head/; revision=46129
* Fixed printf format errors.Bruce Evans1998-07-291-9/+11
| | | | | | | | Use offsetof() instead of null pointer hacks. Use a home made offsetof() because including <stddef.h> is not permitted in LKMs. Notes: svn path=/head/; revision=37949
* Declare printf() instead of including <stdio.h>, so that this doesn'tBruce Evans1998-02-011-3/+2
| | | | | | | depend on anything outside of the "sys" tree. Notes: svn path=/head/; revision=32991
* Minor formatting and style fixes.Bruce Evans1997-08-251-2/+5
| | | | Notes: svn path=/head/; revision=28762
* Removed unused #includes.Bruce Evans1997-07-201-3/+1
| | | | Notes: svn path=/head/; revision=27557
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notPeter Wemm1997-02-221-1/+1
| | | | | | | ready for it yet. Notes: svn path=/head/; revision=22975
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Minor touch-up... make two functions static, and add missing $Id$Peter Wemm1996-03-021-0/+1
| | | | Notes: svn path=/head/; revision=14342
* Mega-commit for Linux emulator update.. This has been stress tested underPeter Wemm1996-03-021-0/+22
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now working, at least on my machine. (whew! :-) I'm uncomfortable with the size of this commit, but it's too inter-dependant to easily seperate out. The main changes: COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386 machine dependent section into the linux emulator itself. The int 0x80 syscall code was almost identical to the lcall 7,0 code and a minor tweak allows them to both be used with the same C code. All kernels can now just modload the lkm and it'll DTRT without having to rebuild the kernel first. Like IBCS2, you can statically compile it in with "options LINUX". A pile of new syscalls implemented, including getdents(), llseek(), readv(), writev(), msync(), personality(). The Linux-ELF libraries want to use some of these. linux_select() now obeys Linux semantics, ie: returns the time remaining of the timeout value rather than leaving it the original value. Quite a few bugs removed, including incorrect arguments being used in syscalls.. eg: mixups between passing the sigset as an int, vs passing it as a pointer and doing a copyin(), missing return values, unhandled cases, SIOC* ioctls, etc. The build for the code has changed. i386/conf/files now knows how to build linux_genassym and generate linux_assym.h on the fly. Supporting changes elsewhere in the kernel: The user-mode signal trampoline has moved from the U area to immediately below the top of the stack (below PS_STRINGS). This allows the different binary emulations to have their own signal trampoline code (which gets rid of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so that the emulator can provide the exact "struct sigcontext *" argument to the program's signal handlers. The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which have the same values as the re-used SA_DISABLE and SA_ONSTACK which are intended for sigaction only. This enables the support of a SA_RESETHAND flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal semantics where the signal handler is reset when it's triggered. makesyscalls.sh no longer appends the struct sysentvec on the end of the generated init_sysent.c code. It's a lot saner to have it in a seperate file rather than trying to update the structure inside the awk script. :-) At exec time, the dozen bytes or so of signal trampoline code are copied to the top of the user's stack, rather than obtaining the trampoline code the old way by getting a clone of the parent's user area. This allows Linux and native binaries to freely exec each other without getting trampolines mixed up. Notes: svn path=/head/; revision=14331