Stat opens can have fsp->fd == -1 and will have a share entry. Ensure
authorJeremy Allison <jra@samba.org>
Thu, 22 May 2003 20:31:37 +0000 (20:31 +0000)
committerJeremy Allison <jra@samba.org>
Thu, 22 May 2003 20:31:37 +0000 (20:31 +0000)
that file_find_dif will find them. Fixes a core dump in smbd/open.c.
Jeremy.
(This used to be commit 0811acb9579007032b54daa90b2666ef07c24624)

source3/smbd/files.c

index d926718c5d326581923929a6b62cb6ee09ec3b17..b9b27ad5ff921fe1ca2bd587db59c2ca7880d310 100644 (file)
@@ -231,13 +231,21 @@ files_struct *file_find_dif(SMB_DEV_T dev, SMB_INO_T inode, unsigned long file_i
        files_struct *fsp;
 
        for (fsp=Files;fsp;fsp=fsp->next,count++) {
-               if (fsp->fd != -1 &&
-                   fsp->dev == dev && 
+               /* We can have a fsp->fd == -1 here as it could be a stat open. */
+               if (fsp->dev == dev && 
                    fsp->inode == inode &&
                    fsp->file_id == file_id ) {
                        if (count > 10) {
                                DLIST_PROMOTE(Files, fsp);
                        }
+                       /* Paranoia check. */
+                       if (fsp->fd == -1 && fsp->oplock_type != NO_OPLOCK) {
+                               DEBUG(0,("file_find_dif: file %s dev = %x, inode = %.0f, file_id = %u \
+oplock_type = %u is a stat open with oplock type !\n", fsp->fsp_name, (unsigned int)fsp->dev,
+                                               (double)fsp->inode, (unsigned int)fsp->file_id,
+                                               (unsigned int)fsp->oplock_type ));
+                               smb_panic("file_find_dif\n");
+                       }
                        return fsp;
                }
        }