summaryrefslogtreecommitdiff
path: root/lib/csu
AgeCommit message (Collapse)Author
2017-02-26Our certbegin/certend is always PIC, so remove the non-PIC MD_SECT_CALL_FUNC()Mark Kettenis
implementations. ok guenther@
2017-02-26Use a long branch (using movw/movt) to implement MD_SECT_CALL_FUNC.Mark Kettenis
Necessary (but perhaps not suffcient) to build large binaries on arm. ok guenther@
2017-02-19Move static variables from .data to .bss by not initializing them to zeroPhilip Guenther
ok kettenis@
2017-01-29remove unused variablesCharles Longeau
ok krw@ guenther@
2017-01-24Fix passing &_DYNAMIC to _dl_boot_bind; makes -static -pie work.Mark Kettenis
2017-01-21Make crtbegin.c and crtbeginS.c consistent on stylistic pointsPhilip Guenther
ok kettenis@
2017-01-21Pull in declarations for main() and __init() to make clang happy.Philip Guenther
Mark __init() as hidden ok kettenis@ deraadt@
2017-01-21Fix misspelling in commentPhilip Guenther
2017-01-21amd64 can build rcrt0.o with the stack-protectorPhilip Guenther
ok kettenis@ deraadt@
2017-01-21Declare the symbols that label the .ctors, .dtors, .eh_frame, and .jcrPhilip Guenther
sections as extern hidden arrays of indefinite size, so that the compiler (well, clang) doesn't believe it knows the exact contents and thus optimize things into infinite loops. Actually set the symbols to be in the sections and insert the leading and trailing values via __asm(). Problem pointed out by patrick@ testing and ok kettenis@
2017-01-19MD_START is now always ___start, so expand and eliminate itPhilip Guenther
ok phessler@ deraadt@
2017-01-11Add support for AArch64.Patrick Wildt
2017-01-02Remove the (now unused) code to determine the page size. Also get rid ofMark Kettenis
the extern declaration of __got_{start,end}. ok guenther@
2016-12-24Replace return by break; requested by guenther@Mark Kettenis
2016-12-24Remove code that reprotects the GOT based on the __got_start and __got_endMark Kettenis
symbols. Either the PT_LOAD RWX->RX case ot PT_GNU_RELRO should cover this already for anything we care about. And lld, the llvm linker, doesn't emit the __got_start and __got_end symbols and there are good reasons to leave it that way. ok guenther@
2016-12-22Don't make __CTOR_LIST__ and __DTOR_LIST__ const. This makes the .ctors andMark Kettenis
.dtors sections writable just like they are in crtend.o and code generated by compilers. This is necessary to make sure that linkers that respect the ELF spec a bit better (such as lld) correctly concatenate the secttions. ok deraadt@
2016-12-19A couple more unused variables.Kenneth R Westerback
tweak & ok kettenis@
2016-11-08Use sed -i to post-process .depend. This avoids permission issues causedMartin Natano
by the file being created in /tmp. tweaks and ok tb
2016-10-15unify tmp depend generation.Marc Espie
- simpler uniform pattern - put the tmpfile in OBJDIR, so that mv doesn't whine about groups when using a separate builduser. okay millert@
2016-10-03Simplify code that sets up a stack frame for running .init code to be moreMark Kettenis
AEABI-like. ok tom@, jsg@
2016-09-26Now that vax has been removed, nothing defined MD_NO_CLEANUP anymore.Mark Kettenis
ok guenther@
2016-09-08Implement self-relocation for -static -pie on arm. Also removes someMark Kettenis
unecessary code from the normal startup code and do some general cleanup to make the code more readable. ok guenther@, jsg@
2016-09-03Enable PIE on arm now that sjlj exceptions are no longer used afterJonathan Gray
the switch to eabi. This does not include static PIE which will be handled later. A specific sequence of steps is required to cross over this change, using a snapshot is the easiest way to do so. ok kettenis@
2016-09-01retire sparcTed Unangst
2016-08-08Look for a PT_GNU_RELRO section and, if present, mprotect that rangePhilip Guenther
instead of the [__got_start, __got_end) range. Also, instead of mprotecting the [__plt_start, __plt_end) range, just scan for sections which are both writable and executable and mprotect them to read-only. (This part was stolen from kettenis@) ok kettenis@
2016-08-07Teach mips64 to pass &_DYNAMIC to _dl_boot_bind().Philip Guenther
mips64be testing by deraadt@
2016-08-07alpha already calculates &_DYNAMIC for the _reloc_alpha_got() call, soPhilip Guenther
save that and pass it to _dl_boot_bind() too
2016-08-07Teach i386 to pass &_DYNAMIC to _dl_boot_bind()Philip Guenther
2016-08-07Psych: amd64 has been passing &_DYNAMIC to _dl_boot_bind() for 19 monthsPhilip Guenther
2016-08-07Flip the #ifdef logic: amd64, i386, and mips64 were the only static PIEPhilip Guenther
archs using the #else case
2016-07-05Missed a reference to dl_prebind.hPhilip Guenther
problem noted by Andrew Ngo (andrew.ngo (at) gmail.com)
2016-05-11remove hppa64 port, which we never got going beyond broken single users.Theo de Raadt
hppa reverse-stack gives us a valuable test case, but most developers don't have a 2nd one to proceed further with this. ok kettenis
2016-05-07Declare moncontrol(3) APIs in <sys/gmon.h>Philip Guenther
Export _gmonparam again. Make gcrt0.o use an reserved name for _monstartup() ok millert@
2016-03-24Unbreak arm and m88k: COPY relocations for weak symbols that are overloadedPhilip Guenther
with strong symbols in ld.so don't do what we need, so put definitions back in crt0 and make ld.so update __progname like it does environ. report and testing patrick@ jsg@
2016-03-20Rearrange C runtime bits: now that ld.so exports environ and __progname,Philip Guenther
move their definitions and initialization in static links to libc.a Make crt0 always invoke a new func _csu_finish() in libc to process the auxv and to either register the ld.so cleanup function (in dynamic links) or initialize environ and __progname and do MC_DISABLE_KBIND (in static links). In libc, get pagesize from auxv; cache that between getpagesize() and sysconf(_SC_PAGESIZE) ok mpi@ "good time" deraadt@
2016-03-13crt0.c is already setting environ, so don't set it in MD_START_SETUPPhilip Guenther
ok kettenis@ mpi@
2016-03-12Call mprotect() via its hidden _lib_mprotect alias to avoid accidentalPhilip Guenther
overriding ok deraadt@ kettenis@
2016-03-09We are done providing support for the vax.Theo de Raadt
lots of agreement.
2015-12-06Simplify the relocation code for the ld.so bootstrap and static pie: trackPhilip Guenther
just the dynamic tags are needed instead of reusing the generic elf_object_t structure. testing and feedback from miod@ ok kettenis@
2015-11-10libc.so can't be unloaded, so move the hidden atexit() and pthread_atfork()Philip Guenther
stubs for the executable from crtbegin.o into libc, which lets them be excluded from static links that don't use them. For this, drop the normal crt{begin,end}S.o from libc.so: the .init and .fini sections for libc aren't called at the right times anyway, so it's good that they're unused. libc.so just needs __guard_local and the .note.openbsd.ident section, so add them to stack_protector.c for now (this will be improved) "good time" deraadt@
2015-09-19We don't need to calculate the load offset. This also means we don't needMark Kettenis
to calculate the GOT address anymore. ok guenther@ (who spotted the latter bit)
2015-09-19Make sure we set PROT_EXEC on the GOT for BSS-PLT binaries on powerpc.Mark Kettenis
ok guenther@
2015-09-09Fetch the _GLOBAL)OFFSET_TABLE_ and _DYNAMIC pointers in a way that'sMark Kettenis
compatible with the Secure-PLT ABI.
2015-09-09Now that ld(1) will generate a read-only GOT for truly static binaries, weMark Kettenis
no longer have to use mprotect(2) to take away PROT_WRITE. This fixes ld -Z and paves the way for the new Secure-PLT ABI. ok miod@
2015-09-01In static binaries, invoke kbind() once to disable it.Philip Guenther
With much assistance from miod@ ok deraadt@@
2015-08-17Do not include os-note-elf.h here, otherwise we end up with duplicate OS notesMark Kettenis
in our binaries. ok miod@
2015-07-03static pie support for sparc.Miod Vallat
2015-04-07Make pthread_atfork() track the DSO that called it like atexit() does,Philip Guenther
unregistering callbacks if the DSO is unloaded. Move the callback handling from libpthread to libc, though libpthread still overrides the inner call to handle locking and thread-library reinitialization. Major version bump for both libc and libpthread. verification that this fixes various ports ajacoutot@ asm assistance miod@; ok millert@ deraadt@
2015-04-04gcc 2.x is deadPhilip Guenther
ok millert@
2015-02-07argc is passed as a long by the kernel, define it as such to match whatMiod Vallat
other ports do.