Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-14 | Setup radeondrm burner task. Missed when updating to linux 4.4. | Jonathan Gray | |
Fixes wsconsctl display.screen_off panic reported by Dmitry Murti. | |||
2018-11-14 | remove the encapsulation headers before looking at the inner headers | David Gwynne | |
it works less well when you look before the adj | |||
2018-11-14 | revert 1.121. i got confused between ecn on ingress and egress | David Gwynne | |
2018-11-14 | In TLS1.2 we use evp_sha1 if we fall back this far, not evp_md5_sha1 as in 1.1 | Bob Beck | |
Makes connections to outlook.office365.com work | |||
2018-11-14 | get ecn ingress args the right way round. again. | David Gwynne | |
2018-11-14 | use 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-14 | according to ip_ipip.c, rfc1853 says not to copy the ttl on decapsulation | David Gwynne | |
rfc1853 is about IP in IP Tunneling. rfc2003 about IP Encapsulation within IP agrees. | |||
2018-11-13 | check various community combinations | Claudio Jeker | |
2018-11-13 | Add some coverage for the ioctl() interface. | Visa Hankala | |
2018-11-13 | Temporary workaround for breakage seen in www.videolan.org with curve mismatch | Bob Beck | |
2018-11-13 | commit again the cleanup part that didn't break anything | Marc Espie | |
and was ok'd millert@ | |||
2018-11-13 | it's expected for pkg_add to exit 1 now, since it's missing one dependent | Marc Espie | |
package it wants to update. what matters is the list of installed files. | |||
2018-11-13 | knock out a useless sentence, and reword another to make it read more nicely; | Jason McIntyre | |
ok otto | |||
2018-11-13 | Fix previous, which broke ping -T. | David Hill | |
ok dlg@ | |||
2018-11-13 | Add regress tests for pipe fcntl(fd, F_GETOWN). | Visa Hankala | |
2018-11-13 | Fix fcntl(fd, F_GETOWN) with pipes. As a regression | Visa 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-13 | Fix 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-13 | Initialize context property in alignment test handler function. | Nicholas Marriott | |
2018-11-13 | Remove #if'ed 0 code around a broken pledge. Due to some ioctls and sysctls | Ricardo 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-13 | fix markup error (missing blank before delimiter); | Ingo Schwarze | |
from Mike Frysinger <vapier at gentoo dot org> | |||
2018-11-13 | Grow sgi iso to make room for clang. | Visa Hankala | |
Cluebat and OK deraadt@ | |||
2018-11-13 | Add GNU_HASH #defines; improve readelf output for SHT_GNU_HASH | Philip Guenther | |
ok naddy@ jca@ | |||
2018-11-13 | Just err if we can't create secrets | Bob Beck | |
2018-11-13 | NULL out mdctx to prevent possible double free introduced in version 1.4 | Bob Beck | |
Spotted by maestre@, ok tb@ | |||
2018-11-13 | Fix pkey_ok to be less strange, and add cuve checks required for the EC ones | Bob Beck | |
ok tb@ | |||
2018-11-13 | get the inner and outer tos values right for passing to ip_ecn_ingress | David Gwynne | |
2018-11-13 | add txprio support to gre, mgre, egre, nvgre, and eoip | David 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-13 | add txprio setting support | David 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-12 | add txprio support | David 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-12 | only let root configure the txprio setting on an interface | David Gwynne | |
ok claudio@ | |||
2018-11-12 | add support for txprio settings on interfaces | David 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-12 | add ifreq bits for the tx header prio field ioctls | David 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-12 | add ioctl commands for the setting of prio fields in tx headers | David 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-12 | tweak previous; | Jason McIntyre | |
2018-11-12 | Missing initialization for pub_key. CID 184303. | Theo Buehler | |
ok bcook | |||
2018-11-12 | Add initial regress tests for sigio. | Visa Hankala | |
2018-11-12 | Restart when SSID change is noted in RTM_80211INFO. Thus ensuring | Kenneth 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-12 | Recognize 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-12 | Add new routing socket message RTM_80211INFO to provide details of | Kenneth 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-12 | Utilize sigio with pipes. This makes fcntl(fd, F_SETOWN, arg) correctly | Visa 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-12 | Document return values. | Visa Hankala | |
2018-11-12 | Rework the sm3 regress based on a suggestion by jsing. Zap the weird | Theo Buehler | |
hex_encode() function and use byte arrays instead of strings to store the expected values. Snatch and tweak hexdump() from beck's key_schedule test to pretty-print data in case of failure. | |||
2018-11-12 | sync | Visa Hankala | |
2018-11-12 | Document pgsigio(9). | Visa Hankala | |
2018-11-12 | Document sigio routines. | Visa Hankala | |
2018-11-12 | Add a mechanism for managing asynchronous IO signal registrations. | Visa Hankala | |
It centralizes IO signal privilege checking and makes possible to revoke a registration when the target process or process group is deleted. Adapted from FreeBSD. OK kettenis@ mpi@ guenther@ | |||
2018-11-12 | Allow style #[] in mode formats. | Nicholas Marriott | |
2018-11-12 | simplify code for resolver_getnaimeinfo() | Eric Faurot | |
ok gilles@ | |||
2018-11-12 | - Fix UTF-8 regression test when running with LC_{CTYPE,ALL}=C by setting | Martijn van Duren | |
LC_ALL to UTF-8. - Add explicit regression test for when locale C Found the hard way by tb@. input and OK on earlier version bluhm@ | |||
2018-11-12 | set the hardmtu on ether encap ifs so the mtu can be raised above 1500 | David Gwynne | |