1998-08-17 17:11:34 +04:00
/*
Unix SMB / Netbios implementation .
Version 1.9 .
file opening and share modes
Copyright ( C ) Andrew Tridgell 1992 - 1998
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# include "includes.h"
extern int DEBUGLEVEL ;
2001-01-23 04:52:30 +03:00
extern userdom_struct current_user_info ;
1998-09-23 05:48:45 +04:00
extern uint16 global_oplock_port ;
1999-12-13 16:27:58 +03:00
extern BOOL global_client_failed_oplock_break ;
1998-08-17 17:11:34 +04:00
/****************************************************************************
2000-04-12 01:38:45 +04:00
fd support routines - attempt to do a dos_open .
1998-08-17 17:11:34 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-04-12 01:38:45 +04:00
2000-04-10 17:05:23 +04:00
static int fd_open ( struct connection_struct * conn , char * fname ,
int flags , mode_t mode )
1998-08-17 17:11:34 +04:00
{
2000-06-15 18:15:48 +04:00
int fd ;
# ifdef O_NONBLOCK
flags | = O_NONBLOCK ;
# endif
2000-10-06 07:21:49 +04:00
fd = conn - > vfs_ops . open ( conn , dos_to_unix ( fname , False ) , flags , mode ) ;
1998-08-17 17:11:34 +04:00
2000-04-10 17:05:23 +04:00
/* Fix for files ending in '.' */
if ( ( fd = = - 1 ) & & ( errno = = ENOENT ) & &
( strchr ( fname , ' . ' ) = = NULL ) ) {
pstrcat ( fname , " . " ) ;
2000-10-06 07:21:49 +04:00
fd = conn - > vfs_ops . open ( conn , dos_to_unix ( fname , False ) , flags , mode ) ;
1999-12-13 16:27:58 +03:00
}
2001-04-15 00:47:30 +04:00
DEBUG ( 10 , ( " fd_open: name %s, flags = 0%o mode = 0%o, fd = %d. %s \n " , fname ,
flags , ( int ) mode , fd , ( fd = = - 1 ) ? strerror ( errno ) : " " ) ) ;
2000-04-12 01:38:45 +04:00
2000-04-10 17:05:23 +04:00
return fd ;
1998-08-17 17:11:34 +04:00
}
/****************************************************************************
2000-04-12 01:38:45 +04:00
Close the file associated with a fsp .
1998-08-17 17:11:34 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-04-12 01:38:45 +04:00
int fd_close ( struct connection_struct * conn , files_struct * fsp )
1998-08-17 17:11:34 +04:00
{
2001-04-14 00:49:11 +04:00
if ( fsp - > fd = = - 1 )
return - 1 ;
2000-04-28 04:39:23 +04:00
return fd_close_posix ( conn , fsp ) ;
1998-08-17 17:11:34 +04:00
}
2000-04-10 17:05:23 +04:00
1998-08-17 17:11:34 +04:00
/****************************************************************************
2000-04-12 01:38:45 +04:00
Check a filename for the pipe string .
1998-08-17 17:11:34 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
1998-08-17 17:11:34 +04:00
static void check_for_pipe ( char * fname )
{
/* special case of pipe opens */
char s [ 10 ] ;
1999-12-13 16:27:58 +03:00
StrnCpy ( s , fname , sizeof ( s ) - 1 ) ;
1998-08-17 17:11:34 +04:00
strlower ( s ) ;
if ( strstr ( s , " pipe/ " ) ) {
DEBUG ( 3 , ( " Rejecting named pipe open for %s \n " , fname ) ) ;
unix_ERR_class = ERRSRV ;
unix_ERR_code = ERRaccess ;
}
}
/****************************************************************************
2000-04-12 01:38:45 +04:00
Open a file .
1998-08-17 17:11:34 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2000-04-22 04:33:16 +04:00
static BOOL open_file ( files_struct * fsp , connection_struct * conn ,
2000-10-19 06:58:24 +04:00
char * fname1 , SMB_STRUCT_STAT * psbuf , int flags , mode_t mode )
1998-08-17 17:11:34 +04:00
{
2000-04-10 17:05:23 +04:00
extern struct current_user current_user ;
pstring fname ;
int accmode = ( flags & O_ACCMODE ) ;
2001-04-16 04:02:29 +04:00
int local_flags = flags ;
1998-08-17 17:11:34 +04:00
2000-04-24 23:23:51 +04:00
fsp - > fd = - 1 ;
2000-04-10 17:05:23 +04:00
fsp - > oplock_type = NO_OPLOCK ;
errno = EPERM ;
1998-08-17 17:11:34 +04:00
2000-04-10 17:05:23 +04:00
pstrcpy ( fname , fname1 ) ;
1998-08-17 17:11:34 +04:00
2000-04-12 01:38:45 +04:00
/* Check permissions */
1998-08-17 17:11:34 +04:00
2000-04-10 17:05:23 +04:00
/*
* This code was changed after seeing a client open request
* containing the open mode of ( DENY_WRITE / read - only ) with
* the ' create if not exist ' bit set . The previous code
* would fail to open the file read only on a read - only share
* as it was checking the flags parameter directly against O_RDONLY ,
* this was failing as the flags parameter was set to O_RDONLY | O_CREAT .
* JRA .
*/
1998-08-17 17:11:34 +04:00
2000-04-10 17:05:23 +04:00
if ( ! CAN_WRITE ( conn ) ) {
/* It's a read-only share - fail if we wanted to write. */
if ( accmode ! = O_RDONLY ) {
DEBUG ( 3 , ( " Permission denied opening %s \n " , fname ) ) ;
check_for_pipe ( fname ) ;
2000-04-22 04:33:16 +04:00
return False ;
2000-04-10 17:05:23 +04:00
} else if ( flags & O_CREAT ) {
/* We don't want to write - but we must make sure that O_CREAT
doesn ' t create the file if we have write access into the
directory .
*/
flags & = ~ O_CREAT ;
}
}
1998-08-17 17:11:34 +04:00
2001-04-16 04:02:29 +04:00
/*
* This little piece of insanity is inspired by the
* fact that an NT client can open a file for O_RDONLY ,
* but set the create disposition to FILE_EXISTS_TRUNCATE .
* If the client * can * write to the file , then it expects to
* truncate the file , even though it is opening for readonly .
* Quicken uses this stupid trick in backup file creation . . .
* Thanks * greatly * to " David W. Chapman Jr. " < dwcjr @ inethouston . net >
* for helping track this one down . It didn ' t bite us in 2.0 . x
* as we always opened files read - write in that release . JRA .
*/
if ( ( accmode = = O_RDONLY ) & & ( ( flags & O_TRUNC ) = = O_TRUNC ) )
local_flags = ( flags & ~ O_ACCMODE ) | O_RDWR ;
2001-04-16 04:34:03 +04:00
/*
* We can ' t actually truncate here as the file may be locked .
* open_file_shared will take care of the truncate later . JRA .
*/
local_flags & = ~ O_TRUNC ;
2000-04-10 17:05:23 +04:00
/* actually do the open */
2001-04-16 04:02:29 +04:00
fsp - > fd = fd_open ( conn , fname , local_flags , mode ) ;
1998-08-17 17:11:34 +04:00
2000-04-12 01:38:45 +04:00
if ( fsp - > fd = = - 1 ) {
2001-04-16 04:34:03 +04:00
DEBUG ( 3 , ( " Error opening file %s (%s) (local_flags=%d) (flags=%d) \n " ,
fname , strerror ( errno ) , local_flags , flags ) ) ;
2000-04-10 17:05:23 +04:00
check_for_pipe ( fname ) ;
2000-04-22 04:33:16 +04:00
return False ;
2000-04-10 17:05:23 +04:00
}
1998-08-17 17:11:34 +04:00
2000-10-19 06:58:24 +04:00
if ( ! VALID_STAT ( * psbuf ) ) {
if ( vfs_fstat ( fsp , fsp - > fd , psbuf ) = = - 1 ) {
DEBUG ( 0 , ( " Error doing fstat on open file %s (%s) \n " , fname , strerror ( errno ) ) ) ;
fd_close ( conn , fsp ) ;
return False ;
}
2000-05-12 04:11:49 +04:00
}
1998-08-17 17:11:34 +04:00
2000-04-12 01:38:45 +04:00
/*
* POSIX allows read - only opens of directories . We don ' t
* want to do this ( we use a different code path for this )
* so catch a directory open and return an EISDIR . JRA .
*/
2000-10-19 06:58:24 +04:00
if ( S_ISDIR ( psbuf - > st_mode ) ) {
2000-04-12 01:38:45 +04:00
fd_close ( conn , fsp ) ;
errno = EISDIR ;
2000-04-22 04:33:16 +04:00
return False ;
2000-04-12 01:38:45 +04:00
}
2000-10-19 06:58:24 +04:00
fsp - > mode = psbuf - > st_mode ;
fsp - > inode = psbuf - > st_ino ;
fsp - > dev = psbuf - > st_dev ;
2000-04-10 17:05:23 +04:00
GetTimeOfDay ( & fsp - > open_time ) ;
fsp - > vuid = current_user . vuid ;
2000-10-19 06:58:24 +04:00
fsp - > size = psbuf - > st_size ;
2000-04-10 17:05:23 +04:00
fsp - > pos = - 1 ;
fsp - > can_lock = True ;
fsp - > can_read = ( ( flags & O_WRONLY ) = = 0 ) ;
fsp - > can_write = ( ( flags & ( O_WRONLY | O_RDWR ) ) ! = 0 ) ;
fsp - > share_mode = 0 ;
fsp - > print_file = False ;
fsp - > modified = False ;
fsp - > oplock_type = NO_OPLOCK ;
fsp - > sent_oplock_break = NO_BREAK_SENT ;
fsp - > is_directory = False ;
fsp - > stat_open = False ;
fsp - > directory_delete_on_close = False ;
fsp - > conn = conn ;
/*
* Note that the file name here is the * untranslated * name
* ie . it is still in the DOS codepage sent from the client .
* All use of this filename will pass though the sys_xxxx
* functions which will do the dos_to_unix translation before
* mapping into a UNIX filename . JRA .
*/
string_set ( & fsp - > fsp_name , fname ) ;
fsp - > wbmpx_ptr = NULL ;
fsp - > wcp = NULL ; /* Write cache pointer. */
1998-08-17 17:11:34 +04:00
2000-04-10 17:05:23 +04:00
DEBUG ( 2 , ( " %s opened file %s read=%s write=%s (numopen=%d) \n " ,
2001-01-23 04:52:30 +03:00
* current_user_info . smb_name ? current_user_info . smb_name : conn - > user , fsp - > fsp_name ,
2000-04-10 17:05:23 +04:00
BOOLSTR ( fsp - > can_read ) , BOOLSTR ( fsp - > can_write ) ,
2000-04-22 04:33:16 +04:00
conn - > num_files_open + 1 ) ) ;
2001-01-25 00:54:44 +03:00
/*
* Take care of inherited ACLs on created files . JRA .
*/
2001-03-26 23:18:06 +04:00
if ( ( flags & O_CREAT ) & & ( conn - > vfs_ops . fchmod_acl ! = NULL ) ) {
int saved_errno = errno ; /* We might get ENOSYS in the next call.. */
if ( conn - > vfs_ops . fchmod_acl ( fsp , fsp - > fd , mode ) = = - 1 & & errno = = ENOSYS )
errno = saved_errno ; /* Ignore ENOSYS */
}
2000-04-22 04:33:16 +04:00
return True ;
1998-09-26 03:40:49 +04:00
}
1998-08-17 17:11:34 +04:00
/****************************************************************************
C . Hoch 11 / 22 / 95
Helper for open_file_shared .
Truncate a file after checking locking ; close file if locked .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2000-04-22 04:33:16 +04:00
static int truncate_unless_locked ( struct connection_struct * conn , files_struct * fsp )
1998-08-17 17:11:34 +04:00
{
2000-04-22 04:33:16 +04:00
SMB_BIG_UINT mask = ( SMB_BIG_UINT ) - 1 ;
if ( is_locked ( fsp , fsp - > conn , mask , 0 , WRITE_LOCK ) ) {
errno = EACCES ;
unix_ERR_class = ERRDOS ;
unix_ERR_code = ERRlock ;
return - 1 ;
} else {
2000-10-06 07:21:49 +04:00
return conn - > vfs_ops . ftruncate ( fsp , fsp - > fd , 0 ) ;
1998-09-18 06:27:24 +04:00
}
1998-08-17 17:11:34 +04:00
}
2000-01-16 15:53:12 +03:00
/*******************************************************************
return True if the filename is one of the special executable types
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-04-22 04:33:16 +04:00
static BOOL is_executable ( const char * fname )
2000-01-16 15:53:12 +03:00
{
if ( ( fname = strrchr ( fname , ' . ' ) ) ) {
if ( strequal ( fname , " .com " ) | |
strequal ( fname , " .dll " ) | |
strequal ( fname , " .exe " ) | |
strequal ( fname , " .sym " ) ) {
return True ;
}
}
return False ;
}
1998-09-05 09:07:05 +04:00
enum { AFAIL , AREAD , AWRITE , AALL } ;
/*******************************************************************
reproduce the share mode access table
2000-01-16 15:53:12 +03:00
this is horrendoously complex , and really can ' t be justified on any
rational grounds except that this is _exactly_ what NT does . See
the DENY1 and DENY2 tests in smbtorture for a comprehensive set of
test routines .
1998-09-05 09:07:05 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static int access_table ( int new_deny , int old_deny , int old_mode ,
2000-01-16 15:53:12 +03:00
BOOL same_pid , BOOL isexe )
1998-09-05 09:07:05 +04:00
{
2000-01-16 15:26:42 +03:00
if ( new_deny = = DENY_ALL | | old_deny = = DENY_ALL ) return ( AFAIL ) ;
2000-01-16 15:53:12 +03:00
if ( same_pid ) {
2000-01-16 16:17:05 +03:00
if ( isexe & & old_mode = = DOS_OPEN_RDONLY & &
2000-01-16 15:26:42 +03:00
old_deny = = DENY_DOS & & new_deny = = DENY_READ ) {
return AFAIL ;
}
2000-01-16 16:17:05 +03:00
if ( ! isexe & & old_mode = = DOS_OPEN_RDONLY & &
2000-01-16 15:26:42 +03:00
old_deny = = DENY_DOS & & new_deny = = DENY_DOS ) {
return AREAD ;
}
if ( new_deny = = DENY_FCB & & old_deny = = DENY_DOS ) {
if ( isexe ) return AFAIL ;
if ( old_mode = = DOS_OPEN_RDONLY ) return AFAIL ;
return AALL ;
}
2000-01-16 16:17:05 +03:00
if ( old_mode = = DOS_OPEN_RDONLY & & old_deny = = DENY_DOS ) {
2000-01-16 15:26:42 +03:00
if ( new_deny = = DENY_FCB | | new_deny = = DENY_READ ) {
if ( isexe ) return AREAD ;
return AFAIL ;
}
}
if ( old_deny = = DENY_FCB ) {
if ( new_deny = = DENY_DOS | | new_deny = = DENY_FCB ) return AALL ;
return AFAIL ;
}
}
if ( old_deny = = DENY_DOS | | new_deny = = DENY_DOS | |
old_deny = = DENY_FCB | | new_deny = = DENY_FCB ) {
if ( isexe ) {
2000-01-16 14:21:33 +03:00
if ( old_deny = = DENY_FCB | | new_deny = = DENY_FCB ) {
return AFAIL ;
}
if ( old_deny = = DENY_DOS ) {
if ( new_deny = = DENY_READ & &
( old_mode = = DOS_OPEN_RDONLY | |
old_mode = = DOS_OPEN_RDWR ) ) {
return AFAIL ;
}
if ( new_deny = = DENY_WRITE & &
( old_mode = = DOS_OPEN_WRONLY | |
old_mode = = DOS_OPEN_RDWR ) ) {
return AFAIL ;
}
return AALL ;
}
if ( old_deny = = DENY_NONE ) return AALL ;
if ( old_deny = = DENY_READ ) return AWRITE ;
if ( old_deny = = DENY_WRITE ) return AREAD ;
}
2000-01-16 15:26:42 +03:00
/* it isn't a exe, dll, sym or com file */
2000-01-16 15:53:12 +03:00
if ( old_deny = = new_deny & & same_pid )
2000-01-16 14:21:33 +03:00
return ( AALL ) ;
if ( old_deny = = DENY_READ | | new_deny = = DENY_READ ) return AFAIL ;
if ( old_mode = = DOS_OPEN_RDONLY ) return ( AREAD ) ;
return ( AFAIL ) ;
}
2000-01-16 15:26:42 +03:00
switch ( new_deny )
{
case DENY_WRITE :
if ( old_deny = = DENY_WRITE & & old_mode = = DOS_OPEN_RDONLY ) return ( AREAD ) ;
if ( old_deny = = DENY_READ & & old_mode = = DOS_OPEN_RDONLY ) return ( AWRITE ) ;
if ( old_deny = = DENY_NONE & & old_mode = = DOS_OPEN_RDONLY ) return ( AALL ) ;
return ( AFAIL ) ;
case DENY_READ :
if ( old_deny = = DENY_WRITE & & old_mode = = DOS_OPEN_WRONLY ) return ( AREAD ) ;
if ( old_deny = = DENY_READ & & old_mode = = DOS_OPEN_WRONLY ) return ( AWRITE ) ;
if ( old_deny = = DENY_NONE & & old_mode = = DOS_OPEN_WRONLY ) return ( AALL ) ;
return ( AFAIL ) ;
case DENY_NONE :
if ( old_deny = = DENY_WRITE ) return ( AREAD ) ;
if ( old_deny = = DENY_READ ) return ( AWRITE ) ;
if ( old_deny = = DENY_NONE ) return ( AALL ) ;
return ( AFAIL ) ;
}
return ( AFAIL ) ;
1998-09-05 09:07:05 +04:00
}
2000-01-16 15:53:12 +03:00
1998-09-05 09:07:05 +04:00
/****************************************************************************
check if we can open a file with a share mode
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
static int check_share_mode ( share_mode_entry * share , int share_mode ,
2000-04-22 04:33:16 +04:00
const char * fname , BOOL fcbopen , int * flags )
{
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
int deny_mode = GET_DENY_MODE ( share_mode ) ;
2000-04-22 04:33:16 +04:00
int old_open_mode = GET_OPEN_MODE ( share - > share_mode ) ;
int old_deny_mode = GET_DENY_MODE ( share - > share_mode ) ;
/*
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
* Don ' t allow any opens once the delete on close flag has been
2000-04-22 04:33:16 +04:00
* set .
*/
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
if ( GET_DELETE_ON_CLOSE_FLAG ( share - > share_mode ) ) {
2000-04-22 04:33:16 +04:00
DEBUG ( 5 , ( " check_share_mode: Failing open on file %s as delete on close flag is set. \n " ,
fname ) ) ;
unix_ERR_class = ERRDOS ;
unix_ERR_code = ERRnoaccess ;
return False ;
}
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
/*
* If delete access was requested and the existing share mode doesn ' t have
* ALLOW_SHARE_DELETE then deny .
*/
if ( GET_DELETE_ACCESS_REQUESTED ( share_mode ) & & ! GET_ALLOW_SHARE_DELETE ( share - > share_mode ) ) {
DEBUG ( 5 , ( " check_share_mode: Failing open on file %s as delete access requested and allow share delete not set. \n " ,
fname ) ) ;
unix_ERR_class = ERRDOS ;
unix_ERR_code = ERRbadshare ;
return False ;
}
/*
* The inverse of the above .
* If delete access was granted and the new share mode doesn ' t have
* ALLOW_SHARE_DELETE then deny .
*/
if ( GET_DELETE_ACCESS_REQUESTED ( share - > share_mode ) & & ! GET_ALLOW_SHARE_DELETE ( share_mode ) ) {
DEBUG ( 5 , ( " check_share_mode: Failing open on file %s as delete access granted and allow share delete not requested. \n " ,
fname ) ) ;
unix_ERR_class = ERRDOS ;
unix_ERR_code = ERRbadshare ;
return False ;
}
2000-04-22 04:33:16 +04:00
{
int access_allowed = access_table ( deny_mode , old_deny_mode , old_open_mode ,
2000-05-02 06:23:41 +04:00
( share - > pid = = sys_getpid ( ) ) , is_executable ( fname ) ) ;
2000-04-22 04:33:16 +04:00
if ( ( access_allowed = = AFAIL ) | |
( ! fcbopen & & ( access_allowed = = AREAD & & * flags = = O_RDWR ) ) | |
( access_allowed = = AREAD & & * flags ! = O_RDONLY ) | |
( access_allowed = = AWRITE & & * flags ! = O_WRONLY ) ) {
DEBUG ( 2 , ( " Share violation on file (%d,%d,%d,%d,%s,fcbopen = %d, flags = %d) = %d \n " ,
deny_mode , old_deny_mode , old_open_mode ,
( int ) share - > pid , fname , fcbopen , * flags , access_allowed ) ) ;
unix_ERR_class = ERRDOS ;
unix_ERR_code = ERRbadshare ;
return False ;
}
if ( access_allowed = = AREAD )
* flags = O_RDONLY ;
if ( access_allowed = = AWRITE )
* flags = O_WRONLY ;
}
return True ;
}
/****************************************************************************
Deal with open deny mode and oplock break processing .
Invarient : Share mode must be locked on entry and exit .
Returns - 1 on error , or number of share modes on success ( may be zero ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static int open_mode_check ( connection_struct * conn , const char * fname , SMB_DEV_T dev ,
SMB_INO_T inode , int share_mode , int * p_flags , int * p_oplock_request ,
BOOL * p_all_current_opens_are_level_II )
1998-09-05 09:07:05 +04:00
{
2000-04-22 04:33:16 +04:00
int i ;
int num_share_modes ;
int oplock_contention_count = 0 ;
share_mode_entry * old_shares = 0 ;
BOOL fcbopen = False ;
BOOL broke_oplock ;
if ( GET_OPEN_MODE ( share_mode ) = = DOS_OPEN_FCB )
fcbopen = True ;
num_share_modes = get_share_modes ( conn , dev , inode , & old_shares ) ;
if ( num_share_modes = = 0 )
return 0 ;
1998-09-05 09:07:05 +04:00
1998-10-23 07:34:50 +04:00
/*
2000-04-22 04:33:16 +04:00
* Check if the share modes will give us access .
1998-10-23 07:34:50 +04:00
*/
2000-04-22 04:33:16 +04:00
do {
1998-10-23 07:34:50 +04:00
2000-04-22 04:33:16 +04:00
broke_oplock = False ;
* p_all_current_opens_are_level_II = True ;
for ( i = 0 ; i < num_share_modes ; i + + ) {
share_mode_entry * share_entry = & old_shares [ i ] ;
/*
* By observation of NetBench , oplocks are broken * before * share
* modes are checked . This allows a file to be closed by the client
* if the share mode would deny access and the client has an oplock .
* Check if someone has an oplock on this file . If so we must break
* it before continuing .
*/
if ( ( * p_oplock_request & & EXCLUSIVE_OPLOCK_TYPE ( share_entry - > op_type ) ) | |
( ! * p_oplock_request & & ( share_entry - > op_type ! = NO_OPLOCK ) ) ) {
BOOL opb_ret ;
2001-06-19 11:31:55 +04:00
DEBUG ( 5 , ( " open_mode_check: oplock_request = %d, breaking oplock (%x) on file %s, \
dev = % x , inode = % .0f \ n " , *p_oplock_request, share_entry->op_type, fname, (unsigned int)dev, (double)inode));
2000-04-22 04:33:16 +04:00
/* Oplock break - unlock to request it. */
unlock_share_entry ( conn , dev , inode ) ;
opb_ret = request_oplock_break ( share_entry , dev , inode ) ;
/* Now relock. */
lock_share_entry ( conn , dev , inode ) ;
if ( opb_ret = = False ) {
free ( ( char * ) old_shares ) ;
DEBUG ( 0 , ( " open_mode_check: FAILED when breaking oplock (%x) on file %s, \
dev = % x , inode = % .0f \ n " , old_shares[i].op_type, fname, (unsigned int)dev, (double)inode));
errno = EACCES ;
unix_ERR_class = ERRDOS ;
unix_ERR_code = ERRbadshare ;
return - 1 ;
}
broke_oplock = True ;
* p_all_current_opens_are_level_II = False ;
break ;
} else if ( ! LEVEL_II_OPLOCK_TYPE ( share_entry - > op_type ) ) {
* p_all_current_opens_are_level_II = False ;
}
/* someone else has a share lock on it, check to see
if we can too */
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
if ( check_share_mode ( share_entry , share_mode , fname , fcbopen , p_flags ) = = False ) {
2000-04-22 04:33:16 +04:00
free ( ( char * ) old_shares ) ;
errno = EACCES ;
return - 1 ;
}
} /* end for */
if ( broke_oplock ) {
free ( ( char * ) old_shares ) ;
num_share_modes = get_share_modes ( conn , dev , inode , & old_shares ) ;
oplock_contention_count + + ;
1998-09-05 09:07:05 +04:00
}
2000-04-22 04:33:16 +04:00
} while ( broke_oplock ) ;
1998-09-05 09:07:05 +04:00
2000-04-22 04:33:16 +04:00
if ( old_shares ! = 0 )
free ( ( char * ) old_shares ) ;
1998-09-05 09:07:05 +04:00
2000-04-22 04:33:16 +04:00
/*
* Refuse to grant an oplock in case the contention limit is
* reached when going through the lock list multiple times .
*/
1998-09-05 09:07:05 +04:00
2000-04-22 04:33:16 +04:00
if ( oplock_contention_count > = lp_oplock_contention_limit ( SNUM ( conn ) ) ) {
* p_oplock_request = 0 ;
DEBUG ( 4 , ( " open_mode_check: oplock contention = %d. Not granting oplock. \n " ,
oplock_contention_count ) ) ;
1998-09-05 09:07:05 +04:00
}
1998-10-23 07:34:50 +04:00
2000-04-22 04:33:16 +04:00
return num_share_modes ;
1998-09-05 09:07:05 +04:00
}
1998-08-17 17:11:34 +04:00
/****************************************************************************
2000-06-15 13:35:37 +04:00
set a kernel flock on a file for NFS interoperability
this requires a patch to Linux
1998-08-17 17:11:34 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-06-15 13:35:37 +04:00
static void kernel_flock ( files_struct * fsp , int deny_mode )
{
# if HAVE_KERNEL_SHARE_MODES
int kernel_mode = 0 ;
if ( deny_mode = = DENY_READ ) kernel_mode = LOCK_MAND | LOCK_WRITE ;
else if ( deny_mode = = DENY_WRITE ) kernel_mode = LOCK_MAND | LOCK_READ ;
else if ( deny_mode = = DENY_ALL ) kernel_mode = LOCK_MAND ;
if ( kernel_mode ) flock ( fsp - > fd , kernel_mode ) ;
# endif
}
1999-12-13 16:27:58 +03:00
2000-06-15 13:35:37 +04:00
/****************************************************************************
2000-10-19 06:58:24 +04:00
Open a file with a share mode . On output from this open we are guarenteeing
that
2000-06-15 13:35:37 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-10-19 06:58:24 +04:00
files_struct * open_file_shared ( connection_struct * conn , char * fname , SMB_STRUCT_STAT * psbuf ,
int share_mode , int ofun , mode_t mode , int oplock_request , int * Access , int * action )
1998-08-17 17:11:34 +04:00
{
2000-04-22 04:33:16 +04:00
int flags = 0 ;
int flags2 = 0 ;
int deny_mode = GET_DENY_MODE ( share_mode ) ;
BOOL allow_share_delete = GET_ALLOW_SHARE_DELETE ( share_mode ) ;
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
BOOL delete_access_requested = GET_DELETE_ACCESS_REQUESTED ( share_mode ) ;
2000-10-19 06:58:24 +04:00
BOOL file_existed = VALID_STAT ( * psbuf ) ;
2000-04-22 04:33:16 +04:00
BOOL fcbopen = False ;
SMB_DEV_T dev = 0 ;
SMB_INO_T inode = 0 ;
int num_share_modes = 0 ;
BOOL all_current_opens_are_level_II = False ;
2000-04-24 23:23:51 +04:00
BOOL fsp_open = False ;
2000-04-22 04:33:16 +04:00
files_struct * fsp = NULL ;
int open_mode = 0 ;
uint16 port = 0 ;
if ( conn - > printer ) {
/* printers are handled completely differently. Most of the passed parameters are
ignored */
* Access = DOS_OPEN_WRONLY ;
* action = FILE_WAS_CREATED ;
2001-04-18 09:12:46 +04:00
return print_fsp_open ( conn ) ;
2000-04-22 04:33:16 +04:00
}
1998-08-17 17:11:34 +04:00
2001-04-14 04:19:12 +04:00
fsp = file_new ( conn ) ;
2000-04-22 04:33:16 +04:00
if ( ! fsp )
return NULL ;
1998-10-22 20:55:03 +04:00
2000-04-22 04:33:16 +04:00
DEBUG ( 10 , ( " open_file_shared: fname = %s, share_mode = %x, ofun = %x, mode = %o, oplock request = %d \n " ,
fname , share_mode , ofun , ( int ) mode , oplock_request ) ) ;
1999-12-13 16:27:58 +03:00
2000-04-22 04:33:16 +04:00
if ( ! check_name ( fname , conn ) ) {
file_free ( fsp ) ;
return NULL ;
}
/* ignore any oplock requests if oplocks are disabled */
if ( ! lp_oplocks ( SNUM ( conn ) ) | | global_client_failed_oplock_break ) {
oplock_request = 0 ;
}
/* this is for OS/2 EAs - try and say we don't support them */
if ( strstr ( fname , " .+,;=[]. " ) ) {
unix_ERR_class = ERRDOS ;
/* OS/2 Workplace shell fix may be main code stream in a later release. */
1998-08-17 17:11:34 +04:00
# if 1 /* OS2_WPS_FIX - Recent versions of OS/2 need this. */
2000-04-22 04:33:16 +04:00
unix_ERR_code = ERRcannotopen ;
1998-08-17 17:11:34 +04:00
# else /* OS2_WPS_FIX */
2000-04-22 04:33:16 +04:00
unix_ERR_code = ERROR_EAS_NOT_SUPPORTED ;
1998-08-17 17:11:34 +04:00
# endif /* OS2_WPS_FIX */
2000-04-22 04:33:16 +04:00
DEBUG ( 5 , ( " open_file_shared: OS/2 EA's are not supported. \n " ) ) ;
file_free ( fsp ) ;
return NULL ;
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
if ( ( GET_FILE_OPEN_DISPOSITION ( ofun ) = = FILE_EXISTS_FAIL ) & & file_existed ) {
DEBUG ( 5 , ( " open_file_shared: create new requested for file %s and file already exists. \n " ,
fname ) ) ;
file_free ( fsp ) ;
errno = EEXIST ;
return NULL ;
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
if ( GET_FILE_CREATE_DISPOSITION ( ofun ) = = FILE_CREATE_IF_NOT_EXIST )
flags2 | = O_CREAT ;
if ( GET_FILE_OPEN_DISPOSITION ( ofun ) = = FILE_EXISTS_TRUNCATE )
flags2 | = O_TRUNC ;
if ( GET_FILE_OPEN_DISPOSITION ( ofun ) = = FILE_EXISTS_FAIL )
flags2 | = O_EXCL ;
/* note that we ignore the append flag as
append does not mean the same thing under dos and unix */
switch ( GET_OPEN_MODE ( share_mode ) ) {
case DOS_OPEN_WRONLY :
flags = O_WRONLY ;
break ;
case DOS_OPEN_FCB :
fcbopen = True ;
flags = O_RDWR ;
break ;
case DOS_OPEN_RDWR :
flags = O_RDWR ;
break ;
default :
2001-04-16 04:02:29 +04:00
flags = O_RDONLY ;
2000-04-22 04:33:16 +04:00
break ;
}
1998-08-17 17:11:34 +04:00
# if defined(O_SYNC)
2000-04-22 04:33:16 +04:00
if ( GET_FILE_SYNC_OPENMODE ( share_mode ) ) {
flags2 | = O_SYNC ;
}
1998-08-17 17:11:34 +04:00
# endif /* O_SYNC */
2000-04-22 04:33:16 +04:00
if ( flags ! = O_RDONLY & & file_existed & &
2000-10-19 06:58:24 +04:00
( ! CAN_WRITE ( conn ) | | IS_DOS_READONLY ( dos_mode ( conn , fname , psbuf ) ) ) ) {
2000-04-22 04:33:16 +04:00
if ( ! fcbopen ) {
DEBUG ( 5 , ( " open_file_shared: read/write access requested for file %s on read only %s \n " ,
fname , ! CAN_WRITE ( conn ) ? " share " : " file " ) ) ;
file_free ( fsp ) ;
errno = EACCES ;
return NULL ;
}
flags = O_RDONLY ;
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
if ( deny_mode > DENY_NONE & & deny_mode ! = DENY_FCB ) {
DEBUG ( 2 , ( " Invalid deny mode %d on file %s \n " , deny_mode , fname ) ) ;
file_free ( fsp ) ;
errno = EINVAL ;
return NULL ;
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
if ( file_existed ) {
2000-10-19 06:58:24 +04:00
dev = psbuf - > st_dev ;
inode = psbuf - > st_ino ;
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
lock_share_entry ( conn , dev , inode ) ;
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
num_share_modes = open_mode_check ( conn , fname , dev , inode , share_mode ,
& flags , & oplock_request , & all_current_opens_are_level_II ) ;
if ( num_share_modes = = - 1 ) {
2000-12-12 00:09:48 +03:00
/*
* This next line is a subtlety we need for MS - Access . If a file open will
* fail due to share permissions and also for security ( access )
* reasons , we need to return the access failed error , not the
* share error . This means we must attempt to open the file anyway
* in order to get the UNIX access error - even if we ' re going to
* fail the open for share reasons . This is bad , as we ' re burning
* another fd if there are existing locks but there ' s nothing else
* we can do . We also ensure we ' re not going to create or tuncate
* the file as we only want an access decision at this stage . JRA .
*/
2001-04-14 00:49:11 +04:00
fsp_open = open_file ( fsp , conn , fname , psbuf , flags | ( flags2 & ~ ( O_TRUNC | O_CREAT ) ) , mode ) ;
DEBUG ( 4 , ( " open_file_shared : share_mode deny - calling open_file with \
flags = 0 x % X flags2 = 0 x % X mode = 0 % o returned % d \ n " ,
flags , ( flags2 & ~ ( O_TRUNC | O_CREAT ) ) , ( int ) mode , ( int ) fsp_open ) ) ;
2000-12-12 00:09:48 +03:00
2000-04-22 04:33:16 +04:00
unlock_share_entry ( conn , dev , inode ) ;
2001-04-14 00:49:11 +04:00
if ( fsp_open )
fd_close ( conn , fsp ) ;
2000-04-22 04:33:16 +04:00
file_free ( fsp ) ;
return NULL ;
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
/*
* We exit this block with the share entry * locked * . . . . .
*/
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
DEBUG ( 4 , ( " calling open_file with flags=0x%X flags2=0x%X mode=0%o \n " ,
flags , flags2 , ( int ) mode ) ) ;
1999-12-13 16:27:58 +03:00
2001-04-16 04:34:03 +04:00
/*
* open_file strips any O_TRUNC flags itself .
*/
fsp_open = open_file ( fsp , conn , fname , psbuf , flags | flags2 , mode ) ;
1998-08-17 17:11:34 +04:00
2000-04-24 23:23:51 +04:00
if ( ! fsp_open & & ( flags = = O_RDWR ) & & ( errno ! = ENOENT ) & & fcbopen ) {
2000-10-19 06:58:24 +04:00
if ( ( fsp_open = open_file ( fsp , conn , fname , psbuf , O_RDONLY , mode ) ) = = True )
2000-04-22 04:33:16 +04:00
flags = O_RDONLY ;
}
1998-08-17 17:11:34 +04:00
2000-04-24 23:23:51 +04:00
if ( ! fsp_open ) {
2000-04-22 04:33:16 +04:00
if ( file_existed )
unlock_share_entry ( conn , dev , inode ) ;
file_free ( fsp ) ;
return NULL ;
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
/*
* Deal with the race condition where two smbd ' s detect the file doesn ' t
* exist and do the create at the same time . One of them will win and
* set a share mode , the other ( ie . this one ) should check if the
* requested share mode for this create is allowed .
*/
1998-09-05 00:53:58 +04:00
2000-04-22 04:33:16 +04:00
if ( ! file_existed ) {
1998-09-05 00:53:58 +04:00
2000-04-22 04:33:16 +04:00
lock_share_entry_fsp ( fsp ) ;
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
num_share_modes = open_mode_check ( conn , fname , dev , inode , share_mode ,
& flags , & oplock_request , & all_current_opens_are_level_II ) ;
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
if ( num_share_modes = = - 1 ) {
unlock_share_entry_fsp ( fsp ) ;
fd_close ( conn , fsp ) ;
file_free ( fsp ) ;
return NULL ;
}
1999-12-13 16:27:58 +03:00
2000-04-22 04:33:16 +04:00
/*
* We exit this block with the share entry * locked * . . . . .
*/
}
1999-12-13 16:27:58 +03:00
2000-12-12 00:09:48 +03:00
/* note that we ignore failure for the following. It is
basically a hack for NFS , and NFS will never set one of
these only read them . Nobody but Samba can ever set a deny
mode and we have already checked our more authoritative
locking database for permission to set this deny mode . If
the kernel refuses the operations then the kernel is wrong */
kernel_flock ( fsp , deny_mode ) ;
2000-04-22 04:33:16 +04:00
/*
* At this point onwards , we can guarentee that the share entry
* is locked , whether we created the file or not , and that the
* deny mode is compatible with all current opens .
*/
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
/*
* If requested , truncate the file .
*/
1998-08-17 17:11:34 +04:00
2000-10-19 06:58:24 +04:00
if ( flags2 & O_TRUNC ) {
/*
* We are modifing the file after open - update the stat struct . .
*/
if ( ( truncate_unless_locked ( conn , fsp ) = = - 1 ) | | ( vfs_fstat ( fsp , fsp - > fd , psbuf ) = = - 1 ) ) {
unlock_share_entry_fsp ( fsp ) ;
fd_close ( conn , fsp ) ;
file_free ( fsp ) ;
return NULL ;
}
2000-04-22 04:33:16 +04:00
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
switch ( flags ) {
case O_RDONLY :
open_mode = DOS_OPEN_RDONLY ;
break ;
case O_RDWR :
open_mode = DOS_OPEN_RDWR ;
break ;
case O_WRONLY :
open_mode = DOS_OPEN_WRONLY ;
break ;
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
fsp - > share_mode = SET_DENY_MODE ( deny_mode ) |
SET_OPEN_MODE ( open_mode ) |
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
SET_ALLOW_SHARE_DELETE ( allow_share_delete ) |
SET_DELETE_ACCESS_REQUESTED ( delete_access_requested ) ;
DEBUG ( 10 , ( " open_file_shared : share_mode = %x \n " , fsp - > share_mode ) ) ;
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
if ( Access )
( * Access ) = open_mode ;
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
if ( action ) {
if ( file_existed & & ! ( flags2 & O_TRUNC ) )
* action = FILE_WAS_OPENED ;
if ( ! file_existed )
* action = FILE_WAS_CREATED ;
if ( file_existed & & ( flags2 & O_TRUNC ) )
* action = FILE_WAS_OVERWRITTEN ;
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
/*
* Setup the oplock info in both the shared memory and
* file structs .
*/
1998-09-23 05:48:45 +04:00
2000-04-22 04:33:16 +04:00
if ( oplock_request & & ( num_share_modes = = 0 ) & &
! IS_VETO_OPLOCK_PATH ( conn , fname ) & & set_file_oplock ( fsp , oplock_request ) ) {
port = global_oplock_port ;
} else if ( oplock_request & & all_current_opens_are_level_II ) {
port = global_oplock_port ;
oplock_request = LEVEL_II_OPLOCK ;
set_file_oplock ( fsp , oplock_request ) ;
} else {
port = 0 ;
oplock_request = 0 ;
}
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
set_share_mode ( fsp , port , oplock_request ) ;
1998-09-23 05:48:45 +04:00
2000-04-22 04:33:16 +04:00
unlock_share_entry_fsp ( fsp ) ;
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
conn - > num_files_open + + ;
1998-08-17 17:11:34 +04:00
2000-04-22 04:33:16 +04:00
return fsp ;
1998-08-17 17:11:34 +04:00
}
1999-12-13 16:27:58 +03:00
/****************************************************************************
Open a file for permissions read only . Return a pseudo file entry
2000-04-10 17:05:23 +04:00
with the ' stat_open ' flag set
1999-12-13 16:27:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-10-19 06:58:24 +04:00
files_struct * open_file_stat ( connection_struct * conn , char * fname ,
SMB_STRUCT_STAT * psbuf , int smb_ofun , int * action )
1999-12-13 16:27:58 +03:00
{
extern struct current_user current_user ;
2000-10-19 06:58:24 +04:00
files_struct * fsp = NULL ;
1999-12-13 16:27:58 +03:00
2000-10-19 06:58:24 +04:00
if ( ! VALID_STAT ( * psbuf ) ) {
DEBUG ( 0 , ( " open_file_stat: unable to stat name = %s. Error was %s \n " , fname , strerror ( errno ) ) ) ;
2000-04-22 04:33:16 +04:00
return NULL ;
1999-12-13 16:27:58 +03:00
}
2000-10-19 06:58:24 +04:00
if ( S_ISDIR ( psbuf - > st_mode ) ) {
1999-12-13 16:27:58 +03:00
DEBUG ( 0 , ( " open_file_stat: %s is a directory ! \n " , fname ) ) ;
2000-04-22 04:33:16 +04:00
return NULL ;
1999-12-13 16:27:58 +03:00
}
2001-04-14 04:19:12 +04:00
fsp = file_new ( conn ) ;
2000-10-19 06:58:24 +04:00
if ( ! fsp )
return NULL ;
1999-12-13 16:27:58 +03:00
* action = FILE_WAS_OPENED ;
DEBUG ( 5 , ( " open_file_stat: opening file %s as a stat entry \n " , fname ) ) ;
/*
* Setup the files_struct for it .
*/
2000-04-10 17:05:23 +04:00
fsp - > fd = - 1 ;
2000-10-19 06:58:24 +04:00
fsp - > mode = psbuf - > st_mode ;
fsp - > inode = psbuf - > st_ino ;
fsp - > dev = psbuf - > st_dev ;
1999-12-13 16:27:58 +03:00
GetTimeOfDay ( & fsp - > open_time ) ;
2000-10-19 06:58:24 +04:00
fsp - > size = psbuf - > st_size ;
1999-12-13 16:27:58 +03:00
fsp - > vuid = current_user . vuid ;
fsp - > pos = - 1 ;
fsp - > can_lock = False ;
fsp - > can_read = False ;
fsp - > can_write = False ;
fsp - > share_mode = 0 ;
fsp - > print_file = False ;
fsp - > modified = False ;
fsp - > oplock_type = NO_OPLOCK ;
fsp - > sent_oplock_break = NO_BREAK_SENT ;
fsp - > is_directory = False ;
fsp - > stat_open = True ;
fsp - > directory_delete_on_close = False ;
fsp - > conn = conn ;
/*
* Note that the file name here is the * untranslated * name
* ie . it is still in the DOS codepage sent from the client .
* All use of this filename will pass though the sys_xxxx
* functions which will do the dos_to_unix translation before
* mapping into a UNIX filename . JRA .
*/
string_set ( & fsp - > fsp_name , fname ) ;
fsp - > wbmpx_ptr = NULL ;
fsp - > wcp = NULL ; /* Write cache pointer. */
2000-04-22 04:33:16 +04:00
conn - > num_files_open + + ;
return fsp ;
1999-12-13 16:27:58 +03:00
}
2001-04-14 04:19:12 +04:00
/****************************************************************************
Open a file for for write to ensure that we can fchmod it .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
files_struct * open_file_fchmod ( connection_struct * conn , char * fname , SMB_STRUCT_STAT * psbuf )
{
files_struct * fsp = NULL ;
BOOL fsp_open ;
if ( ! VALID_STAT ( * psbuf ) )
return NULL ;
fsp = file_new ( conn ) ;
if ( ! fsp )
return NULL ;
fsp_open = open_file ( fsp , conn , fname , psbuf , O_WRONLY , 0 ) ;
/*
* This is not a user visible file open .
* Don ' t set a share mode and don ' t increment
* the conn - > num_files_open .
*/
if ( ! fsp_open ) {
file_free ( fsp ) ;
return NULL ;
}
return fsp ;
}
/****************************************************************************
Close the fchmod file fd - ensure no locks are lost .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int close_file_fchmod ( files_struct * fsp )
{
int ret = fd_close ( fsp - > conn , fsp ) ;
file_free ( fsp ) ;
return ret ;
}
1998-08-17 17:11:34 +04:00
/****************************************************************************
Open a directory from an NT SMB call .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-10-23 04:58:28 +04:00
2000-10-19 06:58:24 +04:00
files_struct * open_directory ( connection_struct * conn , char * fname ,
SMB_STRUCT_STAT * psbuf , int smb_ofun , mode_t unixmode , int * action )
1998-08-17 17:11:34 +04:00
{
extern struct current_user current_user ;
1999-12-13 16:27:58 +03:00
BOOL got_stat = False ;
2001-04-14 04:19:12 +04:00
files_struct * fsp = file_new ( conn ) ;
2000-04-22 04:33:16 +04:00
if ( ! fsp )
return NULL ;
1998-08-17 17:11:34 +04:00
2001-04-14 04:19:12 +04:00
fsp - > conn = conn ; /* The vfs_fXXX() macros need this. */
2000-10-21 03:59:47 +04:00
2000-10-19 06:58:24 +04:00
if ( VALID_STAT ( * psbuf ) )
1999-12-13 16:27:58 +03:00
got_stat = True ;
1998-08-17 17:11:34 +04:00
1999-12-13 16:27:58 +03:00
if ( got_stat & & ( GET_FILE_OPEN_DISPOSITION ( smb_ofun ) = = FILE_EXISTS_FAIL ) ) {
2000-04-22 04:33:16 +04:00
file_free ( fsp ) ;
1999-12-13 16:27:58 +03:00
errno = EEXIST ; /* Setup so correct error is returned to client. */
2000-04-22 04:33:16 +04:00
return NULL ;
1999-12-13 16:27:58 +03:00
}
if ( GET_FILE_CREATE_DISPOSITION ( smb_ofun ) = = FILE_CREATE_IF_NOT_EXIST ) {
if ( got_stat ) {
2000-10-19 06:58:24 +04:00
if ( ! S_ISDIR ( psbuf - > st_mode ) ) {
1999-12-13 16:27:58 +03:00
DEBUG ( 0 , ( " open_directory: %s is not a directory ! \n " , fname ) ) ;
2000-04-22 04:33:16 +04:00
file_free ( fsp ) ;
1999-12-13 16:27:58 +03:00
errno = EACCES ;
2000-04-22 04:33:16 +04:00
return NULL ;
1999-12-13 16:27:58 +03:00
}
* action = FILE_WAS_OPENED ;
} else {
/*
* Try and create the directory .
*/
if ( ! CAN_WRITE ( conn ) ) {
DEBUG ( 2 , ( " open_directory: failing create on read-only share \n " ) ) ;
2000-04-22 04:33:16 +04:00
file_free ( fsp ) ;
1999-12-13 16:27:58 +03:00
errno = EACCES ;
2000-04-22 04:33:16 +04:00
return NULL ;
1999-12-13 16:27:58 +03:00
}
1998-08-17 17:11:34 +04:00
2000-10-03 06:12:14 +04:00
if ( vfs_mkdir ( conn , fname , unix_mode ( conn , aDIR , fname ) ) < 0 ) {
1999-12-13 16:27:58 +03:00
DEBUG ( 0 , ( " open_directory: unable to create %s. Error was %s \n " ,
fname , strerror ( errno ) ) ) ;
2000-04-22 04:33:16 +04:00
file_free ( fsp ) ;
return NULL ;
1999-12-13 16:27:58 +03:00
}
2000-10-19 06:58:24 +04:00
if ( vfs_stat ( conn , fname , psbuf ) ! = 0 ) {
file_free ( fsp ) ;
return NULL ;
}
1999-12-13 16:27:58 +03:00
* action = FILE_WAS_CREATED ;
}
1998-08-17 17:11:34 +04:00
} else {
1999-12-13 16:27:58 +03:00
1998-08-17 17:11:34 +04:00
/*
1999-12-13 16:27:58 +03:00
* Don ' t create - just check that it * was * a directory .
1998-08-17 17:11:34 +04:00
*/
1999-12-13 16:27:58 +03:00
if ( ! got_stat ) {
1998-08-17 17:11:34 +04:00
DEBUG ( 0 , ( " open_directory: unable to stat name = %s. Error was %s \n " ,
fname , strerror ( errno ) ) ) ;
2000-04-22 04:33:16 +04:00
file_free ( fsp ) ;
return NULL ;
1998-08-17 17:11:34 +04:00
}
2000-10-19 06:58:24 +04:00
if ( ! S_ISDIR ( psbuf - > st_mode ) ) {
1998-08-17 17:11:34 +04:00
DEBUG ( 0 , ( " open_directory: %s is not a directory ! \n " , fname ) ) ;
2000-04-22 04:33:16 +04:00
file_free ( fsp ) ;
return NULL ;
1998-08-17 17:11:34 +04:00
}
1999-12-13 16:27:58 +03:00
1998-08-17 17:11:34 +04:00
* action = FILE_WAS_OPENED ;
}
2000-10-19 06:58:24 +04:00
DEBUG ( 5 , ( " open_directory: opening directory %s \n " , fname ) ) ;
1998-08-17 17:11:34 +04:00
/*
* Setup the files_struct for it .
*/
2000-04-10 17:05:23 +04:00
fsp - > fd = - 1 ;
2000-10-19 06:58:24 +04:00
fsp - > mode = psbuf - > st_mode ;
fsp - > inode = psbuf - > st_ino ;
fsp - > dev = psbuf - > st_dev ;
1998-08-17 17:11:34 +04:00
GetTimeOfDay ( & fsp - > open_time ) ;
2000-10-19 06:58:24 +04:00
fsp - > size = psbuf - > st_size ;
1998-08-17 17:11:34 +04:00
fsp - > vuid = current_user . vuid ;
fsp - > pos = - 1 ;
fsp - > can_lock = True ;
fsp - > can_read = False ;
fsp - > can_write = False ;
fsp - > share_mode = 0 ;
fsp - > print_file = False ;
fsp - > modified = False ;
1999-12-13 16:27:58 +03:00
fsp - > oplock_type = NO_OPLOCK ;
fsp - > sent_oplock_break = NO_BREAK_SENT ;
1998-08-17 17:11:34 +04:00
fsp - > is_directory = True ;
1999-12-13 16:27:58 +03:00
fsp - > directory_delete_on_close = False ;
1998-08-17 17:11:34 +04:00
fsp - > conn = conn ;
/*
* Note that the file name here is the * untranslated * name
* ie . it is still in the DOS codepage sent from the client .
* All use of this filename will pass though the sys_xxxx
* functions which will do the dos_to_unix translation before
* mapping into a UNIX filename . JRA .
*/
string_set ( & fsp - > fsp_name , fname ) ;
fsp - > wbmpx_ptr = NULL ;
2000-04-22 04:33:16 +04:00
conn - > num_files_open + + ;
return fsp ;
1998-08-17 17:11:34 +04:00
}
/*******************************************************************
1999-12-13 16:27:58 +03:00
Check if the share mode on a file allows it to be deleted or unlinked .
Return True if sharing doesn ' t prevent the operation .
1998-08-17 17:11:34 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-10-23 04:58:28 +04:00
1998-08-17 17:11:34 +04:00
BOOL check_file_sharing ( connection_struct * conn , char * fname , BOOL rename_op )
{
int i ;
int ret = False ;
share_mode_entry * old_shares = 0 ;
int num_share_modes ;
1998-09-02 00:11:54 +04:00
SMB_STRUCT_STAT sbuf ;
2000-05-02 06:23:41 +04:00
pid_t pid = sys_getpid ( ) ;
1998-09-01 00:20:54 +04:00
SMB_DEV_T dev ;
SMB_INO_T inode ;
1998-08-17 17:11:34 +04:00
2000-10-19 06:58:24 +04:00
if ( vfs_stat ( conn , fname , & sbuf ) = = - 1 )
2000-04-22 04:33:16 +04:00
return ( True ) ;
1998-08-17 17:11:34 +04:00
1998-09-01 00:20:54 +04:00
dev = sbuf . st_dev ;
inode = sbuf . st_ino ;
1998-08-17 17:11:34 +04:00
1999-12-21 12:25:59 +03:00
lock_share_entry ( conn , dev , inode ) ;
num_share_modes = get_share_modes ( conn , dev , inode , & old_shares ) ;
1998-08-17 17:11:34 +04:00
/*
* Check if the share modes will give us access .
*/
if ( num_share_modes ! = 0 )
{
BOOL broke_oplock ;
do
{
broke_oplock = False ;
for ( i = 0 ; i < num_share_modes ; i + + )
{
share_mode_entry * share_entry = & old_shares [ i ] ;
/*
* Break oplocks before checking share modes . See comment in
* open_file_shared for details .
* Check if someone has an oplock on this file . If so we must
* break it before continuing .
*/
1999-12-13 16:27:58 +03:00
if ( BATCH_OPLOCK_TYPE ( share_entry - > op_type ) )
1998-08-17 17:11:34 +04:00
{
1999-12-13 16:27:58 +03:00
#if 0
/* JRA. Try removing this code to see if the new oplock changes
fix the problem . I ' m dubious , but Andrew is recommending we
try this . . . .
*/
1998-08-17 17:11:34 +04:00
/*
* It appears that the NT redirector may have a bug , in that
* it tries to do an SMBmv on a file that it has open with a
* batch oplock , and then fails to respond to the oplock break
* request . This only seems to occur when the client is doing an
* SMBmv to the smbd it is using - thus we try and detect this
* condition by checking if the file being moved is open and oplocked by
* this smbd process , and then not sending the oplock break in this
* special case . If the file was open with a deny mode that
* prevents the move the SMBmv will fail anyway with a share
* violation error . JRA .
*/
if ( rename_op & & ( share_entry - > pid = = pid ) )
{
1998-09-05 00:53:58 +04:00
DEBUG ( 0 , ( " check_file_sharing: NT redirector workaround - rename attempted on \
batch oplocked file % s , dev = % x , inode = % .0f \ n " , fname, (unsigned int)dev, (double)inode));
1998-08-17 17:11:34 +04:00
/*
* This next line is a test that allows the deny - mode
* processing to be skipped . This seems to be needed as
* NT insists on the rename succeeding ( in Office 9 x no less ! ) .
* This should be removed as soon as ( a ) MS fix the redirector
* bug or ( b ) NT SMB support in Samba makes NT not issue the
* call ( as is my fervent hope ) . JRA .
*/
continue ;
}
else
1999-12-13 16:27:58 +03:00
# endif /* 0 */
1998-08-17 17:11:34 +04:00
{
1998-09-05 00:53:58 +04:00
1998-08-17 17:11:34 +04:00
DEBUG ( 5 , ( " check_file_sharing: breaking oplock (%x) on file %s, \
1998-09-05 00:53:58 +04:00
dev = % x , inode = % .0f \ n " , share_entry->op_type, fname, (unsigned int)dev, (double)inode));
1998-08-17 17:11:34 +04:00
/* Oplock break.... */
1999-12-21 12:25:59 +03:00
unlock_share_entry ( conn , dev , inode ) ;
1998-08-17 17:11:34 +04:00
if ( request_oplock_break ( share_entry , dev , inode ) = = False )
{
free ( ( char * ) old_shares ) ;
1998-09-05 00:53:58 +04:00
1998-08-17 17:11:34 +04:00
DEBUG ( 0 , ( " check_file_sharing: FAILED when breaking oplock (%x) on file %s, \
1998-09-05 00:53:58 +04:00
dev = % x , inode = % .0f \ n " , old_shares[i].op_type, fname, (unsigned int)dev, (double)inode));
1998-08-17 17:11:34 +04:00
return False ;
}
1999-12-21 12:25:59 +03:00
lock_share_entry ( conn , dev , inode ) ;
1998-08-17 17:11:34 +04:00
broke_oplock = True ;
break ;
}
}
1998-10-23 04:58:28 +04:00
/*
* If this is a delete request and ALLOW_SHARE_DELETE is set then allow
* this to proceed . This takes precedence over share modes .
*/
if ( ! rename_op & & GET_ALLOW_SHARE_DELETE ( share_entry - > share_mode ) )
continue ;
/*
* Someone else has a share lock on it , check to see
* if we can too .
*/
2000-01-16 14:21:33 +03:00
if ( ( GET_DENY_MODE ( share_entry - > share_mode ) ! = DENY_DOS ) | |
( share_entry - > pid ! = pid ) )
1998-08-17 17:11:34 +04:00
goto free_and_exit ;
} /* end for */
if ( broke_oplock )
{
free ( ( char * ) old_shares ) ;
1999-12-21 12:25:59 +03:00
num_share_modes = get_share_modes ( conn , dev , inode , & old_shares ) ;
1998-08-17 17:11:34 +04:00
}
} while ( broke_oplock ) ;
}
/* XXXX exactly what share mode combinations should be allowed for
deleting / renaming ? */
1998-10-23 04:58:28 +04:00
/*
* If we got here then either there were no share modes or
* all share modes were DENY_DOS and the pid = = getpid ( ) or
* delete access was requested and all share modes had the
* ALLOW_SHARE_DELETE bit set ( takes precedence over other
* share modes ) .
*/
1998-08-17 17:11:34 +04:00
ret = True ;
free_and_exit :
1999-12-21 12:25:59 +03:00
unlock_share_entry ( conn , dev , inode ) ;
1998-08-17 17:11:34 +04:00
if ( old_shares ! = NULL )
free ( ( char * ) old_shares ) ;
return ( ret ) ;
}