summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-12unbreak parsing of pubkey comments; with gerhard; ok djm/deraadtMarkus Friedl
2015-01-12revert the namecache embiggening since it seems to cause hangs at reboot.Ted Unangst
reported and revert tested by krw
2015-01-12missing error assigment on sshbuf_put_string()Markus Friedl
2015-01-12oops, don't load quirks prematurely. noticed by many, myself includedMarc Espie
2015-01-12Fix axen(4) build with AXEN_DEBUG defined. From Fabien Raetz.Stefan Sperling
2015-01-12exphy and ciphy are not needed with this list of network devicesTheo de Raadt
thanks jsg
2015-01-12Due to recent savings with instbin, we can take i386 to one installTheo de Raadt
floppy. A few drivers are missing, but the world has moved on (the drivers included are always a work in progress) Speeds up make release substantially, of course.
2015-01-12Enable lid suspends by default in the kernel, and remove the question fromTheo de Raadt
the installer. We used a full release cycle to learn that suspend/resume is reliable enough for this default. Personal policy can disable this using machdep.lidsuspend=0 in /etc/sysctl.conf ok more people begging, and less people whining
2015-01-12Fetching port distfiles with the ftp command from githup did notAlexander Bluhm
work when using a https proxy because of a missing host header. Remember the host form the url and write it into the http request. Fix the format string when using Proxy-Authorization together with Cookie. Also write the http request to the debugging output to see what is going on. input jca@; OK sthen@ mpi@
2015-01-12apparently memcpy(x, NULL, 0) is undefined behaviour according toDamien Miller
C99 (cf. sections 7.21.1 and 7.1.4), so check skip memcpy calls when length==0; ok markus@
2015-01-12Make sure the given user exists.Antoine Jacoutot
"I like it" sthen@ ok robert@
2015-01-12Use proper casts for ctype functions. This is already fixed in nsdTodd C. Miller
trunk. OK doug@
2015-01-12free->sshkey_free; ok djm@Markus Friedl
2015-01-12Kill the global list of IPv4 addresses.Martin Pieuchot
ok claudio@, mikeb@, bluhm@
2015-01-12Make it possible to reset "timeout" to the default value.Antoine Jacoutot
2015-01-12"timeout" must be a positive integer.Antoine Jacoutot
2015-01-12allow WITH_OPENSSL w/o WITH_SSH1; ok djm@Markus Friedl
2015-01-12regenJonathan Gray
2015-01-12add some E5 v3 PCIE and Bay Trail idsJonathan Gray
2010-01-15NSD v3.2.4Jakob Schlyter
2015-01-12fatal if soft-PKCS11 library is missing rather (rather than continueDamien Miller
and fail with a more cryptic error)
2015-01-12Don't forget about protocol specification when configuring flows.Mike Belopuhov
Tested by and OK claudio.
2015-01-12let this test all supporte key types; pointed out/ok markus@Damien Miller
2015-01-12When setting up advanced TX descriptor use m_getptr to locate the IPMike Belopuhov
or IPv6 header instead of assuming contiguousness of the target buffer across Ethernet and IP/IPv6 headers. Tested by Kapetanakis Giannis <bilias at edu ! physics ! uoc ! gr>, thanks! Problem analysis and initial diff by dlg@.
2015-01-12Add a note that HOST_NAME_MAX does not include a terminating \0, unlikeNicholas Marriott
MAXHOSTNAMELEN. ok deraadt guenther
2015-01-12pretty up some malloc() callsTheo de Raadt
2015-01-12hibernate_suspend() should not pmap_kremove by itself; hibernate_free()Theo de Raadt
must do that. otherwise, pmap_kremove is called twice. i386 in particular does not tolerate that, found by sebastia ok mlarkin kettenis
2015-01-12Some fixes and tidying up of the receive filter handling bits.Brad Smith
2015-01-12rename blocks to words. bcrypt "blocks" are unrelated to blowfish blocks,Ted Unangst
nor are they the same size.
2015-01-12Fix a memory leak in bss_dgram.Doug Hogan
Free data->saved_message.data. Based on OpenSSL commit: 41cd41c4416f545a18ead37e09e437c75fa07c95 except this version sets a->ptr to NULL to avoid accidental reuse and handles malloc failing. ok beck@, input + ok miod@
2015-01-12stash the softc in the memory allocated for setting up a task forDavid Gwynne
creating sensors.
2015-01-11replace fw_update (shell script) with a specialized version of pkg_add.Marc Espie
This has numerous advantages, in terms of speed and control. Initial version should be (mostly) identical to the old one. thanks to rpe@ and sthen@ for tests.
2015-01-11Remove orphaned defines.Miod Vallat
2015-01-11No more etc set, also sparc nowadays needs more than 16MB to boot multiuser.Miod Vallat
2015-01-11Tolerate checksum errors in ACPI tables (but complain about them). ApparentlyMark Kettenis
there are machines out there with broken BIOSen with such checksum errors in thier RSDT tables. Windows runs fine on these machines, so it probably does not check. Linux ignores checksum errors as well (and prints a warning). ok deraadt@, krw@
2015-01-11LOCKDEBUG is dead; perform the funeral ritesPhilip Guenther
pointed out by Helg (xx404 (at) msn.com) ok deraadt@ miod@
2015-01-11switch prototype warnings to implicit-declaration warnings.Ted Unangst
This should catch all the same bad cases, but be a little less aggravating in circumstances where a prototype isn't necessary ok deraadt
2015-01-11revert two latest commits until a crash is fixedGilles Chehade
2015-01-11When using sun4 PROM I/O routines, make sure we never attempt to transfer moreMiod Vallat
than the maximum DMA transfer size the PROM reports. Crank version to 2.9.
2015-01-11There's no simple way so check for DMA buffer overrun with isochronousMartin Pieuchot
transfers, so skip the check for such xfers for the moment. Issue reported by Ingo Feinerer and fix confirmed by Jan Stary.
2015-01-11Use the softc-specific function pointers for bcopy() and bzero() in iestart(),Miod Vallat
instead of, well, bcopy and bzero. This lets ie@vme transmit packets instead of panicing due to memset() trying to use 32-bit stores on a device address.
2015-01-11Make sure to initialize nbpg to a sensible value in bootxx, when running onMiod Vallat
a sun4 system - the prom i/o routines depend on it.
2015-01-11Unbreak sun4Miod Vallat
2015-01-11global "list" is not the nicest variable nameTheo de Raadt
seen my mlarkin, ok miod
2015-01-11add/fix/extend entries of exUSSR airports I've been to.Kirill Bychkov
ok sthen@
2015-01-11unbreak the delivery_filename backend, now that it no longer prepends theGilles Chehade
From separator line but gets it injected in its iobuf by the mda process, we need to make sure not to escape the first 'From ' we receive. spotted by deraadt@
2015-01-11armv6 introduced opcodes for reversing words in registers. we canDavid Gwynne
use these on armv7 as a backend for byteswapping things that endian.h provide. i dunno if its faster, but it makes smaller code. saves 30k on GENERIC-OMAP. ok jsing@ bmercer@ jsg@
2015-01-11correctly use HOST_NAME_MAX.Theo de Raadt
Some notes: POSIX HOST_NAME_MAX doesn't include the NUL. POSIX LOGIN_NAME_MAX and TTY_NAME_MAX do include the NUL. BSD MAXHOSTNAMELEN includes the NUL. Actually, most of the historical BSD MAX* defines did include the NUL, except for the historical mistake of utmp fields without NULs in the string, which directly led to strncpy.. just showing how error prone this kind of accounting is. CSRG did right. Somehow POSIX missed the memo on the concepts of carefulness and consistancy, and we are still paying the price when people trip over this. Of course, glibc is even more amazing (that is a hint to blackhats) ok guenther
2015-01-11use mallocarray(), then set the size afterwards. Prefer if people learnTheo de Raadt
and use this idiom everywhere, it is always safest.
2015-01-11use mallocarray()Theo de Raadt