created | 2018-11-30T01:13:38Z |
---|---|
begin | 2018-08-05T00:00:00Z |
end | 2018-08-06T00:00:00Z |
path | src/sys |
commits | 7 |
date | 2018-08-05T08:54:05Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/arch/armv7/conf/RAMDISK | log | diff | annotate |
message | enable bio and softraid on armv7 ramdisk |
date | 2018-08-05T08:54:43Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/arch/arm64/conf/RAMDISK | log | diff | annotate |
message | enable bio and softraid on arm64 ramdisk |
date | 2018-08-05T13:20:58Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/arch/armv7/conf/GENERIC | log | diff | annotate |
src/sys/arch/armv7/conf/RAMDISK | log | diff | annotate | |
message | enable virtio pci attachment on armv7 |
date | 2018-08-05T13:59:38Z | |||
---|---|---|---|---|
author | beck | |||
files | src/sys/kern/kern_unveil.c | log | diff | annotate |
message |
Prevent a panic when reboot -q is used by making unveil_removevnode sane. ok kettenis@ |
date | 2018-08-05T14:23:57Z | |||
---|---|---|---|---|
author | beck | |||
files | src/sys/dev/diskmap.c | log | diff | annotate |
src/sys/kern/exec_elf.c | log | diff | annotate | |
src/sys/kern/kern_exec.c | log | diff | annotate | |
src/sys/kern/kern_ktrace.c | log | diff | annotate | |
src/sys/kern/kern_unveil.c | log | diff | annotate | |
src/sys/kern/tty.c | log | diff | annotate | |
src/sys/kern/tty_pty.c | log | diff | annotate | |
src/sys/kern/vfs_syscalls.c | log | diff | annotate | |
src/sys/sys/namei.h | log | diff | annotate | |
src/sys/sys/proc.h | log | diff | annotate | |
message |
Decouple unveil from the pledge flags, by adding dedicated unveil flags to the namei args. This fixes a bug where chmod would be allowed when with only READ. This also allows some further cleanup of some awkward things like PLEDGE_STAT that will follow Lots of assistence from semarie@ - thanks! ok semarie@ |
date | 2018-08-05T21:05:17Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/ofw/ofw_clock.c | log | diff | annotate |
message |
Fix typo that caused us to misassign parents. ok patrick@ |
date | 2018-08-05T23:19:49Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/dev/firmload.c | log | diff | annotate |
message |
ifconfig ioctl's that bring interfaces up the first time may issue firmware loads. The namei operations are being performed are on behalf of the kernel not process, so use BYPASSUNVEIL. spotted by sthen, ok beck |