removing write permission does not prevent root from writing to the file

32

10

I just noticed on my Ubuntu machine (ext3 filesystem) that removing write permissions from a file does not keep root from writing to it.

Is this a general rule of UNIX file permissions? Or specific to Ubuntu? Or a misconfiguration on my machine?

# touch abc
# chmod ugo-w abc
# python
Python 2.6.4 (r264:75706, Dec  7 2009, 18:45:15) 
[GCC 4.4.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> open('abc','w').write('AAA\n')
>>> 
# cat abc
AAA

Writing to the file fails (as expected) if I do this from my normal user account.

  1. Is this normal behavior?

  2. Is there a way to prevent root from accidentally writing to a file? (Preferably using normal filesystem mechanisms, not AppArmor, etc.)

Please teach me about something that I most definitely don't understand.

NOTE: I understand that root has total control over the system and can, eg, change the permissions on any file. My question is whether currently set permissions are enforced on code running as root. The idea is the root user preventing her/himself from accidentally writing to a file.

NOTE: I also understand that one should not be logged in as root for normal operations. I just noticed this behavior and am asking you about it.

laramichaels

Posted 2010-02-03T00:11:29.810

Reputation: 679

Answers

47

1) This is a normal behaviour. root has rw access on all files at all times.

2) You can protect a file even from root (not deliberate action, but accidental, anyway) by using

chattr +i filename.ext

That is "change attributes add immutable". To remove the protection:

chattr -i filename.ext

have a look at man chattr for more info

brice

Posted 2010-02-03T00:11:29.810

Reputation: 2 206

@brice: many thanks. directly addresses my question. didn't know about chattr. – laramichaels – 2010-02-03T00:31:09.937

my system seems to need root access to run chattr. is there a user-mode means of setting such attributes? – quack quixote – 2010-02-03T00:34:40.087

1... although it is a great answer to the question, "can root protect a file so well even He cannot delete it"! – quack quixote – 2010-02-03T00:36:11.737

@~quack: well, the experience I describe above works as expected when running as a non-root user. Ie, just use chmod -w on the file to avoid overwriting its contents and chmod -w on the dir that contains it to avoid unlinking the file. Hope that helps! – laramichaels – 2010-02-03T01:18:57.940

4More accurately (in the case of Linux, anyway), root has the CAP_DAC_OVERRIDE capability allowing him to ignore ACLs and permissions. – user1686 – 2010-02-03T17:38:03.790

1FYI, the equivalent of this on OS X is sudo chflags <s|u>chg <file> to make it immutable for the system or user, respectively, and sudo chflags no<s|u>chg <file> for unsetting the immutable flag for the system or user, respectively. – GDP2 – 2016-09-21T22:31:41.403

3

  1. Yes, this is normal. Root is god.

  2. Yes, there are ways to prevent root from overwriting files.

    • Set the immutable bit with chattr (+i sets, -i unsets). Requires root access, works only on ext2/ext3 (presumably ext4 too), but is otherwise practical.
    • Don't run apps as root. No root privs, no overwriting files. Use sudo to access system functions.
    • Unmount the filesystem. No mounted fs, no overwriting files. [*]
    • Turn off computer. No electricity, no overwriting files.

These methods follow logically from #1. As you can see, the last two methods are generally not useful, in the same way that protecting Windows against viruses by unplugging the network is generally not useful. This is why root is dangerous.[+]

[*] Discounting the possibility of "accidentally" writing directly to the block device, of course. Yes, root can do that. Yes, you can prevent that: disconnect the device.

[+] This is also where those BOfH myths come from. They're not all myths.

quack quixote

Posted 2010-02-03T00:11:29.810

Reputation: 37 382

@~quack: brice's method is way more practical than the three you list. : ) – laramichaels – 2010-02-03T00:36:08.977

@~quack: my question made it clear I understand the issues with running commands as root. – laramichaels – 2010-02-03T00:36:46.603

3

You can also restrict file access for the root user, by using Linux kernel "Capabilities": http://www.securityfocus.com/infocus/1400

There is also the possibility of using SE-Linux or some other kernel patch to make some files immutable even to root.

Rob

Posted 2010-02-03T00:11:29.810

Reputation:

0

I think that as long as root is the superuser, and he can do anything, you cannot remove him any permission, also if you are the root. It is supposed to be the will of the root to prevent himself of doing or not an operation (such as write into a file, or open an application).

So no, chances are you would only deactivate the root account, to prevent a bad use of it.

Regards

[note to self: ye shall be humble...maybe ye are wrong]

dag729

Posted 2010-02-03T00:11:29.810

Reputation: 1 894