OpenBSD cvs log

created 2024-01-18T22:51:39Z
begin 2023-12-19T00:00:00Z
end 2023-12-20T00:00:00Z
path src/sys
commits 6

date 2023-12-19T01:11:21Z
author bluhm
files src/sys/kern/uipc_socket.c log diff annotate
message soreceive() must not hold mutex when calling sblock().

In my recent commit I missed that sblock() may sleep while soreceive()
holds the incpb mutex. Call pru_lock() after sblock().

Reported-by: [email protected]
Reported-by: [email protected]
OK mvs@

date 2023-12-19T06:58:36Z
author deraadt
files src/sys/kern/syscalls.master log diff annotate
message the 4th argument of pinsyscalls() is now "number of pin elements",
not "size of the storage of the pin elements"

date 2023-12-19T06:59:17Z
author deraadt
files src/sys/kern/init_sysent.c log diff annotate
src/sys/kern/syscalls.c log diff annotate
src/sys/sys/syscall.h log diff annotate
src/sys/sys/syscallargs.h log diff annotate
message sync

date 2023-12-19T14:40:04Z
author deraadt
files src/sys/sys/malloc.h log diff annotate
message add a malloc type for pinsyscall arrays

date 2023-12-19T20:34:10Z
author mvs
files src/sys/net/if_pflow.c log diff annotate
message Initialize `sc_outputtask' before interface attachment. if_alloc_sadl()
has sleep point, so the uninitialized `sc_outputtask` could be accessed
through ioctl(2) interface.

ok sashan bluhm

date 2023-12-19T21:34:22Z
author bluhm
files src/sys/kern/uipc_socket.c log diff annotate
message Release inpcb mutex while calling sbwait().

As sbwait() may sleep, holding any mutex is not allowed. Call
pru_unlock() before sbwait() in soreceive().

Bug spotted by sashan@; OK sashan@ mvs@