2003-08-13 05:53:07 +04:00
/*
Unix SMB / CIFS implementation .
client file operations
Copyright ( C ) Andrew Tridgell 1994 - 1998
Copyright ( C ) Jeremy Allison 2001 - 2002
Copyright ( C ) James Myers 2003
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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-08-13 05:53:07 +04:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-08-13 05:53:07 +04:00
*/
# include "includes.h"
2004-11-02 06:13:06 +03:00
# include "system/filesys.h"
2004-11-01 04:03:22 +03:00
# include "libcli/raw/libcliraw.h"
2006-02-23 18:52:24 +03:00
# include "libcli/libcli.h"
2003-08-13 05:53:07 +04:00
/****************************************************************************
Hard / Symlink a file ( UNIX extensions ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
static NTSTATUS smbcli_link_internal ( struct smbcli_tree * tree ,
2004-02-10 14:33:35 +03:00
const char * fname_src ,
2007-10-07 02:28:14 +04:00
const char * fname_dst , bool hard_link )
2003-08-13 05:53:07 +04:00
{
union smb_setfileinfo parms ;
NTSTATUS status ;
if ( hard_link ) {
2003-08-15 22:33:43 +04:00
parms . generic . level = RAW_SFILEINFO_UNIX_HLINK ;
2006-03-13 01:48:25 +03:00
parms . unix_hlink . in . file . path = fname_src ;
2003-08-13 05:53:07 +04:00
parms . unix_hlink . in . link_dest = fname_dst ;
} else {
2003-08-15 22:33:43 +04:00
parms . generic . level = RAW_SFILEINFO_UNIX_LINK ;
2006-03-13 01:48:25 +03:00
parms . unix_link . in . file . path = fname_src ;
2003-08-13 05:53:07 +04:00
parms . unix_link . in . link_dest = fname_dst ;
}
2004-02-08 03:51:07 +03:00
status = smb_raw_setpathinfo ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Symlink a file ( UNIX extensions ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_unix_symlink ( struct smbcli_tree * tree , const char * fname_src ,
2004-02-10 14:33:35 +03:00
const char * fname_dst )
2003-08-13 05:53:07 +04:00
{
2007-10-07 02:28:14 +04:00
return smbcli_link_internal ( tree , fname_src , fname_dst , false ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Hard a file ( UNIX extensions ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_unix_hardlink ( struct smbcli_tree * tree , const char * fname_src ,
2004-02-10 14:33:35 +03:00
const char * fname_dst )
2003-08-13 05:53:07 +04:00
{
2007-10-07 02:28:14 +04:00
return smbcli_link_internal ( tree , fname_src , fname_dst , true ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Chmod or chown a file internal ( UNIX extensions ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
static NTSTATUS smbcli_unix_chmod_chown_internal ( struct smbcli_tree * tree ,
2004-02-10 14:33:35 +03:00
const char * fname ,
2004-05-25 20:24:13 +04:00
uint32_t mode , uint32_t uid ,
uint32_t gid )
2003-08-13 05:53:07 +04:00
{
union smb_setfileinfo parms ;
NTSTATUS status ;
parms . generic . level = SMB_SFILEINFO_UNIX_BASIC ;
2006-03-13 01:48:25 +03:00
parms . unix_basic . in . file . path = fname ;
2003-08-13 05:53:07 +04:00
parms . unix_basic . in . uid = uid ;
parms . unix_basic . in . gid = gid ;
parms . unix_basic . in . mode = mode ;
2004-02-08 03:51:07 +03:00
status = smb_raw_setpathinfo ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
chmod a file ( UNIX extensions ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_unix_chmod ( struct smbcli_tree * tree , const char * fname , mode_t mode )
2003-08-13 05:53:07 +04:00
{
2004-08-04 17:23:35 +04:00
return smbcli_unix_chmod_chown_internal ( tree , fname ,
2004-02-08 03:51:07 +03:00
unix_perms_to_wire ( mode ) ,
SMB_UID_NO_CHANGE ,
SMB_GID_NO_CHANGE ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
chown a file ( UNIX extensions ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_unix_chown ( struct smbcli_tree * tree , const char * fname , uid_t uid ,
2004-02-10 14:33:35 +03:00
gid_t gid )
2003-08-13 05:53:07 +04:00
{
2004-08-04 17:23:35 +04:00
return smbcli_unix_chmod_chown_internal ( tree , fname , SMB_MODE_NO_CHANGE ,
2004-05-25 20:24:13 +04:00
( uint32_t ) uid , ( uint32_t ) gid ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Rename a file .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_rename ( struct smbcli_tree * tree , const char * fname_src ,
2004-02-10 14:33:35 +03:00
const char * fname_dst )
2003-08-13 05:53:07 +04:00
{
2003-08-13 20:04:21 +04:00
union smb_rename parms ;
2003-08-13 05:53:07 +04:00
2003-08-13 20:04:21 +04:00
parms . generic . level = RAW_RENAME_RENAME ;
parms . rename . in . attrib = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY ;
parms . rename . in . pattern1 = fname_src ;
parms . rename . in . pattern2 = fname_dst ;
2004-02-10 14:33:35 +03:00
return smb_raw_rename ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Delete a file .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_unlink ( struct smbcli_tree * tree , const char * fname )
2003-08-13 05:53:07 +04:00
{
2006-03-10 23:49:20 +03:00
union smb_unlink parms ;
2003-08-13 05:53:07 +04:00
2006-03-10 23:49:20 +03:00
parms . unlink . in . pattern = fname ;
2003-08-13 05:53:07 +04:00
if ( strchr ( fname , ' * ' ) ) {
2006-03-10 23:49:20 +03:00
parms . unlink . in . attrib = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN ;
2003-08-13 05:53:07 +04:00
} else {
2006-03-10 23:49:20 +03:00
parms . unlink . in . attrib = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY ;
2003-08-13 05:53:07 +04:00
}
2004-02-10 14:33:35 +03:00
return smb_raw_unlink ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Create a directory .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_mkdir ( struct smbcli_tree * tree , const char * dname )
2003-08-13 05:53:07 +04:00
{
union smb_mkdir parms ;
parms . mkdir . level = RAW_MKDIR_MKDIR ;
parms . mkdir . in . path = dname ;
2004-02-10 14:33:35 +03:00
return smb_raw_mkdir ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Remove a directory .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_rmdir ( struct smbcli_tree * tree , const char * dname )
2003-08-13 05:53:07 +04:00
{
struct smb_rmdir parms ;
parms . in . path = dname ;
2004-02-10 14:33:35 +03:00
return smb_raw_rmdir ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Set or clear the delete on close flag .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-07 02:28:14 +04:00
NTSTATUS smbcli_nt_delete_on_close ( struct smbcli_tree * tree , int fnum ,
bool flag )
2003-08-13 05:53:07 +04:00
{
union smb_setfileinfo parms ;
NTSTATUS status ;
parms . disposition_info . level = RAW_SFILEINFO_DISPOSITION_INFO ;
2006-03-13 01:48:25 +03:00
parms . disposition_info . in . file . fnum = fnum ;
2003-08-13 05:53:07 +04:00
parms . disposition_info . in . delete_on_close = flag ;
2004-02-08 03:51:07 +03:00
status = smb_raw_setfileinfo ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Create / open a file - exposing the full horror of the NT API : - ) .
Used in CIFS - on - CIFS NTVFS .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
int smbcli_nt_create_full ( struct smbcli_tree * tree , const char * fname ,
2004-05-25 20:24:13 +04:00
uint32_t CreatFlags , uint32_t DesiredAccess ,
uint32_t FileAttributes , uint32_t ShareAccess ,
uint32_t CreateDisposition , uint32_t CreateOptions ,
2004-05-25 21:50:17 +04:00
uint8_t SecurityFlags )
2003-08-13 05:53:07 +04:00
{
union smb_open open_parms ;
TALLOC_CTX * mem_ctx ;
NTSTATUS status ;
mem_ctx = talloc_init ( " raw_open " ) ;
if ( ! mem_ctx ) return - 1 ;
open_parms . ntcreatex . level = RAW_OPEN_NTCREATEX ;
open_parms . ntcreatex . in . flags = CreatFlags ;
2009-10-15 11:26:19 +04:00
open_parms . ntcreatex . in . root_fid . fnum = 0 ;
2003-08-13 05:53:07 +04:00
open_parms . ntcreatex . in . access_mask = DesiredAccess ;
open_parms . ntcreatex . in . file_attr = FileAttributes ;
open_parms . ntcreatex . in . alloc_size = 0 ;
open_parms . ntcreatex . in . share_access = ShareAccess ;
open_parms . ntcreatex . in . open_disposition = CreateDisposition ;
open_parms . ntcreatex . in . create_options = CreateOptions ;
open_parms . ntcreatex . in . impersonation = 0 ;
open_parms . ntcreatex . in . security_flags = SecurityFlags ;
open_parms . ntcreatex . in . fname = fname ;
2004-02-08 03:51:07 +03:00
status = smb_raw_open ( tree , mem_ctx , & open_parms ) ;
2005-01-27 10:08:20 +03:00
talloc_free ( mem_ctx ) ;
2003-08-13 05:53:07 +04:00
if ( NT_STATUS_IS_OK ( status ) ) {
2006-03-13 01:48:25 +03:00
return open_parms . ntcreatex . out . file . fnum ;
2003-08-13 05:53:07 +04:00
}
return - 1 ;
}
/****************************************************************************
Open a file ( using SMBopenx )
WARNING : if you open with O_WRONLY then getattrE won ' t work !
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
int smbcli_open ( struct smbcli_tree * tree , const char * fname , int flags ,
2004-02-08 03:51:07 +03:00
int share_mode )
2003-08-13 05:53:07 +04:00
{
union smb_open open_parms ;
2010-01-05 20:42:54 +03:00
unsigned int openfn = 0 ;
unsigned int accessmode = 0 ;
2003-08-13 05:53:07 +04:00
TALLOC_CTX * mem_ctx ;
NTSTATUS status ;
mem_ctx = talloc_init ( " raw_open " ) ;
if ( ! mem_ctx ) return - 1 ;
if ( flags & O_CREAT ) {
openfn | = OPENX_OPEN_FUNC_CREATE ;
}
if ( ! ( flags & O_EXCL ) ) {
if ( flags & O_TRUNC ) {
openfn | = OPENX_OPEN_FUNC_TRUNC ;
} else {
openfn | = OPENX_OPEN_FUNC_OPEN ;
}
}
accessmode = ( share_mode < < OPENX_MODE_DENY_SHIFT ) ;
if ( ( flags & O_ACCMODE ) = = O_RDWR ) {
accessmode | = OPENX_MODE_ACCESS_RDWR ;
} else if ( ( flags & O_ACCMODE ) = = O_WRONLY ) {
accessmode | = OPENX_MODE_ACCESS_WRITE ;
}
# if defined(O_SYNC)
if ( ( flags & O_SYNC ) = = O_SYNC ) {
accessmode | = OPENX_MODE_WRITE_THRU ;
}
# endif
if ( share_mode = = DENY_FCB ) {
accessmode = OPENX_MODE_ACCESS_FCB | OPENX_MODE_DENY_FCB ;
}
open_parms . openx . level = RAW_OPEN_OPENX ;
open_parms . openx . in . flags = 0 ;
open_parms . openx . in . open_mode = accessmode ;
open_parms . openx . in . search_attrs = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN ;
open_parms . openx . in . file_attrs = 0 ;
open_parms . openx . in . write_time = 0 ;
open_parms . openx . in . open_func = openfn ;
open_parms . openx . in . size = 0 ;
open_parms . openx . in . timeout = 0 ;
open_parms . openx . in . fname = fname ;
2004-02-08 03:51:07 +03:00
status = smb_raw_open ( tree , mem_ctx , & open_parms ) ;
2005-01-27 10:08:20 +03:00
talloc_free ( mem_ctx ) ;
2003-08-13 05:53:07 +04:00
if ( NT_STATUS_IS_OK ( status ) ) {
2006-03-13 01:48:25 +03:00
return open_parms . openx . out . file . fnum ;
2003-08-13 05:53:07 +04:00
}
return - 1 ;
}
/****************************************************************************
Close a file .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_close ( struct smbcli_tree * tree , int fnum )
2003-08-13 05:53:07 +04:00
{
union smb_close close_parms ;
NTSTATUS status ;
close_parms . close . level = RAW_CLOSE_CLOSE ;
2006-03-13 01:48:25 +03:00
close_parms . close . in . file . fnum = fnum ;
2003-08-13 05:53:07 +04:00
close_parms . close . in . write_time = 0 ;
2004-02-08 03:51:07 +03:00
status = smb_raw_close ( tree , & close_parms ) ;
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
send a lock with a specified locktype
this is used for testing LOCKING_ANDX_CANCEL_LOCK
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_locktype ( struct smbcli_tree * tree , int fnum ,
2004-05-25 20:24:13 +04:00
uint32_t offset , uint32_t len , int timeout ,
2004-05-29 12:11:46 +04:00
uint8_t locktype )
2003-08-13 05:53:07 +04:00
{
union smb_lock parms ;
struct smb_lock_entry lock [ 1 ] ;
NTSTATUS status ;
parms . lockx . level = RAW_LOCK_LOCKX ;
2006-03-13 01:48:25 +03:00
parms . lockx . in . file . fnum = fnum ;
2003-08-13 05:53:07 +04:00
parms . lockx . in . mode = locktype ;
parms . lockx . in . timeout = timeout ;
parms . lockx . in . ulock_cnt = 0 ;
parms . lockx . in . lock_cnt = 1 ;
2004-02-08 03:51:07 +03:00
lock [ 0 ] . pid = tree - > session - > pid ;
2003-08-13 05:53:07 +04:00
lock [ 0 ] . offset = offset ;
lock [ 0 ] . count = len ;
parms . lockx . in . locks = & lock [ 0 ] ;
2004-02-08 03:51:07 +03:00
status = smb_raw_lock ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
return status ;
}
/****************************************************************************
Lock a file .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_lock ( struct smbcli_tree * tree , int fnum ,
2004-05-25 20:24:13 +04:00
uint32_t offset , uint32_t len , int timeout ,
2004-02-10 14:33:35 +03:00
enum brl_type lock_type )
2003-08-13 05:53:07 +04:00
{
union smb_lock parms ;
struct smb_lock_entry lock [ 1 ] ;
NTSTATUS status ;
parms . lockx . level = RAW_LOCK_LOCKX ;
2006-03-13 01:48:25 +03:00
parms . lockx . in . file . fnum = fnum ;
2003-08-13 05:53:07 +04:00
parms . lockx . in . mode = ( lock_type = = READ_LOCK ? 1 : 0 ) ;
parms . lockx . in . timeout = timeout ;
parms . lockx . in . ulock_cnt = 0 ;
parms . lockx . in . lock_cnt = 1 ;
2004-02-08 03:51:07 +03:00
lock [ 0 ] . pid = tree - > session - > pid ;
2003-08-13 05:53:07 +04:00
lock [ 0 ] . offset = offset ;
lock [ 0 ] . count = len ;
parms . lockx . in . locks = & lock [ 0 ] ;
2004-02-08 03:51:07 +03:00
status = smb_raw_lock ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Unlock a file .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_unlock ( struct smbcli_tree * tree , int fnum , uint32_t offset , uint32_t len )
2003-08-13 05:53:07 +04:00
{
union smb_lock parms ;
struct smb_lock_entry lock [ 1 ] ;
NTSTATUS status ;
parms . lockx . level = RAW_LOCK_LOCKX ;
2006-03-13 01:48:25 +03:00
parms . lockx . in . file . fnum = fnum ;
2003-08-13 05:53:07 +04:00
parms . lockx . in . mode = 0 ;
parms . lockx . in . timeout = 0 ;
parms . lockx . in . ulock_cnt = 1 ;
parms . lockx . in . lock_cnt = 0 ;
2004-02-08 03:51:07 +03:00
lock [ 0 ] . pid = tree - > session - > pid ;
2003-08-13 05:53:07 +04:00
lock [ 0 ] . offset = offset ;
lock [ 0 ] . count = len ;
parms . lockx . in . locks = & lock [ 0 ] ;
2004-02-08 03:51:07 +03:00
status = smb_raw_lock ( tree , & parms ) ;
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Lock a file with 64 bit offsets .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_lock64 ( struct smbcli_tree * tree , int fnum ,
2004-11-01 23:21:54 +03:00
off_t offset , off_t len , int timeout ,
2004-02-10 14:33:35 +03:00
enum brl_type lock_type )
2003-08-13 05:53:07 +04:00
{
union smb_lock parms ;
int ltype ;
struct smb_lock_entry lock [ 1 ] ;
NTSTATUS status ;
2004-02-08 03:51:07 +03:00
if ( ! ( tree - > session - > transport - > negotiate . capabilities & CAP_LARGE_FILES ) ) {
2004-08-04 17:23:35 +04:00
return smbcli_lock ( tree , fnum , offset , len , timeout , lock_type ) ;
2003-08-13 05:53:07 +04:00
}
parms . lockx . level = RAW_LOCK_LOCKX ;
2006-03-13 01:48:25 +03:00
parms . lockx . in . file . fnum = fnum ;
2003-08-13 05:53:07 +04:00
ltype = ( lock_type = = READ_LOCK ? 1 : 0 ) ;
ltype | = LOCKING_ANDX_LARGE_FILES ;
parms . lockx . in . mode = ltype ;
parms . lockx . in . timeout = timeout ;
parms . lockx . in . ulock_cnt = 0 ;
parms . lockx . in . lock_cnt = 1 ;
2004-02-08 03:51:07 +03:00
lock [ 0 ] . pid = tree - > session - > pid ;
2003-08-13 05:53:07 +04:00
lock [ 0 ] . offset = offset ;
lock [ 0 ] . count = len ;
parms . lockx . in . locks = & lock [ 0 ] ;
2004-02-08 03:51:07 +03:00
status = smb_raw_lock ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Unlock a file with 64 bit offsets .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-11-01 23:21:54 +03:00
NTSTATUS smbcli_unlock64 ( struct smbcli_tree * tree , int fnum , off_t offset ,
off_t len )
2003-08-13 05:53:07 +04:00
{
union smb_lock parms ;
struct smb_lock_entry lock [ 1 ] ;
NTSTATUS status ;
2004-02-08 03:51:07 +03:00
if ( ! ( tree - > session - > transport - > negotiate . capabilities & CAP_LARGE_FILES ) ) {
2004-08-04 17:23:35 +04:00
return smbcli_unlock ( tree , fnum , offset , len ) ;
2003-08-13 05:53:07 +04:00
}
parms . lockx . level = RAW_LOCK_LOCKX ;
2006-03-13 01:48:25 +03:00
parms . lockx . in . file . fnum = fnum ;
2003-08-13 05:53:07 +04:00
parms . lockx . in . mode = LOCKING_ANDX_LARGE_FILES ;
parms . lockx . in . timeout = 0 ;
parms . lockx . in . ulock_cnt = 1 ;
parms . lockx . in . lock_cnt = 0 ;
2004-02-08 03:51:07 +03:00
lock [ 0 ] . pid = tree - > session - > pid ;
2003-08-13 05:53:07 +04:00
lock [ 0 ] . offset = offset ;
lock [ 0 ] . count = len ;
parms . lockx . in . locks = & lock [ 0 ] ;
2004-02-08 03:51:07 +03:00
status = smb_raw_lock ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Do a SMBgetattrE call .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_getattrE ( struct smbcli_tree * tree , int fnum ,
2004-05-25 21:24:24 +04:00
uint16_t * attr , size_t * size ,
2004-02-10 14:33:35 +03:00
time_t * c_time , time_t * a_time , time_t * m_time )
2003-08-13 05:53:07 +04:00
{
union smb_fileinfo parms ;
NTSTATUS status ;
parms . getattre . level = RAW_FILEINFO_GETATTRE ;
2006-03-13 01:48:25 +03:00
parms . getattre . in . file . fnum = fnum ;
2003-08-13 05:53:07 +04:00
2004-02-08 03:51:07 +03:00
status = smb_raw_fileinfo ( tree , NULL , & parms ) ;
2003-08-13 05:53:07 +04:00
if ( ! NT_STATUS_IS_OK ( status ) )
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
if ( size ) {
* size = parms . getattre . out . size ;
}
if ( attr ) {
* attr = parms . getattre . out . attrib ;
}
if ( c_time ) {
* c_time = parms . getattre . out . create_time ;
}
if ( a_time ) {
2003-08-15 01:56:26 +04:00
* a_time = parms . getattre . out . access_time ;
2003-08-13 05:53:07 +04:00
}
if ( m_time ) {
2003-08-15 01:56:26 +04:00
* m_time = parms . getattre . out . write_time ;
2003-08-13 05:53:07 +04:00
}
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Do a SMBgetatr call
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_getatr ( struct smbcli_tree * tree , const char * fname ,
2004-05-25 21:24:24 +04:00
uint16_t * attr , size_t * size , time_t * t )
2003-08-13 05:53:07 +04:00
{
union smb_fileinfo parms ;
NTSTATUS status ;
parms . getattr . level = RAW_FILEINFO_GETATTR ;
2006-03-13 01:48:25 +03:00
parms . getattr . in . file . path = fname ;
2003-08-13 05:53:07 +04:00
2004-02-08 03:51:07 +03:00
status = smb_raw_pathinfo ( tree , NULL , & parms ) ;
2003-08-13 05:53:07 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
if ( size ) {
* size = parms . getattr . out . size ;
}
if ( t ) {
* t = parms . getattr . out . write_time ;
}
if ( attr ) {
* attr = parms . getattr . out . attrib ;
}
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Do a SMBsetatr call .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_setatr ( struct smbcli_tree * tree , const char * fname , uint16_t mode ,
2004-02-10 14:33:35 +03:00
time_t t )
2003-08-13 05:53:07 +04:00
{
union smb_setfileinfo parms ;
parms . setattr . level = RAW_SFILEINFO_SETATTR ;
2006-03-13 01:48:25 +03:00
parms . setattr . in . file . path = fname ;
2003-08-13 05:53:07 +04:00
parms . setattr . in . attrib = mode ;
parms . setattr . in . write_time = t ;
2006-04-06 15:06:28 +04:00
return smb_raw_setpathinfo ( tree , & parms ) ;
2006-04-06 07:31:31 +04:00
}
/****************************************************************************
Do a setfileinfo basic_info call .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NTSTATUS smbcli_fsetatr ( struct smbcli_tree * tree , int fnum , uint16_t mode ,
NTTIME create_time , NTTIME access_time ,
NTTIME write_time , NTTIME change_time )
{
union smb_setfileinfo parms ;
parms . basic_info . level = RAW_SFILEINFO_BASIC_INFO ;
parms . basic_info . in . file . fnum = fnum ;
parms . basic_info . in . attrib = mode ;
parms . basic_info . in . create_time = create_time ;
parms . basic_info . in . access_time = access_time ;
parms . basic_info . in . write_time = write_time ;
parms . basic_info . in . change_time = change_time ;
2006-04-06 15:06:28 +04:00
return smb_raw_setfileinfo ( tree , & parms ) ;
}
2006-04-06 07:31:31 +04:00
2006-04-06 15:06:28 +04:00
/****************************************************************************
truncate a file to a given size
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NTSTATUS smbcli_ftruncate ( struct smbcli_tree * tree , int fnum , uint64_t size )
{
union smb_setfileinfo parms ;
parms . end_of_file_info . level = RAW_SFILEINFO_END_OF_FILE_INFO ;
parms . end_of_file_info . in . file . fnum = fnum ;
parms . end_of_file_info . in . size = size ;
return smb_raw_setfileinfo ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Check for existence of a dir .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
NTSTATUS smbcli_chkpath ( struct smbcli_tree * tree , const char * path )
2003-08-13 05:53:07 +04:00
{
2006-03-10 23:49:20 +03:00
union smb_chkpath parms ;
2003-08-13 05:53:07 +04:00
char * path2 ;
NTSTATUS status ;
path2 = strdup ( path ) ;
trim_string ( path2 , NULL , " \\ " ) ;
if ( ! * path2 ) {
free ( path2 ) ;
path2 = strdup ( " \\ " ) ;
}
2006-03-10 23:49:20 +03:00
parms . chkpath . in . path = path2 ;
2004-02-08 03:51:07 +03:00
status = smb_raw_chkpath ( tree , & parms ) ;
2003-08-13 05:53:07 +04:00
free ( path2 ) ;
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Query disk space .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-05-15 14:45:30 +04:00
NTSTATUS smbcli_dskattr ( struct smbcli_tree * tree , uint32_t * bsize ,
uint64_t * total , uint64_t * avail )
2003-08-13 05:53:07 +04:00
{
union smb_fsinfo fsinfo_parms ;
TALLOC_CTX * mem_ctx ;
NTSTATUS status ;
2004-08-04 17:23:35 +04:00
mem_ctx = talloc_init ( " smbcli_dskattr " ) ;
2003-08-13 05:53:07 +04:00
2008-05-15 14:45:30 +04:00
fsinfo_parms . dskattr . level = RAW_QFS_SIZE_INFO ;
2004-02-08 03:51:07 +03:00
status = smb_raw_fsinfo ( tree , mem_ctx , & fsinfo_parms ) ;
2003-08-13 05:53:07 +04:00
if ( NT_STATUS_IS_OK ( status ) ) {
2008-05-15 14:45:30 +04:00
* bsize = fsinfo_parms . size_info . out . bytes_per_sector * fsinfo_parms . size_info . out . sectors_per_unit ;
* total = fsinfo_parms . size_info . out . total_alloc_units ;
* avail = fsinfo_parms . size_info . out . avail_alloc_units ;
2003-08-13 05:53:07 +04:00
}
2005-01-27 10:08:20 +03:00
talloc_free ( mem_ctx ) ;
2003-08-13 05:53:07 +04:00
2004-02-10 14:33:35 +03:00
return status ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
Create and open a temporary file .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-08-04 17:23:35 +04:00
int smbcli_ctemp ( struct smbcli_tree * tree , const char * path , char * * tmp_path )
2003-08-13 05:53:07 +04:00
{
union smb_open open_parms ;
TALLOC_CTX * mem_ctx ;
NTSTATUS status ;
2013-04-22 19:23:16 +04:00
int ret = - 1 ;
2003-08-13 05:53:07 +04:00
mem_ctx = talloc_init ( " raw_open " ) ;
2013-04-22 19:23:16 +04:00
if ( ! mem_ctx ) return ret ;
2003-08-13 05:53:07 +04:00
open_parms . openx . level = RAW_OPEN_CTEMP ;
open_parms . ctemp . in . attrib = 0 ;
open_parms . ctemp . in . directory = path ;
2004-08-03 08:15:05 +04:00
open_parms . ctemp . in . write_time = 0 ;
2003-08-13 05:53:07 +04:00
2004-02-08 03:51:07 +03:00
status = smb_raw_open ( tree , mem_ctx , & open_parms ) ;
2003-08-13 05:53:07 +04:00
if ( NT_STATUS_IS_OK ( status ) ) {
2013-04-22 19:23:16 +04:00
if ( tmp_path ) {
* tmp_path = strdup ( open_parms . ctemp . out . name ) ;
}
ret = open_parms . ctemp . out . file . fnum ;
2003-08-13 05:53:07 +04:00
}
2013-04-22 19:23:16 +04:00
talloc_free ( mem_ctx ) ;
return ret ;
2003-08-13 05:53:07 +04:00
}