1998-08-17 11:40:06 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1998-08-17 11:40:06 +04:00
dos mode handling functions
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"
2005-06-10 04:31:59 +04:00
static int set_sparse_flag ( const SMB_STRUCT_STAT * const sbuf )
{
# if defined (HAVE_STAT_ST_BLOCKS) && defined(STAT_ST_BLOCKSIZE)
if ( sbuf - > st_size > sbuf - > st_blocks * ( SMB_OFF_T ) STAT_ST_BLOCKSIZE ) {
return FILE_ATTRIBUTE_SPARSE ;
}
# endif
return 0 ;
}
1998-08-17 11:40:06 +04:00
/****************************************************************************
2004-04-01 02:46:15 +04:00
Change a dos mode to a unix mode .
Base permission for files :
2004-11-30 03:22:04 +03:00
if creating file and inheriting
2000-01-14 04:41:04 +03:00
apply read / write bits from parent directory .
else
everybody gets read bit set
1998-08-17 11:40:06 +04:00
dos readonly is represented in unix by removing everyone ' s write bit
dos archive is represented in unix by the user ' s execute bit
dos system is represented in unix by the group ' s execute bit
dos hidden is represented in unix by the other ' s execute bit
2000-01-14 04:41:04 +03:00
if ! inheriting {
Then apply create mask ,
then add force bits .
}
2004-04-01 02:46:15 +04:00
Base permission for directories :
1998-08-17 11:40:06 +04:00
dos directory is represented in unix by unix ' s dir bit and the exec bit
2000-01-14 04:41:04 +03:00
if ! inheriting {
Then apply create mask ,
then add force bits .
}
1998-08-17 11:40:06 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-04-01 02:46:15 +04:00
2004-11-30 03:22:04 +03:00
mode_t unix_mode ( connection_struct * conn , int dosmode , const char * fname , BOOL creating_file )
1998-08-17 11:40:06 +04:00
{
2004-04-02 22:46:19 +04:00
mode_t result = ( S_IRUSR | S_IRGRP | S_IROTH | S_IWUSR | S_IWGRP | S_IWOTH ) ;
2004-04-01 02:46:15 +04:00
mode_t dir_mode = 0 ; /* Mode of the parent directory if inheriting. */
2004-04-02 22:46:19 +04:00
if ( ! lp_store_dos_attributes ( SNUM ( conn ) ) & & IS_DOS_READONLY ( dosmode ) ) {
result & = ~ ( S_IWUSR | S_IWGRP | S_IWOTH ) ;
}
2004-04-01 02:46:15 +04:00
2004-11-30 03:22:04 +03:00
if ( fname & & creating_file & & lp_inherit_perms ( SNUM ( conn ) ) ) {
2004-04-01 02:46:15 +04:00
char * dname ;
SMB_STRUCT_STAT sbuf ;
dname = parent_dirname ( fname ) ;
DEBUG ( 2 , ( " unix_mode(%s) inheriting from %s \n " , fname , dname ) ) ;
if ( SMB_VFS_STAT ( conn , dname , & sbuf ) ! = 0 ) {
DEBUG ( 4 , ( " unix_mode(%s) failed, [dir %s]: %s \n " , fname , dname , strerror ( errno ) ) ) ;
return ( 0 ) ; /* *** shouldn't happen! *** */
}
/* Save for later - but explicitly remove setuid bit for safety. */
dir_mode = sbuf . st_mode & ~ S_ISUID ;
DEBUG ( 2 , ( " unix_mode(%s) inherit mode %o \n " , fname , ( int ) dir_mode ) ) ;
/* Clear "result" */
result = 0 ;
}
if ( IS_DOS_DIR ( dosmode ) ) {
/* We never make directories read only for the owner as under DOS a user
can always create a file in a read - only directory . */
result | = ( S_IFDIR | S_IWUSR ) ;
if ( dir_mode ) {
/* Inherit mode of parent directory. */
result | = dir_mode ;
} else {
/* Provisionally add all 'x' bits */
result | = ( S_IXUSR | S_IXGRP | S_IXOTH ) ;
/* Apply directory mask */
result & = lp_dir_mask ( SNUM ( conn ) ) ;
/* Add in force bits */
result | = lp_force_dir_mode ( SNUM ( conn ) ) ;
}
} else {
if ( lp_map_archive ( SNUM ( conn ) ) & & IS_DOS_ARCHIVE ( dosmode ) )
result | = S_IXUSR ;
if ( lp_map_system ( SNUM ( conn ) ) & & IS_DOS_SYSTEM ( dosmode ) )
result | = S_IXGRP ;
1998-08-17 11:40:06 +04:00
2004-04-01 02:46:15 +04:00
if ( lp_map_hidden ( SNUM ( conn ) ) & & IS_DOS_HIDDEN ( dosmode ) )
result | = S_IXOTH ;
if ( dir_mode ) {
/* Inherit 666 component of parent directory mode */
result | = dir_mode & ( S_IRUSR | S_IRGRP | S_IROTH | S_IWUSR | S_IWGRP | S_IWOTH ) ;
} else {
/* Apply mode mask */
result & = lp_create_mask ( SNUM ( conn ) ) ;
/* Add in force bits */
result | = lp_force_create_mode ( SNUM ( conn ) ) ;
}
}
DEBUG ( 3 , ( " unix_mode(%s) returning 0%o \n " , fname , ( int ) result ) ) ;
return ( result ) ;
1998-08-17 11:40:06 +04:00
}
/****************************************************************************
2004-04-01 02:46:15 +04:00
Change a unix mode to a dos mode .
1998-08-17 11:40:06 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-03-20 02:46:48 +03:00
2005-05-19 03:37:35 +04:00
uint32 dos_mode_from_sbuf ( connection_struct * conn , const char * path , SMB_STRUCT_STAT * sbuf )
1998-08-17 11:40:06 +04:00
{
2002-08-17 19:27:10 +04:00
int result = 0 ;
1998-08-17 11:40:06 +04:00
2005-05-19 03:37:35 +04:00
if ( lp_acl_check_permissions ( SNUM ( conn ) ) ) {
if ( ! can_write_to_file ( conn , path , sbuf ) ) {
result | = aRONLY ;
}
} else if ( ( sbuf - > st_mode & S_IWUSR ) = = 0 ) {
2002-08-17 19:27:10 +04:00
result | = aRONLY ;
2005-05-19 03:37:35 +04:00
}
2002-08-17 19:27:10 +04:00
if ( MAP_ARCHIVE ( conn ) & & ( ( sbuf - > st_mode & S_IXUSR ) ! = 0 ) )
result | = aARCH ;
1998-08-17 11:40:06 +04:00
2002-08-17 19:27:10 +04:00
if ( MAP_SYSTEM ( conn ) & & ( ( sbuf - > st_mode & S_IXGRP ) ! = 0 ) )
result | = aSYSTEM ;
if ( MAP_HIDDEN ( conn ) & & ( ( sbuf - > st_mode & S_IXOTH ) ! = 0 ) )
result | = aHIDDEN ;
1998-08-17 11:40:06 +04:00
2002-08-17 19:27:10 +04:00
if ( S_ISDIR ( sbuf - > st_mode ) )
result = aDIR | ( result & aRONLY ) ;
2005-06-10 04:31:59 +04:00
result | = set_sparse_flag ( sbuf ) ;
2000-05-16 05:13:16 +04:00
1998-08-17 11:40:06 +04:00
# ifdef S_ISLNK
# if LINKS_READ_ONLY
2002-08-17 19:27:10 +04:00
if ( S_ISLNK ( sbuf - > st_mode ) & & S_ISDIR ( sbuf - > st_mode ) )
result | = aRONLY ;
1998-08-17 11:40:06 +04:00
# endif
# endif
2004-03-20 02:46:48 +03:00
DEBUG ( 8 , ( " dos_mode_from_sbuf returning " ) ) ;
if ( result & aHIDDEN ) DEBUG ( 8 , ( " h " ) ) ;
if ( result & aRONLY ) DEBUG ( 8 , ( " r " ) ) ;
if ( result & aSYSTEM ) DEBUG ( 8 , ( " s " ) ) ;
if ( result & aDIR ) DEBUG ( 8 , ( " d " ) ) ;
if ( result & aARCH ) DEBUG ( 8 , ( " a " ) ) ;
DEBUG ( 8 , ( " \n " ) ) ;
return result ;
}
2004-04-02 22:46:19 +04:00
/****************************************************************************
Get DOS attributes from an EA .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static BOOL get_ea_dos_attribute ( connection_struct * conn , const char * path , SMB_STRUCT_STAT * sbuf , uint32 * pattr )
{
ssize_t sizeret ;
fstring attrstr ;
unsigned int dosattr ;
if ( ! lp_store_dos_attributes ( SNUM ( conn ) ) ) {
return False ;
}
* pattr = 0 ;
sizeret = SMB_VFS_GETXATTR ( conn , path , SAMBA_XATTR_DOS_ATTRIB , attrstr , sizeof ( attrstr ) ) ;
if ( sizeret = = - 1 ) {
# if defined(ENOTSUP) && defined(ENOATTR)
if ( ( errno ! = ENOTSUP ) & & ( errno ! = ENOATTR ) & & ( errno ! = EACCES ) ) {
DEBUG ( 1 , ( " get_ea_dos_attributes: Cannot get attribute from EA on file %s: Error = %s \n " ,
path , strerror ( errno ) ) ) ;
2004-06-02 00:43:32 +04:00
set_store_dos_attributes ( SNUM ( conn ) , False ) ;
2004-04-02 22:46:19 +04:00
}
# endif
return False ;
}
/* Null terminate string. */
attrstr [ sizeret ] = 0 ;
DEBUG ( 10 , ( " get_ea_dos_attribute: %s attrstr = %s \n " , path , attrstr ) ) ;
if ( sizeret < 2 | | attrstr [ 0 ] ! = ' 0 ' | | attrstr [ 1 ] ! = ' x ' | |
sscanf ( attrstr , " %x " , & dosattr ) ! = 1 ) {
DEBUG ( 1 , ( " get_ea_dos_attributes: Badly formed DOSATTRIB on file %s - %s \n " , path , attrstr ) ) ;
return False ;
}
if ( S_ISDIR ( sbuf - > st_mode ) ) {
dosattr | = aDIR ;
}
* pattr = ( uint32 ) ( dosattr & SAMBA_ATTRIBUTES_MASK ) ;
DEBUG ( 8 , ( " get_ea_dos_attribute returning (0x%x) " , dosattr ) ) ;
if ( dosattr & aHIDDEN ) DEBUG ( 8 , ( " h " ) ) ;
if ( dosattr & aRONLY ) DEBUG ( 8 , ( " r " ) ) ;
if ( dosattr & aSYSTEM ) DEBUG ( 8 , ( " s " ) ) ;
if ( dosattr & aDIR ) DEBUG ( 8 , ( " d " ) ) ;
if ( dosattr & aARCH ) DEBUG ( 8 , ( " a " ) ) ;
DEBUG ( 8 , ( " \n " ) ) ;
return True ;
}
/****************************************************************************
Set DOS attributes in an EA .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static BOOL set_ea_dos_attribute ( connection_struct * conn , const char * path , SMB_STRUCT_STAT * sbuf , uint32 dosmode )
{
fstring attrstr ;
files_struct * fsp = NULL ;
BOOL ret = False ;
2004-06-02 00:43:32 +04:00
if ( ! lp_store_dos_attributes ( SNUM ( conn ) ) ) {
return False ;
}
2004-04-02 22:46:19 +04:00
snprintf ( attrstr , sizeof ( attrstr ) - 1 , " 0x%x " , dosmode & SAMBA_ATTRIBUTES_MASK ) ;
if ( SMB_VFS_SETXATTR ( conn , path , SAMBA_XATTR_DOS_ATTRIB , attrstr , strlen ( attrstr ) , 0 ) = = - 1 ) {
if ( ( errno ! = EPERM ) & & ( errno ! = EACCES ) ) {
2004-06-02 00:43:32 +04:00
if ( errno = = ENOSYS
# if defined(ENOTSUP)
| | errno = = ENOTSUP ) {
# else
) {
# endif
set_store_dos_attributes ( SNUM ( conn ) , False ) ;
}
2004-04-02 22:46:19 +04:00
return False ;
}
/* We want DOS semantics, ie allow non owner with write permission to change the
bits on a file . Just like file_utime below .
*/
/* Check if we have write access. */
if ( ! CAN_WRITE ( conn ) | | ! lp_dos_filemode ( SNUM ( conn ) ) )
return False ;
/*
* We need to open the file with write access whilst
* still in our current user context . This ensures we
* are not violating security in doing the setxattr .
*/
fsp = open_file_fchmod ( conn , path , sbuf ) ;
if ( ! fsp )
return ret ;
become_root ( ) ;
if ( SMB_VFS_SETXATTR ( conn , path , SAMBA_XATTR_DOS_ATTRIB , attrstr , strlen ( attrstr ) , 0 ) = = 0 ) {
ret = True ;
}
unbecome_root ( ) ;
close_file_fchmod ( fsp ) ;
return ret ;
}
DEBUG ( 10 , ( " set_ea_dos_attribute: set EA %s on file %s \n " , attrstr , path ) ) ;
return True ;
}
2004-03-20 02:46:48 +03:00
/****************************************************************************
2004-04-01 02:46:15 +04:00
Change a unix mode to a dos mode .
2004-03-20 02:46:48 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-04-01 02:46:15 +04:00
2004-04-02 22:46:19 +04:00
uint32 dos_mode ( connection_struct * conn , const char * path , SMB_STRUCT_STAT * sbuf )
2004-03-20 02:46:48 +03:00
{
2004-04-02 22:46:19 +04:00
uint32 result = 0 ;
2004-03-20 02:46:48 +03:00
DEBUG ( 8 , ( " dos_mode: %s \n " , path ) ) ;
2004-04-02 22:46:19 +04:00
if ( ! VALID_STAT ( * sbuf ) ) {
return 0 ;
}
2005-09-21 00:20:51 +04:00
/* First do any modifications that depend on the path name. */
2002-08-17 19:27:10 +04:00
/* hide files with a name starting with a . */
if ( lp_hide_dot_files ( SNUM ( conn ) ) ) {
2004-04-02 22:46:19 +04:00
const char * p = strrchr_m ( path , ' / ' ) ;
2005-09-21 00:20:51 +04:00
if ( p ) {
2002-08-17 19:27:10 +04:00
p + + ;
2005-09-21 00:20:51 +04:00
} else {
2002-08-17 19:27:10 +04:00
p = path ;
2005-09-21 00:20:51 +04:00
}
2002-08-17 19:27:10 +04:00
2005-09-21 00:20:51 +04:00
if ( p [ 0 ] = = ' . ' & & p [ 1 ] ! = ' . ' & & p [ 1 ] ! = 0 ) {
2002-08-17 19:27:10 +04:00
result | = aHIDDEN ;
2005-09-21 00:20:51 +04:00
}
2002-08-17 19:27:10 +04:00
}
2005-09-21 00:20:51 +04:00
/* Get the DOS attributes from an EA by preference. */
if ( get_ea_dos_attribute ( conn , path , sbuf , & result ) ) {
result | = set_sparse_flag ( sbuf ) ;
} else {
result | = dos_mode_from_sbuf ( conn , path , sbuf ) ;
}
2002-08-17 19:27:10 +04:00
/* Optimization : Only call is_hidden_path if it's not already
hidden . */
if ( ! ( result & aHIDDEN ) & & IS_HIDDEN_PATH ( conn , path ) ) {
result | = aHIDDEN ;
}
DEBUG ( 8 , ( " dos_mode returning " ) ) ;
if ( result & aHIDDEN ) DEBUG ( 8 , ( " h " ) ) ;
if ( result & aRONLY ) DEBUG ( 8 , ( " r " ) ) ;
if ( result & aSYSTEM ) DEBUG ( 8 , ( " s " ) ) ;
if ( result & aDIR ) DEBUG ( 8 , ( " d " ) ) ;
if ( result & aARCH ) DEBUG ( 8 , ( " a " ) ) ;
DEBUG ( 8 , ( " \n " ) ) ;
return ( result ) ;
1998-08-17 11:40:06 +04:00
}
/*******************************************************************
2004-04-01 02:46:15 +04:00
chmod a file - but preserve some bits .
1998-08-17 11:40:06 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-11-26 02:25:42 +03:00
2004-11-30 03:22:04 +03:00
int file_set_dosmode ( connection_struct * conn , const char * fname , uint32 dosmode , SMB_STRUCT_STAT * st , BOOL creating_file )
1998-08-17 11:40:06 +04:00
{
2001-01-09 23:34:37 +03:00
SMB_STRUCT_STAT st1 ;
int mask = 0 ;
mode_t tmp ;
mode_t unixmode ;
int ret = - 1 ;
2004-04-02 22:46:19 +04:00
DEBUG ( 10 , ( " file_set_dosmode: setting dos mode 0x%x on file %s \n " , dosmode , fname ) ) ;
2004-11-30 03:22:04 +03:00
if ( ! st | | ( st & & ! VALID_STAT ( * st ) ) ) {
2001-01-09 23:34:37 +03:00
st = & st1 ;
2003-05-14 14:59:01 +04:00
if ( SMB_VFS_STAT ( conn , fname , st ) )
2001-01-09 23:34:37 +03:00
return ( - 1 ) ;
}
1998-08-17 11:40:06 +04:00
2004-11-11 02:12:02 +03:00
get_acl_group_bits ( conn , fname , & st - > st_mode ) ;
2003-11-26 02:25:42 +03:00
2001-01-09 23:34:37 +03:00
if ( S_ISDIR ( st - > st_mode ) )
dosmode | = aDIR ;
2002-03-05 04:43:50 +03:00
else
dosmode & = ~ aDIR ;
1998-08-17 11:40:06 +04:00
2001-01-09 23:34:37 +03:00
if ( dos_mode ( conn , fname , st ) = = dosmode )
return ( 0 ) ;
1998-08-17 11:40:06 +04:00
2004-04-02 22:46:19 +04:00
/* Store the DOS attributes in an EA by preference. */
if ( set_ea_dos_attribute ( conn , fname , st , dosmode ) ) {
return 0 ;
}
2004-11-30 03:22:04 +03:00
unixmode = unix_mode ( conn , dosmode , fname , creating_file ) ;
1998-08-17 11:40:06 +04:00
2001-01-09 23:34:37 +03:00
/* preserve the s bits */
mask | = ( S_ISUID | S_ISGID ) ;
1998-08-17 11:40:06 +04:00
2001-01-09 23:34:37 +03:00
/* preserve the t bit */
1998-08-17 11:40:06 +04:00
# ifdef S_ISVTX
2001-01-09 23:34:37 +03:00
mask | = S_ISVTX ;
1998-08-17 11:40:06 +04:00
# endif
2001-01-09 23:34:37 +03:00
/* possibly preserve the x bits */
if ( ! MAP_ARCHIVE ( conn ) )
mask | = S_IXUSR ;
if ( ! MAP_SYSTEM ( conn ) )
mask | = S_IXGRP ;
if ( ! MAP_HIDDEN ( conn ) )
mask | = S_IXOTH ;
unixmode | = ( st - > st_mode & mask ) ;
/* if we previously had any r bits set then leave them alone */
if ( ( tmp = st - > st_mode & ( S_IRUSR | S_IRGRP | S_IROTH ) ) ) {
unixmode & = ~ ( S_IRUSR | S_IRGRP | S_IROTH ) ;
unixmode | = tmp ;
}
/* if we previously had any w bits set then leave them alone
whilst adding in the new w bits , if the new mode is not rdonly */
if ( ! IS_DOS_READONLY ( dosmode ) ) {
unixmode | = ( st - > st_mode & ( S_IWUSR | S_IWGRP | S_IWOTH ) ) ;
}
2003-05-14 14:59:01 +04:00
if ( ( ret = SMB_VFS_CHMOD ( conn , fname , unixmode ) ) = = 0 )
2001-01-18 02:47:08 +03:00
return 0 ;
2001-01-09 23:34:37 +03:00
2001-01-18 02:47:08 +03:00
if ( ( errno ! = EPERM ) & & ( errno ! = EACCES ) )
2001-01-09 23:34:37 +03:00
return - 1 ;
if ( ! lp_dos_filemode ( SNUM ( conn ) ) )
return - 1 ;
/* We want DOS semantics, ie allow non owner with write permission to change the
bits on a file . Just like file_utime below .
*/
/* Check if we have write access. */
if ( CAN_WRITE ( conn ) ) {
2001-04-14 04:19:12 +04:00
/*
* We need to open the file with write access whilst
* still in our current user context . This ensures we
* are not violating security in doing the fchmod .
* This file open does * not * break any oplocks we are
* holding . We need to review this . . . . may need to
* break batch oplocks open by others . JRA .
*/
files_struct * fsp = open_file_fchmod ( conn , fname , st ) ;
if ( ! fsp )
return - 1 ;
become_root ( ) ;
2005-07-08 08:51:27 +04:00
ret = SMB_VFS_FCHMOD ( fsp , fsp - > fh - > fd , unixmode ) ;
2001-04-14 04:19:12 +04:00
unbecome_root ( ) ;
close_file_fchmod ( fsp ) ;
2001-01-09 23:34:37 +03:00
}
return ( ret ) ;
1998-08-17 11:40:06 +04:00
}
1998-08-17 17:11:34 +04:00
/*******************************************************************
2004-04-01 02:46:15 +04:00
Wrapper around dos_utime that possibly allows DOS semantics rather
than POSIX .
1998-08-17 17:11:34 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-04-01 02:46:15 +04:00
2005-03-25 01:34:28 +03:00
int file_utime ( connection_struct * conn , const char * fname , struct utimbuf * times )
1998-08-17 17:11:34 +04:00
{
2005-05-19 03:37:35 +04:00
SMB_STRUCT_STAT sbuf ;
2004-04-01 02:46:15 +04:00
int ret = - 1 ;
errno = 0 ;
2005-05-19 03:37:35 +04:00
ZERO_STRUCT ( sbuf ) ;
2004-04-01 02:46:15 +04:00
2005-09-17 00:06:10 +04:00
/* Don't update the time on read-only shares */
/* We need this as set_filetime (which can be called on
close and other paths ) can end up calling this function
without the NEED_WRITE protection . Found by :
Leo Weppelman < leo @ wau . mis . ah . nl >
*/
if ( ! CAN_WRITE ( conn ) ) {
return 0 ;
}
2004-04-01 02:46:15 +04:00
if ( SMB_VFS_UTIME ( conn , fname , times ) = = 0 )
return 0 ;
if ( ( errno ! = EPERM ) & & ( errno ! = EACCES ) )
return - 1 ;
if ( ! lp_dos_filetimes ( SNUM ( conn ) ) )
return - 1 ;
/* We have permission (given by the Samba admin) to
break POSIX semantics and allow a user to change
the time on a file they don ' t own but can write to
( as DOS does ) .
*/
/* Check if we have write access. */
2005-05-19 03:37:35 +04:00
if ( can_write_to_file ( conn , fname , & sbuf ) ) {
2005-03-25 01:34:28 +03:00
/* We are allowed to become root and change the filetime. */
become_root ( ) ;
ret = SMB_VFS_UTIME ( conn , fname , times ) ;
unbecome_root ( ) ;
2004-04-01 02:46:15 +04:00
}
return ret ;
1998-08-17 17:11:34 +04:00
}
/*******************************************************************
2004-04-01 02:46:15 +04:00
Change a filetime - possibly allowing DOS semantics .
1998-08-17 17:11:34 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-04-01 02:46:15 +04:00
2005-03-25 01:34:28 +03:00
BOOL set_filetime ( connection_struct * conn , const char * fname , time_t mtime )
1998-08-17 17:11:34 +04:00
{
2004-04-01 02:46:15 +04:00
struct utimbuf times ;
1998-08-17 17:11:34 +04:00
2004-04-01 02:46:15 +04:00
if ( null_mtime ( mtime ) )
return ( True ) ;
1998-08-17 17:11:34 +04:00
2004-04-01 02:46:15 +04:00
times . modtime = times . actime = mtime ;
1998-08-17 17:11:34 +04:00
2004-04-01 02:46:15 +04:00
if ( file_utime ( conn , fname , & times ) ) {
DEBUG ( 4 , ( " set_filetime(%s) failed: %s \n " , fname , strerror ( errno ) ) ) ;
return False ;
}
1998-08-17 17:11:34 +04:00
2004-04-01 02:46:15 +04:00
return ( True ) ;
1998-08-17 17:11:34 +04:00
}