summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-02Add a new sysctl machdep.lidaction. The sysctl works as follows:Martin Natano
machdep.lidaction=0 # do nothing machdep.lidaction=1 # suspend machdep.lidaction=2 # hibernate lidsuspend is just an alias for lidaction, so if you change one, the other one will have the same value. The plan is to remove machdep.lidsuspend eventually when people have upgraded their /ets/sysctl.conf. discussed with deraadt, who came up with the new MIB name no objections mlarkin ok stsp halex jcs
2017-03-028168 support jumbo frames;Jason McIntyre
2017-03-02Initialize 'ni' pointer in ieee80211_keyrun(). Fallout from last minuteStefan Sperling
changes I made to my WPA security patch. Affects WPA enterprise only. Problem found by patrick@ ok sthen@
2017-03-02Fix a rtentry leak in error path.Martin Pieuchot
ok bluhm@
2017-03-02close ftp(1)'s output file to avoid leaking one FD per request.Stuart Henderson
ok deraadt
2017-03-02Prefer the global list of interfaces to the dying global list of IPv6Martin Pieuchot
addresses in nd6_timer(). ok bluhm@
2017-03-02Use the routing table rather than the global list of IPv6 address.Martin Pieuchot
ok bluhm@
2017-03-02Convert domain declarations to C99 initializers.Martin Pieuchot
ok dhill@, florian@, bluhm@
2017-03-02Add "locked lladdr" option to prevent VMs from spoofing MAC addresses.Reyk Floeter
This is especially useful when multiple VMs share a switch, the implementation is independent from the underlying switch or bridge. no objections mlarkin@
2017-03-02refactor cpuid exit handler for easier merge with upcoming SVM version.Mike Larkin
Matches amd64 commit made yesterday.
2017-03-02log attempts to access cpuid leaf function 0x03, "processor serial number".Mike Larkin
matches other log messages for other unimplemented cpuid leaf functions.
2017-03-02reduce some more differences in vmm between i386 and amd64 that didn'tMike Larkin
get picked up previously. i386 gets some changes relating to EFER treatment and amd64 gets a whitespace fix.
2017-03-02Allow MPLS switching and VPLS across rdomains.Renato Westphal
OK claudio@ mpi@
2017-03-02reduce differences in vmm between amd64 and i386 (i386 picks up a handfulMike Larkin
of recent fixes for SVM that were missed). No functional change on amd64 (just an added comment)
2017-03-02Refactor cpuid exit handler to make it easier to bolt on SVM supportMike Larkin
shortly (instead of having two nearly identical functions.) ok reyk
2017-03-02syncTheo de Raadt
2017-03-01Print message why tests are skipped.Alexander Bluhm
2017-03-01Rename start_vm_complete to vm_start_complete for consistency.Reyk Floeter
2017-03-01unbreak vmctl build by renaming a function that now conflicts withMike Larkin
something from vmd.h . Temporary fix until the original committer can fix it the way he desires.
2017-03-01Comments ...Robert Peichaer
2017-03-01Fix some DPRINTFs I just added to ieee80211_pae_input.c.Stefan Sperling
No fnuctional change.
2017-03-01Fix a bug allowing a man-in-the-middle attack against WPA wireless clients.Stefan Sperling
A malicious AP could trick clients into connecting to the malicious AP instead of the desired AP. All frames would then be sent in the clear. This problem was found and reported by Mathy Vanhoef who also provided an initial patch which we improved together.
2017-03-01Split vmm.c into two files: vm.c for the VM child, vmm.c for the parentReyk Floeter
As discussed with mlarkin@, it makes it easier to maintain the file. OK mlarkin@
2017-03-01Remove pkg.conf leftover.Robert Peichaer
OK espie@
2017-03-01xdm -> xenodm; from jan staryJason McIntyre
2017-03-01Convert ssl3_{get,send}_server_key_exchange() to EVP_md5_sha1().Joel Sing
ok inoguchi@
2017-03-01Add EVP test for MD5-SHA1.Joel Sing
2017-03-01Include EVP_md5_sha1() via OpenSSL_add_all_digests().Joel Sing
2017-03-01Don't try to access the com(4) hardware to set up the console speedPatrick Wildt
on efiboot(8), as it can crash the EFI application. ok tom@
2017-03-01tweak previous; ok reykJason McIntyre
2017-03-01update currency exchange rates;Jason McIntyre
2017-03-01gc really old stuff that's not actually in use anymoreMarc Espie
2017-03-01scrape most of the config frameworkMarc Espie
okay aja@, rpe@
2017-03-01Remove a misleading comment asking if a timeout needs a LOCK, it doesn't.Martin Pieuchot
ok goda@
2017-03-01Add "owner" option to set a user/group ownership for pre-configured VMsReyk Floeter
This allows matching users to start or stop VMs that they "own" and to access the console accordingly. OK mlarkin@
2017-03-01Remove unused table driven omgpio bits.Jonathan Gray
2017-03-01edma attaches to fdt nowJonathan Gray
2017-03-01remove remaining parts of the table driven approach to attaching edmaJonathan Gray
2017-03-01Dynamically attach edma(4) using the FDT.Jonathan Gray
From Ian Sutton.
2017-03-01Fix the code which preserves the device path of the loaded image ifYASUOKA Masahiko
booting from a disk. It had a typo. Also tweak the code which finds the blkio of the boot disk to show how it is matching the device path nodes clearly. found by and discussed with patrick@.
2017-03-01Remove SYSCALL_DEBUG arm64 has been multiuser for a while now.Jonathan Gray
ok patrick@
2017-03-01mention pciecam on arm64Jonathan Gray
2017-03-01Avoid warnings from ssh -t, check remote SUDO at beginning.Alexander Bluhm
2017-03-01*nargv[] holds an array of pointers, so it should beGleydson Soares
terminated by a null pointer. ok rzalamena@ reyk@
2017-03-01add missing rcsidGleydson Soares
2017-03-01move up getpid() and getpwnam(LDAP USER) checksGleydson Soares
to fail earlier and also make them consistent with other daemons. while here: - fix getpwnam(LDAPD_USER) errx() - no need to skip_chroot ok jmatthew@
2017-03-01Print SKIPPED if the architecture dependent regression tests areAlexander Bluhm
executed on the wrong machine. This allows to distinguish their result from a passed test.
2017-03-01Use consistent address schema with local and remote machine. FillAlexander Bluhm
variables with example IPs from my daily test run.
2017-02-28Update to tzdata2017a from ftp.iana.orgTodd C. Miller
2017-02-28Make object-in-archive-used identification portable to lld: use --tracePhilip Guenther
instead of -M and transform the output to a common /path/to/archive.a(object.o) syntax. problem noted by jsg@ ok kettenis@ jsg@