summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-13use mallocarray for multiplied value checkingTed Unangst
2014-07-13fix regress tests after log changes. noticed by bluhm@.Sebastian Benoit
everybody stand back. i know regular expressions.
2014-07-13Add configuration handling for certificate and key files.Joel Sing
2014-07-13KASSERTMSG(9): New kernel assertion with messageMasao Uebayashi
KASSERT() is annoying as it only prints the expression as a string. If you (developers) want to know a little more information, you have to do: #ifdef DIAGNOSTIC if (bad) panic(...); #endif KASSERTMSG() replaces it into a single line: KASSERTMSG(!bad, ...); Taken from NetBSD. (There is a concern that KASSERT() messages are too long; consume more memory, and not friendly for small monitors. This have to be considered & revisited later.) "Like" from henning@ Man page review & advices from jmc@ and schwarze@
2014-07-13Add stubs for the proposed server API.Joel Sing
2014-07-13add RDC R1012 supportsasano
2014-07-13Stop leaking internal library pointers in error messages.Joel Sing
Requested by miod@
2014-07-13pass correct sizes to free()Ted Unangst
2014-07-13add missing whitespace between .Fa macro argument and trailing punctuationIngo Schwarze
2014-07-13use mallocarray()Theo de Raadt
2014-07-13pciide.c, pciide_rdc_reg.h(new): ported rdcide(4) from NetBSD.sasano
it supports RDC's R1012 IDE controller. tested on 86duino EduCake (DM&P Vortex86EX SoC) ok by deraadt@
2014-07-13Tabs, not spaces.Joel Sing
2014-07-13use mallocarrayTed Unangst
2014-07-13Rename the context allocation from ressl_new to ressl_client, which makesJoel Sing
it completely obvious what the context is for. Ensure client functions are used on client contexts.
2014-07-13one .Fn argument per function argumentIngo Schwarze
2014-07-13Some reallocarray() use; review Jean-Philippe Ouellet, patrick keshishianTheo de Raadt
ok tedu
2014-07-13Split the context allocation out from the configuration. This will allowJoel Sing
us to properly report errors that occur during configuration processing. Discussed with tedu@
2014-07-13Do not fold multiple function arguments into the same .Fn argument:Ingo Schwarze
That may cause indexing and formatting issues. Buggy mdoc(7) code mentioned by uebayasi@ to jmc@.
2014-07-13boot(9): Cosmetic changes to improve diff'ability.Masao Uebayashi
2014-07-13Move the client code into a separate file.Joel Sing
2014-07-13Rename various configuration handling functions.Joel Sing
Requested by and discussed with tedu@.
2014-07-13Comment out option GPT until the matching userland bits are in place.Miod Vallat
2014-07-13Use a single ressl.h header file.Joel Sing
Discussed with beck@ and tedu@.
2014-07-13Cosmetic changes to reduce diffs.Masao Uebayashi
2014-07-13Update procflags list, add PS_SYSTEM, PS_EMBRYO, PS_ZOMBIE andClaudio Jeker
PS_NOBROADCASTKILL. The resulting table is shifted so far right that a few additional lines had to be wrapped. Not ideal but the best we can do at the moment.
2014-07-13The correct place to call _bus_dmamap_sync() is after we copy data *to* theMark Kettenis
bounce buffer and before we copy data *from* the bounce buffer. Currently _bus_dmamap_sync() is a no-op, but keeping it #ifdef'ed out in the wrong place makes no sense. ok deraadt@, miod@
2014-07-13syncTheo de Raadt
2014-07-13Use lerrx instead of errx since the logging subsystem is already initialized.Claudio Jeker
OK florian@
2014-07-13Fix sched_stop_secondary_cpus() to properly drain CPUsMatthew Dempsky
TAILQ_FOREACH() isn't safe to use in sched_chooseproc() to iterate over the run queues because within the loop body we remove the threads from their run queues and reinsert them elsewhere. As a result, we end up only draining the first thread of each run queue rather than all of them. ok kettenis
2014-07-13yes indeed, it returns void *. from Jean-Philippe Ouellet, i also hadTheo de Raadt
this lurking in a tree
2014-07-13Explicitly initialise slen - this was not previously done due to a missingJoel Sing
M_ASN1_D2I_begin macro.
2014-07-13Convert error handling to SSLerr and ERR_asprintf_error_data.Joel Sing
2014-07-13Some functions need to dup() before sending a socket by imsg and don'tYASUOKA Masahiko
need to close() after sending socket since imsg_compose() closes the passing socket.
2014-07-13Only set machdep.allowaperture if 'vga1: aperture needed' is foundRobert Peichaer
in dmesg output. Use that information to decide whether or not to ask the user if he intends to use X. initial diff from and OK halex@ OK deraadt@
2014-07-13include stdint.h for standard ints. from Jean-Philippe OuelletTed Unangst
2014-07-13fix even more trailing tabsJasper Lievisse Adriaanse
2014-07-13#$%#@$# CONSPEEDMiod Vallat
2014-07-13Display zero page hit and miss counters in vmstat -s.Mark Kettenis
ok deraadt@
2014-07-13more hanging tabsJasper Lievisse Adriaanse
2014-07-13ugly hanging tabs; ok jasperTheo de Raadt
2014-07-13Show an error if cmd_find_session can't find the current session, likeNicholas Marriott
the other functions.
2014-07-13No libsa putchar wanted here actuallyMiod Vallat
2014-07-13An EOF is a good reason to close a connection.Kenneth R Westerback
ok nicm@
2014-07-13obvious conversion to mallocarray()Theo de Raadt
2014-07-13tweak previous;Jason McIntyre
2014-07-13missing bracket in previous;Jason McIntyre
2014-07-13Still needs <sys/reboot.h>Miod Vallat
2014-07-13If a client is killed while suspended with ^Z so has gone through theNicholas Marriott
MSG_EXITED dance, don't try to resume it since a) it's pointless and b) the tty structures have been cleaned up and tmux will crash.
2014-07-13remove all crypt choices other than bcrypt. ok afresh1 deraadtTed Unangst
2014-07-13calling this "encryption" makes me cringe. "slightly obfuscated" is better.Ted Unangst