项目文件夹

文件
Alezander9 8dc728598e fix(ipc): set umask 0077 around AF_UNIX bind to avoid chmod TOCTOU
Previously start_unix_server() would bind() and listen() with mode
derived from the process umask before os.chmod(0o600) ran, leaving a
brief window where the socket's mode reflected umask. Setting umask
0o077 around the bind makes the socket land at 0600 directly, removing
the window.

Refs #298
2026-05-05 23:54:47 -07:00
..