Multiple commands fail with privilege errors:
- The Copy command fails with the error Permission denied.
Example:
# ls -al test.comp
-rw-r-r-- 1 root root 10485760 May 25 14:34 test.comp
# cp test.comp test2.comp
cp: cannot open "rest.comp" for reading: Permission denied
#
In this example, the read permission is given to everybody; however, even the Root user gets a permission error.
- Other commands also fail. For example, the Strace command fails with the error EACCESS error.
Example:
# file test.comp
test.comp: writable, regular file, no read permission
The Strace command (Systemcall trace tool) shows open (2) system call returns EACCESS error.
# strace file test.comp
....
stat("test.comp", {st_mode=S_IFREG|0644, st_size=10485760, ...}) = 0
open("test.comp",O_RDONLY) = -1 EACCES (Permission denied)
This problem does not occur when the On-Access Scan feature is disabled.