summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-14Batch copyout(9)s in preparation for finer locking.Martin Pieuchot
Tested by Hrvoje Popovski, inputs and ok visa@
2018-11-14free(9) sizes for configuration descriptors.Martin Pieuchot
ok tedu@, visa@
2018-11-14mv imitates, but no longer uses, cp and rm to cross filesystems.Ted Unangst
2018-11-14Remove slurpit definition. Leftover from earlier cleanup by otto@.Martijn van Duren
2018-11-14Remove an unneeded union wrapping the skipsteps pointer.Claudio Jeker
OK phessler@
2018-11-14Adjust comment.Claudio Jeker
2018-11-14Make sed's -i flag more compatible with what gsed does.Martijn van Duren
- Reset the hold-space in between files - quit the editor as soon as a 'q' command is found - Make sure the temp-file is written back to the original file if we quit the editor temp-file not written back issue found by Time Chase. Lots of feedback from millert@ and schwarze@ OK millert@
2018-11-14Add back part of the changes to takeover the firmware framebuffer onJonathan Gray
sparc64 lost in the update to linux 4.4. Compile tested only.
2018-11-14didn't found -> didn't find.Theo Buehler
From Edgar Pettijohn III
2018-11-14Setup radeondrm burner task. Missed when updating to linux 4.4.Jonathan Gray
Fixes wsconsctl display.screen_off panic reported by Dmitry Murti.
2018-11-14remove the encapsulation headers before looking at the inner headersDavid Gwynne
it works less well when you look before the adj
2018-11-14revert 1.121. i got confused between ecn on ingress and egressDavid Gwynne
2018-11-14In TLS1.2 we use evp_sha1 if we fall back this far, not evp_md5_sha1 as in 1.1Bob Beck
Makes connections to outlook.office365.com work
2018-11-14get ecn ingress args the right way round. again.David Gwynne
2018-11-14use the txprio setting to populate the tos in keepalive packets.David Gwynne
the mbuf prio will still be set according to the llprio value, but the tos on the packet may be forced to a specific number by txprio
2018-11-14according to ip_ipip.c, rfc1853 says not to copy the ttl on decapsulationDavid Gwynne
rfc1853 is about IP in IP Tunneling. rfc2003 about IP Encapsulation within IP agrees.
2018-11-13check various community combinationsClaudio Jeker
2018-11-13Add some coverage for the ioctl() interface.Visa Hankala
2018-11-13Temporary workaround for breakage seen in www.videolan.org with curve mismatchBob Beck
2018-11-13commit again the cleanup part that didn't break anythingMarc Espie
and was ok'd millert@
2018-11-13it's expected for pkg_add to exit 1 now, since it's missing one dependentMarc Espie
package it wants to update. what matters is the list of installed files.
2018-11-13knock out a useless sentence, and reword another to make it read more nicely;Jason McIntyre
ok otto
2018-11-13Fix previous, which broke ping -T.David Hill
ok dlg@
2018-11-13Add regress tests for pipe fcntl(fd, F_GETOWN).Visa Hankala
2018-11-13Fix fcntl(fd, F_GETOWN) with pipes. As a regressionVisa Hankala
of kern_descrip.c r1.177 and sys_pipe.c r1.82, the call always returned an error. OK jca@ anton@ mpi@
2018-11-13Fix a slip in previous. FFSSZ should reflect the "pa" disktab field,Visa Hankala
not "pc", as is documented in the file. However, the value of FFSSZ is not used anywhere so remove the variable. Pointed out by miod@
2018-11-13Initialize context property in alignment test handler function.Nicholas Marriott
2018-11-13Remove #if'ed 0 code around a broken pledge. Due to some ioctls and sysctlsRicardo Mestre
pledge cannot be used, nevertheless since we now have unveil available we can use it to guarantee that in this particular case the snmpe process cannot access the filesystem at all, therefore close a big attack vector and achieve a great level of protection even without being able to use pledge. prodded by deraadt@
2018-11-13fix markup error (missing blank before delimiter);Ingo Schwarze
from Mike Frysinger <vapier at gentoo dot org>
2018-11-13Grow sgi iso to make room for clang.Visa Hankala
Cluebat and OK deraadt@
2018-11-13Add GNU_HASH #defines; improve readelf output for SHT_GNU_HASHPhilip Guenther
ok naddy@ jca@
2018-11-13Just err if we can't create secretsBob Beck
2018-11-13NULL out mdctx to prevent possible double free introduced in version 1.4Bob Beck
Spotted by maestre@, ok tb@
2018-11-13Fix pkey_ok to be less strange, and add cuve checks required for the EC onesBob Beck
ok tb@
2018-11-13get the inner and outer tos values right for passing to ip_ecn_ingressDavid Gwynne
2018-11-13add txprio support to gre, mgre, egre, nvgre, and eoipDavid Gwynne
for l3 interfaces (gre and mgre), allow txprio from the payload, the mbuf, or a hardcoded value. for l2 interfaces (egre, ngre, and eoip), get txprio from the mbuf or a hardcoded value. ok claudio@
2018-11-13add txprio setting supportDavid Gwynne
gif encaps l3, so it can get a prio from the payload, as well as from the mbuf itself, or a hardcoded value. ok claudio@
2018-11-12add txprio supportDavid Gwynne
etherip puts the prio in the encapsulating ip header, and supports using hardcoded prio values or the prio from the mbuf. it encapsulates ethernet, which doesnt have a prio field unelss you parse the ether payload, which is not worth it. ok claudio@
2018-11-12only let root configure the txprio setting on an interfaceDavid Gwynne
ok claudio@
2018-11-12add support for txprio settings on interfacesDavid Gwynne
display of the currently configured txprio setting is added to the encap line, since it's configuring something that affects the population of an encapsulation header. it also adds a txprio argument to ifconfig so the setting can be changed to "payload", "packet", or a number between 0 and 7. ok claudio@
2018-11-12add ifreq bits for the tx header prio field ioctlsDavid Gwynne
a tx header prio can set to a fixed value from 0 to 7, or magic values to represent populating the prio field from the encapsulated packet, or from the mbuf prio value. ok claudio@
2018-11-12add ioctl commands for the setting of prio fields in tx headersDavid Gwynne
this will be used by encap interfaces where their headers have fields to store a priority, eg, the dot1p bit of vlan/svlan headers, or the ip tos or tclass field int the outer ip header in gre, gif, etherip, and vxlan. ok claudio@
2018-11-12tweak previous;Jason McIntyre
2018-11-12Missing initialization for pub_key. CID 184303.Theo Buehler
ok bcook
2018-11-12Add initial regress tests for sigio.Visa Hankala
2018-11-12Restart when SSID change is noted in RTM_80211INFO. Thus ensuringKenneth R Westerback
correct lease is discovered/renewed and lease file is properly updated. Improves co-existance with new 'join' feature. Issues first noted and many tests by anton@. Many suggestions and tweaks from claudio@, stsp@, anton@. ok claudio@ stsp@ anton@ phessler@
2018-11-12Recognize and display new RTM_80211INFO messages.Kenneth R Westerback
Original diff from phessler@. Many suggestions and tweaks from claudio@, stsp@, anton@. ok claudio@ stsp@ anton@ phessler@
2018-11-12Add new routing socket message RTM_80211INFO to provide details ofKenneth R Westerback
802.11 interface state changes (e.g. SSID) to interested parties. Original diff from phessler@. Many suggestions and tweaks from claudio@, stsp@, anton@. ok claudio@ stsp@ anton@ phessler@
2018-11-12Utilize sigio with pipes. This makes fcntl(fd, F_SETOWN, arg) correctlyVisa Hankala
handle arg as a process ID if the value is positive and as a process group ID if the value is negative. In addition, now the signal sending checks privileges. OK mpi@
2018-11-12Document return values.Visa Hankala