sábado, 24 de diciembre de 2022

Prevent Files And Folders From Accidental Deletion Or Modification In Linux Using Chattr

 


By default, Chattr comes pre-installed in many Linux operating systems. So let us not bother about installation.

The default syntax of chattr command is:

chattr [operator] [switch] [filename]

chattr has the following operators:

  • The operator '+' causes the selected attributes to be added to the existing attributes of the files.
  • The operator '-' causes them to be removed.
  • The operator '=' causes them to be the only attributes that the files have.

Chattr has different attributes namely - aAcCdDeijsStTu. Each letter applies a particular attributes to a file as listed below.

  • a - append only,
  • A - no atime updates,
  • c - compressed,
  • C - no copy on write,
  • d - no dump,
  • D - synchronous directory updates,
  • e - extent format,
  • i - immutable,
  • j - data journalling,
  • P - project hierarchy,
  • s - secure deletion,
  • S - synchronous updates,
  • t - no tail-merging,
  • T - top of directory hierarchy,
  • u - undeletable.

In this tutorial, we are going to discuss the usage of two attributes, namely ai which are used to prevent the deletion of files and folders.

Prevent files from accidental deletion in Linux

Let me create a file called file.txt in my current directory.

$ touch file.txt

Or,

$ > file.txt

Now, I am going to apply "i" attribute which makes the file immutable. It means - you can't delete, modify the file, even if you're the file owner and the root user.

$ sudo chattr +i file.txt

You can check the file attributes using command:

$ lsattr file.txt

Sample output:

----i---------e---- file.txt
Make files immutable using chattr command in Linux
Make files immutable using chattr command in Linux

Now, try to remove the file either as a normal user or with sudo privileges.

$ rm file.txt

Sample output:

rm: cannot remove 'file.txt': Operation not permitted

Let me try with sudo command:

$ sudo rm file.txt

Sample output:

rm: cannot remove 'file.txt': Operation not permitted

Let us try to append some contents in the text file.

$ echo 'Hello World!' >> file.txt

Sample output:

bash: file.txt: Operation not permitted
Prevent files from accidental deletion in Linux Using Chattr
Prevent files from accidental deletion in Linux Using Chattr

Even if you try remove the file from your file manager in GUI mode, you can't delete it.

Prevent files from removal in Linux
Prevent files from removal in Linux

As you noticed in the above outputs, We can't delete or modify the file even as root user.

To revoke attributes, just use "-i" switch as shown below.

$ sudo chattr -i file.txt

Now, the immutable attribute has been removed. You can now modify or delete the file as you wish.

$ echo 'Hello World!' >> file.txt
$ cat file.txt
Hello World!
$ rm file.txt
Remove immutable file attributes using chattr
Remove immutable file attributes using chattr

Similarly, you can restrict the directories from accidental deletion or modification as described in the next section.

Prevent folders from accidental deletion and modification in Linux

Create a directory called dir1 and a file called file.txt inside this directory.

$ mkdir dir1 && touch dir1/file.txt

Now, make this directory and its contents (file.txt) immutable using command:

$ sudo chattr -R +i dir1

Where,

  • -R - will make the dir1 and its contents immutable recursively.
  • +i - makes the directory immutable.

Now, try to delete the directory either as normal user or using sudo user.

$ rm -fr dir1
$ sudo rm -fr dir1

You will get the following output:

rm: cannot remove 'dir1/file.txt': Operation not permitted

Try to append some contents in the file using "echo" command. Did you make it? Of course, you couldn't!

Prevent folders from accidental deletion and modification in Linux
Prevent folders from accidental deletion and modification in Linux

To revoke the attributes back, run:

$ sudo chattr -R -i dir1

Now, you can delete or modify the contents of this directory as usual.

Prevent files and folders from accidental deletion, but allow append operation in Linux

We know now how to prevent files and folders from accidental deletion and modification. Next, we are going to prevent files and folders from deletion, but allow the file for writing in append mode only. That means you can't edit, modify the existing data in the file, rename the file, and delete the file. You can only open the file for writing in append mode.

To set append mode attribution to a file/directory, we do the following:

For files:

$ sudo chattr +a file.txt

For directories: 

$ sudo chattr -R +a dir1

A file/folder with the 'a' attribute set can only be open in append mode for writing.

Add some contents to the file(s) to check whether it works or not.

$ echo 'Hello World!' >> file.txt
$ echo 'Hello World!' >> dir1/file.txt

Check the file contents using cat command:

$ cat file.txt
$ cat dir1/file.txt

Sample output:

Hello World!
Allow append operation in Linux using chattr command
Allow append operation in Linux using chattr command

As you can see, we can be able able to append the contents. It means we can modify the files and folders.

Let us try to delete the file or folder now.

$ rm file.txt

Output:

rm: cannot remove 'file.txt': Operation not permitted

Let us try to delete the folder:

$ rm -fr dir1/

Or try with sudo:

$ sudo rm -fr dir1/

Sample output:

rm: cannot remove 'dir1/file.txt': Operation not permitted
Prevent files and folders from accidental deletion, but allow append operation in Linux
Prevent files and folders from accidental deletion, but allow append operation in Linux

To remove the attributes, run the following commands:

For files:

$ sudo chattr -R -a file.txt

For directories: 

$ sudo chattr -R -a dir1/

Now, you can delete or modify the files and folders as usual.

For more details, refer the man pages.

$ man chattr

No hay comentarios:

Publicar un comentario