Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-11-27 | When copying command line arguments to out new argument vector, | Todd C. Miller | |
don't go past the end of the buffer. Not a security issue since root controls the fingerd arguments. Noticed by Brian Poole. | |||
2001-11-27 | Use strlcat() when adding to 'make_arg' via the -m flag to avoid | Todd C. Miller | |
overflowing. Closes PR 2201. | |||
2001-11-22 | since 3.0 ftpd allow users w/o password. Spotted by form@. | Mike Pechkin | |
millert@ ok | |||
2001-11-20 | bye bye, libdl | Peter Valchev | |
2001-11-19 | remove the signal handler races and longjmps, and then do a bit of KNF | Theo de Raadt | |
2001-11-19 | clean & KNF | Theo de Raadt | |
2001-11-18 | create own svc_run(), which can do updating outside of a signal handler | Theo de Raadt | |
2001-11-18 | blow away unused XIDLE signal race crap | Theo de Raadt | |
2001-11-18 | Ensure SA_RESTART is not set on SIGALRM. With it set, the SIGALRM is not | Theo de Raadt | |
seen after a successful recv(). This affects some other programs too.. but turning off SA_RESTART requires SIGNIFICANT analysis -- not for the faint of heart. | |||
2001-11-17 | volatile sig_atomic_t | Theo de Raadt | |
2001-11-13 | o) fix bogus .Xr usage; | Mike Pechkin | |
o) start new sentence on a new line; o) don't use .Xr instead of .Pa tag; o) minimal -mdoc design fixes; millert@ ok; | |||
2001-11-07 | use -lrpcsvc | Theo de Raadt | |
2001-11-06 | new vm includes. | Artur Grabowski | |
2001-11-06 | Since the header of the file map is Start End, | Dale Rahn | |
print the end address, not the size. | |||
2001-11-05 | more signal marks, and some syslog_r in handlers | Theo de Raadt | |
2001-11-02 | _exit() in signal handler | Theo de Raadt | |
2001-10-30 | rstat_timeval is not the same as timeval | Theo de Raadt | |
2001-10-24 | getopt(3) returns -1 when out of args, not EOF. | Mike Pechkin | |
millert@ ok | |||
2001-10-10 | fix multi-line contunuations - ok deraadt@ | Bob Beck | |
2001-10-10 | ftp-chroot variable is documented in this man page, not login.conf(5) | Todd C. Miller | |
2001-10-02 | as is aleady closed and freed by auth_userresponse, ok millert@ | Peter Stromberg | |
2001-10-02 | o Remove #if{,n}def BSD stuff | Todd C. Miller | |
o Replace nlist and kvm_* with sysctl() and getifaddrs(3) Fixes an issue on alpha where we would run off the end of the interface list. | |||
2001-09-29 | Change method of determining object type, does better bounds checking, | Dale Rahn | |
and fixes a bug on sparc64 "ELF" for type. ok art@. | |||
2001-09-27 | Local symbols don't need to have a name. Don't barf on them. | Artur Grabowski | |
They are often generated by gcc c++ exceptions. | |||
2001-09-26 | 'loff' shouldn't be const (at least not on sparc64) | Jason Wright | |
2001-09-26 | Build ld.so on sparc64. | Artur Grabowski | |
2001-09-26 | Some juggling to simplify the code and some missing code. | Artur Grabowski | |
2001-09-26 | Lazy binding. Parts from NetBSD. | Artur Grabowski | |
2001-09-26 | Implement COPY relocations. | Artur Grabowski | |
2001-09-26 | Code for PLT relocations. From NetBSD. | Artur Grabowski | |
2001-09-26 | Adapt to Elf_Word change. | Artur Grabowski | |
XXX - Dyn.u should just go away. | |||
2001-09-25 | Slight cleanup on ld.so tests, link with rpath built in, so that running | Dale Rahn | |
test does not require LD_LIBRARY_PATH. remove an unnecessary header file from dltest.c | |||
2001-09-25 | Duh! if we go through the hassle of looking up a symbol it might | Artur Grabowski | |
be a good idea to actually use the value of the symbol. | |||
2001-09-25 | Borrow a big chunk of code from the NetBSD ld.elf_so to do all the | Artur Grabowski | |
basic relocations with a table. | |||
2001-09-25 | Cleaner hash bucket init and some KNF. | Artur Grabowski | |
2001-09-25 | Zero out dl_data before populating it. | Artur Grabowski | |
Cleaner populating of dl_data. | |||
2001-09-25 | Do mmap the right way. | Artur Grabowski | |
2001-09-25 | Another attempt at getting this right. This time, play safe. | Artur Grabowski | |
2001-09-24 | Some cleanup. | Artur Grabowski | |
2001-09-24 | Some voodoo for bootstrapping sparc64. | Artur Grabowski | |
2001-09-24 | Get the bootstrapping right. | Artur Grabowski | |
2001-09-24 | Proper RELOC_RELA for bootstrap. | Artur Grabowski | |
2001-09-24 | sparc64 needs slightly different flags. | Artur Grabowski | |
2001-09-24 | Adapt to _dl_boot_bind change. | Artur Grabowski | |
2001-09-24 | API change between asm code and _dl_boot_bind(). Simply and | Dale Rahn | |
reduce number of parameters. Alpha changes coming shortly. | |||
2001-09-24 | dl_data is at the start of the stack, not after env. load loff. | Artur Grabowski | |
Now _dl_boot starts correctly. | |||
2001-09-23 | pass appropriate compilation flags for sparc64. needs to be compiled PIC. | Dale Rahn | |
both C and asm files. | |||
2001-09-23 | add munmap syscall | Dale Rahn | |
change _rtld references to _dl to match C code. change relocation types in archdep.h to be sparc64 relocs. rtld_machine.c copied from alpha, with some modes to compile for sparc64 This is in-tree development. | |||
2001-09-22 | Upon futher contemplation, the notion of unmaphints is just wrong. | Dale Rahn | |
First the maphints code is not cleaning up after itself, by leaving a file descriptor open and trying to clean up after the dynamic linker is done loading by removing data needed during dlopen() is nonsense. the _dl_unmaphints() function and it's references have been removed. _dl_maphints() now cleans up it's file descriptor before returning. static data used later during dlopen() is left intact. | |||
2001-09-22 | Do not check for ':' twice, otherwise the rpath loses the first character | Dale Rahn | |
after the : in the list of paths. |