Permissão negada no arquivo de propriedade

1

Estou com problemas para definir permissões para um usuário específico.

Eu tenho um diretório /srv/git/ no qual estou tentando criar um subdiretório test contendo um arquivo testfile (de propriedade de www:www-data ). testfile só deve ser legível e gravável por usuário e grupo e mais ninguém.

[root@bartplatak ~]# cd /srv/git
[root@bartplatak git]# mkdir test && touch test/testfile
[root@bartplatak git]# chown -R www:www-data test
[root@bartplatak git]# chmod o= test/testfile
[root@bartplatak git]# chmod -R ug=rw test
[root@bartplatak git]# sync
[root@bartplatak git]# su www

No entanto, por algum motivo desconhecido, não consigo cd no diretório (e a listagem mostra informações muito incompletas)

bash-4.1$ pwd
/srv/git

bash-4.1$ ls -la test
ls: cannot access test/.: Permission denied
ls: cannot access test/testfile: Permission denied
ls: cannot access test/..: Permission denied
total 0
d????????? ? ? ? ?            ? .
d????????? ? ? ? ?            ? ..
-????????? ? ? ? ?            ? testfile

bash-4.1$ cd test
bash: cd: test: Permission denied

O que me parece estranho é o fato de que .. mostra informações incompletas apesar de serem acessíveis ( drwxr-xr-x 6 root root 4096 Mar 1 19:02 . ).

EDITAR : A máquina em que estou executando isso é um VPS com CentOS release 6.5 (Final) .

Linux bartplatak.com 2.6.32-042stab078.28 #1 SMP Mon Jul 8 10:17:22 MSK 2013 x86_64 x86_64 x86_64 GNU/Linux

SELinux é (até onde eu posso ver) desativado

[root@bartplatak ~]# sestatus 
SELinux status:                 disabled

As permissões no diretório (e nos pais) são definidas como

drwxr-xr-x 6 root root     4096 Mar  1 19:02 /
drwxr-xr-x 5 root root     4096 Mar  1 14:16 /srv
drwxr-xr-x 6 root root     4096 Mar  1 19:02 /srv/git
drw-rw-r-x 2 www  www-data 4096 Mar  1 19:02 /srv/git/test
-rw-rw---- 1 www  www-data    0 Mar  1 19:02 /srv/git/test/testfile

[root@bartplatak git]# stat /srv/git/test
  File: '/srv/git/test'
  Size: 4096        Blocks: 8          IO Block: 4096   directory
Device: 5ae0b691h/1524676241d   Inode: 404068      Links: 2
Access: (0665/drw-rw-r-x)  Uid: (  497/     www)   Gid: (  496/www-data)


[root@bartplatak git]# stat /srv/git/test/testfile
  File: '/srv/git/test/testfile'
  Size: 0           Blocks: 0          IO Block: 4096   regular empty file
Device: 5ae0b691h/1524676241d   Inode: 404071      Links: 1
Access: (0660/-rw-rw----)  Uid: (  497/     www)   Gid: (  496/www-data)

Depois de su www , id mostra uid=497(www) gid=497(www) groups=497(www),496(www-data)

    
por Bart Platak 02.03.2014 / 01:10

1 resposta

8

O problema óbvio é que /srv/git/test não tem o executável x bit definido para proprietário e grupo. Assim, não é possível percorrer o diretório .

Resolva o problema com:

chmod ug+x /srv/git/test
    
por 02.03.2014 / 02:17