]> git.baikalelectronics.ru Git - kernel.git/commit
cifs: guard against hardlinking directories
authorJeff Layton <jlayton@redhat.com>
Tue, 11 May 2010 18:59:55 +0000 (14:59 -0400)
committerSteve French <sfrench@us.ibm.com>
Tue, 11 May 2010 20:57:50 +0000 (20:57 +0000)
commit070590ebe032461f7eb5a6d1997dcbdbd81eb913
treef40d66a255c4169b43079252a4c96868c097ddab
parent2b72a1aae286603f96b635a3c6c07a50ad542497
cifs: guard against hardlinking directories

When we made serverino the default, we trusted that the field sent by the
server in the "uniqueid" field was actually unique. It turns out that it
isn't reliably so.

Samba, in particular, will just put the st_ino in the uniqueid field when
unix extensions are enabled. When a share spans multiple filesystems, it's
quite possible that there will be collisions. This is a server bug, but
when the inodes in question are a directory (as is often the case) and
there is a collision with the root inode of the mount, the result is a
kernel panic on umount.

Fix this by checking explicitly for directory inodes with the same
uniqueid. If that is the case, then we can assume that using server inode
numbers will be a problem and that they should be disabled.

Fixes Samba bugzilla 7407

Signed-off-by: Jeff Layton <jlayton@redhat.com>
CC: Stable <stable@kernel.org>
Reviewed-and-Tested-by: Suresh Jayaraman <sjayaraman@suse.de>
Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/cifsglob.h
fs/cifs/inode.c