Why can I 'touch' a write-protected file? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T16:37:09Z http://stackoverflow.com/feeds/question/990648 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/990648/why-can-i-touch-a-write-protected-file 5 Why can I 'touch' a write-protected file? Frank 2009-06-13T13:15:43Z 2009-06-13T18:00:31Z <p>Why is it possible to <code>touch</code> a write-protected file? </p> <p>Shouldn't the following give an error?</p> <pre><code>$ touch test.txt $ chmod a-w test.txt $ ls -l test.txt -r--r--r-- 1 name group 0 Jun 13 09:14 test.txt $ touch test.txt &amp;&amp; echo OK OK $ ls -l test.txt -r--r--r-- 1 name group 0 Jun 13 09:15 test.txt </code></pre> <p>Does <code>touch</code> change permissions, touch the file, and change permissions back? Why would it do that?</p> <p>Given this behavior, if I really want to protect a file so that I (my user) will never (unintentionally) change, remove or change its timestamp in the future -- how can I do it? </p> <p>(Sorry, not strictly programming-related, but slightly, and probably of interest to many programmers.)</p> http://stackoverflow.com/questions/990648/why-can-i-touch-a-write-protected-file/990652#990652 4 Answer by jrockway for Why can I 'touch' a write-protected file? jrockway 2009-06-13T13:18:30Z 2009-06-13T13:18:30Z <p>From the <code>touch</code> (coreutils) documentation:</p> <blockquote> <p>If changing both the access and modification times to the current time, `touch' can change the timestamps for files that the user running it does not own but has write permission for. Otherwise, the user must own the files.</p> </blockquote> http://stackoverflow.com/questions/990648/why-can-i-touch-a-write-protected-file/990654#990654 7 Answer by ojblass for Why can I 'touch' a write-protected file? ojblass 2009-06-13T13:19:15Z 2009-06-13T18:00:31Z <p>The execution permissions of the directory that the file contains dictates the ability to delete or modify the inode information for the entry in the directory that is associated with the file. </p> <p>As the comment below indicates I have glossed over the technical reason but instead offered a reasoning why the behavior might not be as expected. Since you can execute in the directory there are a number of things you can do to tinker with the file and I am going to leave it at that.</p> <p>If you want to stop anyone but root from modifying a file the best method is to use the chattr +i filename on the file. Even root will not be able to perform any actions on it without running chattr -i on it. This applies to Linux so YMMV.</p> http://stackoverflow.com/questions/990648/why-can-i-touch-a-write-protected-file/990702#990702 4 Answer by Tom Feiner for Why can I 'touch' a write-protected file? Tom Feiner 2009-06-13T13:47:07Z 2009-06-13T14:06:40Z <p>Here's the relevant output from : strace "touch test.txt"</p> <pre><code>open("test.txt", O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_LARGEFILE, 0666) = -1 EACCES (Permission denied) futimesat(AT_FDCWD, "test.txt", NULL) = 0 </code></pre> <p>It indeed gets a "Permission denied error" on the <a href="http://linux.die.net/man/2/open" rel="nofollow">open(2)</a> system call regarding EACCES. See relevant section in <a href="http://linux.die.net/man/2/utimes" rel="nofollow">utimes(2)</a> man page.</p> <p>However, it does succeed in updating the timestamp using the <a href="http://linux.die.net/man/2/futimesat" rel="nofollow">futimesat(2)</a> system call.</p> <p>As others have indicated, it looks like the directory permissions hold the rights to update access/moficiation timestamps.</p> <p>You can, however change the attribute of a file to immutable using:</p> <pre><code>chattr +i test.txt </code></pre> <p>Note: Only root can do this, and it's a very harsh way to disable access to files. But in extreme cases, it can be useful. In addition, this is an ext2/3/4 feature, not available on other filesystems as far as I know.</p> http://stackoverflow.com/questions/990648/why-can-i-touch-a-write-protected-file/990893#990893 3 Answer by mark4o for Why can I 'touch' a write-protected file? mark4o 2009-06-13T15:42:38Z 2009-06-13T15:42:38Z <p>You can update the modification time if you own the file, regardless of write permission. (It is not related to any permission on the directory.)</p> <p>From POSIX.1-2008:</p> <blockquote> <p>Only a process with the effective user ID equal to the user ID of the file, or with write access to the file, or with appropriate privileges may use <code>futimens()</code> or <code>utimensat()</code> with a null pointer as the times argument or with both <code>tv_nsec</code> fields set to the special value <code>UTIME_NOW</code>. Only a process with the effective user ID equal to the user ID of the file or with appropriate privileges may use <code>futimens()</code> or <code>utimensat()</code> with a non-null times argument that does not have both <code>tv_nsec</code> fields set to <code>UTIME_NOW</code> and does not have both <code>tv_nsec</code> fields set to <code>UTIME_OMIT</code>. If both <code>tv_nsec</code> fields are set to <code>UTIME_OMIT</code>, no ownership or permissions check shall be performed for the file, but other error conditions may still be detected (including [EACCES] errors related to the path prefix).</p> </blockquote>