summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-05-04Even better control register name display logic.Miod Vallat
2006-05-04Document the 88110 extended (80-bit) floating point format.Miod Vallat
2006-05-04eneble -> enableMiod Vallat
2006-05-04Now that .S files have proper dependencies, do not hardcode dependenciesMiod Vallat
on assym.h in Makefile, especially since some files have been renamed...
2006-05-04When copying a prog reference from a lib do not put it in the common tableDale Rahn
but put a 'invalid' marker there instead.
2006-05-04Add missing copyright on header file, OpenBSD -> .Ox in manpages, thanks Dries.Dale Rahn
2006-05-04free resources on close; found by Alexandre Ratchov <alex@caoua.org>Michael Shalayeff
2006-05-04Avoid a couple of potential crashes if the input data isn't right. ok beck@Dale Rahn
2006-05-04tighter DH exponent checks here too; feedback and ok markus@Damien Miller
2006-05-04check for degenerate Diffie-Hellman public exponents;Damien Miller
ok markus@ hshoexer@ deraadt@
2006-05-04fix interrupt out transfersJolan Luff
from netbsd, ok dlg
2006-05-04backport checks for degenerate Diffie-Hellman public exponents fromDamien Miller
OpenSSL-0.9.8a, where they were added without a corresponding patch to 0.9.7 or an advisory! ok theo@ markus@
2006-05-04- document -iJason McIntyre
- remove some whitespace whilst here fixes pr #5087 (james strandboge) ok jakob
2006-05-04more clues for people who update their system.Marc Espie
2006-05-04finish work wrt TMPDIR; use xasprintf() to simplify code while in there;Xavier Santolaria
"looks fine" ray@.
2006-05-04Use queue(3) macros instead of custom queue.Ray Lai
OK beck@
2006-05-04Fix wordo, pointed out by jmc@Dale Rahn
2006-05-04Dont build/install prebind tools just yet.Dale Rahn
2006-05-03correct one more commentKjell Wooding
2006-05-03Using mmap for these is going to be trickier than I thought, go aheadDale Rahn
and do the allocation failure checks for now.
2006-05-03Do some KNF, clean up some unused junk that has lying around for 40-oddKjell Wooding
cvs revisions, and fix a few comments to match reality
2006-05-03several fixes dealing with determining if a program or library is beingDale Rahn
processed. Also handles symlinks/hardlinks between binaries better.
2006-05-03Mention x/I behaviour on m88k.Miod Vallat
2006-05-03len = strlen(foo); if foo[len - 1]... will do bad things if len == 0.Kjell Wooding
Avoid, and rearrange a test so it can't (hypothetically) overflow.
2006-05-03goodbye noisy debug.Dale Rahn
2006-05-03checks that libraries are libaries and programs are programs. (needs cleanup)Dale Rahn
2006-05-03When loading 'binaries' ignore libraries.Dale Rahn
2006-05-03Add some regress tests for lint1 crashes which are not solved yetChad Loder
2006-05-03more test casesOtto Moerbeek
2006-05-03be smarter about warning for null effects; kills a lot of spuriousOtto Moerbeek
warnings. ok cloder@
2006-05-03Overhaul of the disassembler code, with random fixes, better conditionnalMiod Vallat
branches decoding, correct control register descriptions, and (the reason for these changes in the first place) 88110 instruction support. ddb will now disassemble by default for the processor it is running for, and using the alternate format (x/I) disassembles for the other.
2006-05-03Fix a (documented) logic botch in inst_load().Miod Vallat
2006-05-03prebind - how to prelink a binary without throwing security out the windowDale Rahn
Prelink fixes the address of libraries making 'return to libc' attacks trival, prebind uses a different method to achieve most of the same gains, however without adding any security conerns. Still under development, now in-tree.
2006-05-03Extra paranoid, do not allow the dynamic linker to have unresolved referencesDale Rahn
as this causes much frustration as it fails to run after being installed and is a paint to recover.
2006-05-03Keep the state of the debugger constistant, let it know a the dynamicDale Rahn
linker is adding or removing a library before it does the act. Discussed with kurt@ some time ago.
2006-05-03Rewrite the ld.so syscall stubs as macros. no binary change.Dale Rahn
2006-05-03Use xasprintf and xfree.Ray Lai
``But i thought it already went in...'' xsa@
2006-05-03respect TMPDIR; OK ray@.Xavier Santolaria
2006-05-03be more clear about policy inheritanceNikolay Sturm
help and ok jmc, provos
2006-05-03SYSTR_MSG_CHILD is also sent when a child exits, from pr 5088Nikolay Sturm
ok jmc, provos
2006-05-03Provide a function pointer that allows for the wdc resetJonathan Gray
method to be changed as required. This will be required for dealing with several chips in pciide.
2006-05-03regenBrad Smith
2006-05-03add the Neterion Xframe-II 10GbE product id.Brad Smith
2006-05-02Replace db_{disable,enable}_interrupts with expanded version of themselves,Miod Vallat
having macros for this is not worth doing.
2006-05-02Wave goodbye to bugtty on mvme88k as well.Miod Vallat
2006-05-02correct command-line prompts; from daniel wadeJason McIntyre
2006-05-02The r128 driver also need the 0xb0000-0xc0000 address range. found by Jolan@.Matthieu Herrb
2006-05-02some type cleanupNikolay Sturm
with feedback from kettenis
2006-05-02Make buffers store their own working directory. This makes things likeKjell Wooding
grep, compile, lint work as expected (act on current buffer's cwd). Display this path when opening or replacing a file, rather than relying on the user to guess, or remember.
2006-05-02* Plug memory leak if init fails; ok gwk@Patrick Latifi