From 72c32f2902886bf205ae7ea412909c41dda1a95e Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 5 Apr 2009 19:15:53 -0700 Subject: Enforce umask 0000 with UNIX domain sockets I can't think of a good reason to ever use restrictive permissions with UNIX domain sockets for an HTTP server. Since some folks run their nginx on port 80 and then have it drop permissions, we need to ensure our socket is readable and writable across the board. The reason I'm respecting the existing umask at all (instead of using 0000 across the board like most daemonizers) is because the admin may want to restrict access (especially write access) to log files. --- test/unit/test_socket_helper.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test') diff --git a/test/unit/test_socket_helper.rb b/test/unit/test_socket_helper.rb index 23fa44c..79e1cdc 100644 --- a/test/unit/test_socket_helper.rb +++ b/test/unit/test_socket_helper.rb @@ -42,12 +42,18 @@ class TestSocketHelper < Test::Unit::TestCase end def test_bind_listen_unix + old_umask = File.umask(0777) tmp = Tempfile.new 'unix.sock' @unix_listener_path = tmp.path File.unlink(@unix_listener_path) @unix_listener = bind_listen(@unix_listener_path) assert Socket === @unix_listener assert_equal @unix_listener_path, sock_name(@unix_listener) + assert File.readable?(@unix_listener_path), "not readable" + assert File.writable?(@unix_listener_path), "not writable" + assert_equal 0777, File.umask + ensure + File.umask(old_umask) end def test_bind_listen_unix_idempotent -- cgit v1.2.3-24-ge0c7