xonly on amd64: testing wanted

2023-01-14 Thread Theo de Raadt
Some of you have probably noticed activity about "xonly" happening to a bunch of architectures. First arm64, then riscv64, then hppa, and ongoing efforts with octeon, sparc64 (sun4u only), and more of this is going to come in the future. Like past work decades ago (and I suppose continually

Re: openssh: update ed25519 and squash into a single file

2023-01-14 Thread Tobias Heider
On Sat, Jan 14, 2023 at 04:29:04PM +1100, Damien Miller wrote: > > > On Fri, 13 Jan 2023, Damien Miller wrote: > > > Hi, > > > > Forewarning: this is a big, noisy diff. Also on Github at > > https://github.com/djmdjm/openssh-wip/pull/18 > > > > This updates the ED25519 code to the latest

don't remove known vmd vm's on failure

2023-01-14 Thread Dave Voutila
It turns out not only does vmd have numerous error paths for handling when something is amiss with a guest, most of the paths don't check if it's a known vm defined in vm.conf. As a result, vmd often removes the vm from the SLIST of vm's meaning one can't easily attempt to start it again or see

typo in if_urtwn.c

2023-01-14 Thread Mikhail
diff /usr/src commit - 810555b25bf5444b727efabdb7f5ed0506159a65 path + /usr/src blob - a615fdea5fca69bcd980bdc027050f59be89d0ed file + sys/dev/usb/if_urtwn.c --- sys/dev/usb/if_urtwn.c +++ sys/dev/usb/if_urtwn.c @@ -1659,7 +1659,7 @@ urtwn_tx(void *cookie, struct mbuf *m, struct ieee8021

Re: only open /dev/vmm once in vmd(8)

2023-01-14 Thread Dave Voutila
Dave Voutila writes: > During h2k22 there was some discussion around how vmd(8) manages vms and > the vmm(4) device's role. While looking into something related, I found > vmd opens /dev/vmm in each subprocess during the initial fork+execve > dance. > > The only vmd process that needs /dev/vmm

Re: ifconfig description for wireguard peers

2023-01-14 Thread Theo de Raadt
Stuart Henderson wrote: > : Index: share/man/man4/wg.4 > : === > : RCS file: /cvs/src/share/man/man4/wg.4,v > : retrieving revision 1.10 > : diff -u -p -u -r1.10 wg.4 > : --- share/man/man4/wg.4 14 Mar 2021 10:08:38 -

Re: ifconfig description for wireguard peers

2023-01-14 Thread Stuart Henderson
On 2023/01/12 04:49, Mikolaj Kucharski wrote: > Hi, > > Is there anything else which I can do, to help this diff reviwed and > increase the chance of getting in? > > Thread at https://marc.info/?t=16347829861=1=2 > > Last version of the diff at >

Re: openssh: update ed25519 and squash into a single file

2023-01-14 Thread Theo Buehler
> This isn't completely without noise, but it lets you see the substantive > changes clearly. This looks good to me and works fine in my environment. Inlining the weird get_hram() makes things quite a bit clearer. I can't spot anything wrong in this diff. ok tb