CVSROOT: /cvs Module name: src Changes by: chel...@cvs.openbsd.org 2019/08/21 14:44:10
Modified files: lib/libc/sys : sysctl.2 share/man/man7 : securelevel.7 sys/arch/amd64/isa: clock.c sys/arch/i386/isa: clock.c sys/arch/macppc/macppc: clock.c sys/conf : param.c sys/kern : kern_sysctl.c sys/sys : kernel.h sysctl.h Log message: sysctl(2): add kern.utc_offset: successor to the DST/TIMEZONE options(4) The DST and TIMEZONE options(4) are incompatible with KARL, so we need some other way to compensate for an RTC running with a known offset. Enter kern.utc_offset, an offset in minutes East of UTC. TIMEZONE has always been minutes West, but this is inconsistent with how everyone else talks about timezones, hence the flip. TIMEZONE has the advantage of being compiled into the binary. Our new sysctl(2) has no such luck, so it needs to be set as early as possible in boot, from sysctl.conf(5), so we can correct the kernel clock from the RTC's local time to UTC before daemons like ntpd(8) and cron(8) start. To encourage this, kern.utc_offset is made immutable after the securelevel(7) is raised to 1. Prompted by yasuoka@. Discussed with deraadt@, kettenis@, yasuoka@. Additional testing by yasuoka@. ok deraadt@, yasuoka@