From: zn@... Date: 2019-07-14T23:59:05+00:00 Subject: [ruby-core:93769] [Ruby master Bug#16002] File.writable?('/tmp/file') returns true even if it's not writable on Linux 4.19+ Issue #16002 has been updated by znz (Kazuhiro NISHIYAMA). I think checking permission before writing should be avoided. It causes . ---------------------------------------- Bug #16002: File.writable?('/tmp/file') returns true even if it's not writable on Linux 4.19+ https://bugs.ruby-lang.org/issues/16002#change-79412 * Author: SouravGoswami (Sourav Goswami) * Status: Feedback * Priority: Normal * Assignee: * Target version: * ruby -v: ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-linux] * Backport: 2.5: UNKNOWN, 2.6: UNKNOWN ---------------------------------------- Well, on Linux Kernel 4.19+ the fs.protected_regular and fs.protected_fifos sysctls were introduced in order to make some data spoofing attacks harder. https://github.com/systemd/systemd/blob/03b6fa0c5b51b0d39334ff6ba183a3391443bcf6/NEWS#L53 If it's enabled (and it's true by default), then if you: 1. cd /tmp 2. touch file 3. chmod 666 file # Switch to any user, but let's use root for example 4. su root 5. irb In irb: ``` ���������[root::archlinux]���[/tmp] ��������������� irb irb(main):001:0> File.writable?('ruby.rb') => true irb(main):002:0> File.stat('ruby.rb') => # irb(main):003:0> File.write('ruby.rb', '#!/usr/bin/ruby -w') Traceback (most recent call last): 3: from /root/.irb:351:in `
' 2: from (irb):3 1: from (irb):3:in `write' Errno::EACCES (Permission denied @ rb_sysopen - ruby.rb) irb(main):004:0> ``` Screenshots: https://imgur.com/tB4T5Jl https://imgur.com/hzc5s27 Here's a stackoverflow post: https://stackoverflow.com/a/57030460/11089758 And the same behaviour is seen in editors like nano, vi, atom, geany, code, mousepad editors. Now as Ruby's File.writable?(str) checks for the permissions, it returns true. The problem can be solved with `sysctl fs.protected_regular=0`. But the issue is that File.writable?('/tmp/file') should return false if fs.protected_regular is 1 and the user is not the owner? of the file if the directory is /tmp/ on Linux. -- https://bugs.ruby-lang.org/ Unsubscribe: