Re: X server updated to version 21.1.1

2021-12-15 Thread Sven Wolf
On 11/12/21 19:18, Matthieu Herrb wrote: Hi, I've updated the X server in Xenocara to version 21.1.1, together with Freetype (2.11.0) and fontconfig 2.13.94. One of the visible change of this update is that some LCD panels now report their real physical dimensions to the X server, rather tha

libradius: switch to HMAC_CTX on the heap

2021-12-15 Thread Theo Buehler
Another fairly mechanical conversion to prepare the switch to opaque HMAC_CTX. It adds missing error checking for the HMAC API and uses HMAC_Init_ex() instead of the deprecated HMAC_Init(). Index: radius_msgauth.c === RCS file: /cvs/s

OpenBSD Errata: December 16, 2021 (kernel)

2021-12-15 Thread Alexander Bluhm
Errata patches for kernel multicast routing have been released for OpenBSD 6.9 and 7.0. Binary updates for the amd64, i386 and arm64 platform are available via the syspatch utility. Source code patches can be found on the respective errata page: https://www.openbsd.org/errata69.html https:/

Re: Per-cpu counters for TDB stats

2021-12-15 Thread Vitaliy Makkoveev
Please drop this diff. > On 15 Dec 2021, at 19:21, Vitaliy Makkoveev wrote: > > The previous version of this diff exposed UAF issue we had after > tdb_delete(). bluhm@ fixed this and proposes to put per-cpu counters > diff again to tree. This is the updated diff to be against the resent > source

missing includes in grep

2021-12-15 Thread Theo Buehler
file.c needs limits.h for PATH_MAX and unistd.h for close(), isatty(), lseek(), SEEK_SET, ... binary.c also uses SEEK_SET. unistd.h is currently pulled in via zlib's zconf.h, which feels wrong. Index: binary.c === RCS file: /cvs/src/

Per-cpu counters for TDB stats

2021-12-15 Thread Vitaliy Makkoveev
The previous version of this diff exposed UAF issue we had after tdb_delete(). bluhm@ fixed this and proposes to put per-cpu counters diff again to tree. This is the updated diff to be against the resent sources. Index: sys/net/pfkeyv2_convert.c

Re: fix ldapd unveil

2021-12-15 Thread Ricardo Mestre
yep, ok mestre@ On 20:50 Tue 14 Dec , Theo de Raadt wrote: > I agree. > > Jonathan Matthew wrote: > > > ldapd currently can't reopen its database files, because it always passes > > O_CREAT to open() when reopening (see ldapd_open_request()), which means it > > needs the unveil 'c' flag. T