summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-09-02Initial commit of uefi boot loader of OpenBSD.YASUOKA Masahiko
ok deraadt yuo
2015-09-01Replace sockaddr casts with the proper satosin(), ... calls.Alexander Bluhm
From David Hill; OK mpi@; tested kspillner@; tweaks bluhm@
2015-09-01Remove all bogus writes to stderr. Only explicit requests shouldTheo de Raadt
go that way. ok miod beck
2015-09-01Display the correct source address when using a non-default routingFlorian Obser
table. Problem reported on bugs@ and diff from phil AT unita.com.au, thanks! OK phessler
2015-09-01Tweak some error messages/comments.Nicholas Marriott
2015-09-01Log the whole new input buffer once rather than each byte.Nicholas Marriott
2015-09-01Pass logging through vis(3).Nicholas Marriott
2015-09-01- route-to, dup-to, reply-to should not override the block actionAlexandr Nedvedicky
Spotted by Dilli Paudel <dilli ! paudel at oracle ! com> ok jung@, ok mikeb@
2015-09-01Fix a spelling error, sesson -> session.Nicholas Marriott
2015-09-01the special check logic for /usr/share/nls/../libc.cat became failureTheo de Raadt
to return failure. open() of these paths should succeed to satisfy strerror() and friends. ok semarie
2015-09-01Bind the *:514 UDP socket of syslogd with SO_REUSEADDR. This avoidsAlexander Bluhm
conflicts with other processes bound to a specific address with the same port. Syslogd uses this socket basically for outgoing traffic to remote UDP log servers, so increase the chance that it works. OK jung@ benno@
2015-09-01syncTheo de Raadt
2015-09-01no need to check for null argv anymore. from Martijn van DurenTed Unangst
ok deraadt
2015-09-01stop defining a local copy of perror(); libc/rpc no longer uses it.Theo de Raadt
ok beck millert miod
2015-09-01Remove calls to perror(); the error returns are sufficient, and theseTheo de Raadt
library may not assume stderr is useable. ok millert miod beck
2015-09-01Kill unused ``ia_net'' field in the struct in6_ifaddr, bad copyMartin Pieuchot
paste from the IPv4 time. While here update the comment about ``ia6_ndpr'' it's now only used for autoconf.
2015-09-01Add an initial TLS client regress, which currently covers ClientHelloJoel Sing
message generation.
2015-09-01Always call readdoslabel() before readgptlabel(). Doubly always call themKenneth R Westerback
in the same order. Fix writedisklabel() to follow these simple rules. ok kettenis@
2015-09-01increment the line number after the line continuation; ok teduMike Belopuhov
2015-09-01syncTheo de Raadt
2015-09-01Remove duplicate prototype for SSL_get_selected_srtp_profile().Joel Sing
From Aaron Burghardt.
2015-09-01Increase transfer FIFOs for dwc2, to improve USB performance. The newVisa Hankala
values are from dwc2 of NetBSD. ok jmatthew@, jasper@
2015-09-01Convert ip{,6}_output() (cached) route entry checks to rtisvalid(9).Martin Pieuchot
ok bluhm@
2015-09-01space between macro args and punctuation;Jason McIntyre
2015-09-01Remove the ssl_prepare_{client,server}hello_tlsext() functions, which areJoel Sing
now nothing more than noops. ok bcook@ doug@
2015-09-01Make it always safe to call CBB_cleanup() providing that CBB_init() orJoel Sing
CBB_init_fixed() have been attempted. ok doug@
2015-09-01only need to restrict exec path if the rule specifies a command.Ted Unangst
add a hint about path restrictions to man page. ok deraadt espie
2015-09-01remove casts and null checks before free. from Michael McConvilleTed Unangst
ok deraadt
2015-09-01Introduce rtisvalid(9) a function to check if a (cached) route entryMartin Pieuchot
can be used or should be released by rtfree(9). It currently checks if the route is UP and is not attached to a stall ifa. ok bluhm@, claudio@
2015-09-01ditch a few prototypes for non-existant functionsMike Belopuhov
2015-09-01Remove dead_clients which is no longer used.Nicholas Marriott
2015-09-01Work out config file when needed not at startup.Nicholas Marriott
2015-09-01Do not try to find a possible ``ifa'' in rt_ifal_del(9) and trust theMartin Pieuchot
checks done in rtrequest1(9). This chunk has been introduced in 1991 when rtrequest1(RTM_DELETE...) was not doing a route lookup and no longer make any sense. ok bluhm@
2015-09-01Move initial conf load into cfg.c.Nicholas Marriott
2015-09-01Reject USB requests that could damage the bus integrity, just like itMartin Pieuchot
is done in ugen(4). Found by Grant Czajkowski during the GSoC 2015.
2015-09-01Use the correct free(9) size for the RX ring.Martin Pieuchot
ok dlg@, phessler@
2015-09-01All the cmd_*_entry declarations do not need to be in tmux.h.Nicholas Marriott
2015-09-01Corrects a use-after-free in tame_namei().Sebastien Marie
ok doug@
2015-09-01Sync bus_dmamap_load_raw(9) with amd64/i386 in order to respect theMartin Pieuchot
segement size constraint. Make xhci(4) work on my G5. ok dlg@
2015-09-01Push down the KERNEL_LOCK/KERNEL_UNLOCK calls into the back-end allocatorMark Kettenis
functions. Note that these calls are deliberately not added to the special-purpose back-end allocators in the various pmaps. Those allocators either don't need to grab the kernel lock, are always called with the kernel lock already held, or are only used on non-MULTIPROCESSOR platforms. pk tedu@, deraadt@, dlg@
2015-09-01set sival_ptr before calling trapsignal() for user breakpoint/trace trapsJonathan Gray
ok guenther@
2015-09-01trivial size for free()Theo de Raadt
2015-09-01sizes for free(), mostly related to firmwares.Theo de Raadt
ok dlg
2015-09-01Only advertise the color depth we actually support. This makes theMark Kettenis
xf86-video-wsfb driver work. Map the framebuffer in write-combining mode. This significantly speeds things up. ok yuo@, yasuoka@, deraadt@
2015-09-01test pointers with NULL not '\0'Jonathan Gray
2015-09-01update currency exchange rates;Jason McIntyre
2015-09-01free() firmware with right len; ok dlgTheo de Raadt
2015-09-01fairly simple sizes for free()Theo de Raadt
2015-09-01size for free(), and make allocation side look similarTheo de Raadt
2015-09-01Delete bogus MATH_EMULATE holdover from i386Philip Guenther