2007-09-13 01:48:20 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1996-05-04 11:50:46 +04:00
Directory handling routines
1998-01-22 16:27:43 +03:00
Copyright ( C ) Andrew Tridgell 1992 - 1998
2007-09-13 01:48:20 +04:00
Copyright ( C ) Jeremy Allison 2007
1996-05-04 11:50:46 +04:00
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-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
1996-05-04 11:50:46 +04:00
( at your option ) any later version .
2007-09-13 01:48:20 +04:00
1996-05-04 11:50:46 +04:00
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 .
2007-09-13 01:48:20 +04:00
1996-05-04 11:50:46 +04:00
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
1996-05-04 11:50:46 +04:00
*/
# include "includes.h"
2009-01-08 14:03:45 +03:00
# include "smbd/globals.h"
2010-10-12 08:27:50 +04:00
# include "libcli/security/security.h"
1996-05-04 11:50:46 +04:00
/*
This module implements directory related functions for Samba .
*/
2005-07-22 00:24:21 +04:00
/* "Special" directory offsets. */
# define END_OF_DIRECTORY_OFFSET ((long)-1)
# define START_OF_DIRECTORY_OFFSET ((long)0)
# define DOT_DOT_DIRECTORY_OFFSET ((long)0x80000000)
2005-02-01 03:28:20 +03:00
/* Make directory handle internals available. */
struct name_cache_entry {
char * name ;
long offset ;
} ;
struct smb_Dir {
connection_struct * conn ;
2005-08-22 22:03:08 +04:00
SMB_STRUCT_DIR * dir ;
2005-02-01 03:28:20 +03:00
long offset ;
char * dir_path ;
2007-08-24 01:53:00 +04:00
size_t name_cache_size ;
2005-02-01 03:28:20 +03:00
struct name_cache_entry * name_cache ;
unsigned int name_cache_index ;
2005-06-11 03:13:25 +04:00
unsigned int file_number ;
2005-02-01 03:28:20 +03:00
} ;
struct dptr_struct {
struct dptr_struct * next , * prev ;
1999-12-13 16:27:58 +03:00
int dnum ;
uint16 spid ;
2005-02-01 03:28:20 +03:00
struct connection_struct * conn ;
struct smb_Dir * dir_hnd ;
2007-10-19 04:40:25 +04:00
bool expect_close ;
2005-02-01 03:28:20 +03:00
char * wcard ;
2005-06-25 07:03:44 +04:00
uint32 attr ;
1998-08-14 21:38:29 +04:00
char * path ;
2007-10-19 04:40:25 +04:00
bool has_wild ; /* Set to true if the wcard entry has MS wildcard characters in it. */
bool did_stat ; /* Optimisation for non-wcard searches. */
2005-02-01 03:28:20 +03:00
} ;
1996-05-04 11:50:46 +04:00
2011-02-10 03:31:06 +03:00
static struct smb_Dir * OpenDir_fsp ( TALLOC_CTX * mem_ctx , connection_struct * conn ,
files_struct * fsp ,
const char * mask ,
uint32 attr ) ;
1996-05-04 11:50:46 +04:00
1999-12-13 16:27:58 +03:00
# define INVALID_DPTR_KEY (-3)
2005-05-01 14:00:14 +04:00
/****************************************************************************
Make a dir struct .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool make_dir_struct ( TALLOC_CTX * ctx ,
2007-09-13 01:48:20 +04:00
char * buf ,
const char * mask ,
const char * fname ,
SMB_OFF_T size ,
uint32 mode ,
time_t date ,
2007-10-19 04:40:25 +04:00
bool uc )
2007-09-13 01:48:20 +04:00
{
2005-05-01 14:00:14 +04:00
char * p ;
2007-09-13 01:48:20 +04:00
char * mask2 = talloc_strdup ( ctx , mask ) ;
2005-05-01 14:00:14 +04:00
2007-09-13 01:48:20 +04:00
if ( ! mask2 ) {
return False ;
}
2005-05-01 14:00:14 +04:00
2007-09-13 01:48:20 +04:00
if ( ( mode & aDIR ) ! = 0 ) {
2005-05-01 14:00:14 +04:00
size = 0 ;
2007-09-13 01:48:20 +04:00
}
2005-05-01 14:00:14 +04:00
memset ( buf + 1 , ' ' , 11 ) ;
if ( ( p = strchr_m ( mask2 , ' . ' ) ) ! = NULL ) {
* p = 0 ;
push_ascii ( buf + 1 , mask2 , 8 , 0 ) ;
push_ascii ( buf + 9 , p + 1 , 3 , 0 ) ;
* p = ' . ' ;
2007-09-13 01:48:20 +04:00
} else {
2005-05-01 14:00:14 +04:00
push_ascii ( buf + 1 , mask2 , 11 , 0 ) ;
2007-09-13 01:48:20 +04:00
}
2005-05-01 14:00:14 +04:00
memset ( buf + 21 , ' \0 ' , DIR_STRUCT_SIZE - 21 ) ;
SCVAL ( buf , 21 , mode ) ;
2005-11-05 07:21:55 +03:00
srv_put_dos_date ( buf , 22 , date ) ;
2005-05-01 14:00:14 +04:00
SSVAL ( buf , 26 , size & 0xFFFF ) ;
SSVAL ( buf , 28 , ( size > > 16 ) & 0xFFFF ) ;
/* We only uppercase if FLAGS2_LONG_PATH_COMPONENTS is zero in the input buf.
Strange , but verified on W2K3 . Needed for OS / 2. JRA . */
push_ascii ( buf + 30 , fname , 12 , uc ? STR_UPPER : 0 ) ;
DEBUG ( 8 , ( " put name [%s] from [%s] into dir struct \n " , buf + 30 , fname ) ) ;
2007-09-13 01:48:20 +04:00
return True ;
2005-05-01 14:00:14 +04:00
}
1996-05-04 11:50:46 +04:00
/****************************************************************************
1999-12-13 16:27:58 +03:00
Initialise the dir bitmap .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
bool init_dptrs ( struct smbd_server_connection * sconn )
1996-05-04 11:50:46 +04:00
{
2009-08-06 14:15:51 +04:00
if ( sconn - > smb1 . searches . dptr_bmap ) {
return true ;
}
1999-12-13 16:27:58 +03:00
2010-03-28 16:16:55 +04:00
sconn - > smb1 . searches . dptr_bmap = bitmap_talloc (
sconn , MAX_DIRECTORY_HANDLES ) ;
2009-08-06 14:15:51 +04:00
if ( sconn - > smb1 . searches . dptr_bmap = = NULL ) {
return false ;
}
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
return true ;
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
1999-12-13 16:27:58 +03:00
Idle a dptr - the directory is closed but the control info is kept .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2005-02-01 03:28:20 +03:00
static void dptr_idle ( struct dptr_struct * dptr )
1996-05-04 11:50:46 +04:00
{
2005-02-01 03:28:20 +03:00
if ( dptr - > dir_hnd ) {
2003-01-03 21:50:13 +03:00
DEBUG ( 4 , ( " Idling dptr dnum %d \n " , dptr - > dnum ) ) ;
2008-01-12 19:08:04 +03:00
TALLOC_FREE ( dptr - > dir_hnd ) ;
2003-01-03 21:50:13 +03:00
}
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
1999-12-13 16:27:58 +03:00
Idle the oldest dptr .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
static void dptr_idleoldest ( struct smbd_server_connection * sconn )
1996-05-04 11:50:46 +04:00
{
2005-02-01 03:28:20 +03:00
struct dptr_struct * dptr ;
2003-01-03 21:50:13 +03:00
/*
* Go to the end of the list .
*/
2010-02-06 04:42:29 +03:00
dptr = DLIST_TAIL ( sconn - > smb1 . searches . dirptrs ) ;
2003-01-03 21:50:13 +03:00
if ( ! dptr ) {
DEBUG ( 0 , ( " No dptrs available to idle ? \n " ) ) ;
return ;
}
/*
* Idle the oldest pointer .
*/
2010-02-06 04:42:29 +03:00
for ( ; dptr ; dptr = DLIST_PREV ( dptr ) ) {
2005-02-01 03:28:20 +03:00
if ( dptr - > dir_hnd ) {
2003-01-03 21:50:13 +03:00
dptr_idle ( dptr ) ;
return ;
}
}
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
2005-02-01 03:28:20 +03:00
Get the struct dptr_struct for a dir index .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
static struct dptr_struct * dptr_get ( struct smbd_server_connection * sconn ,
int key , bool forclose )
1996-05-04 11:50:46 +04:00
{
2005-02-01 03:28:20 +03:00
struct dptr_struct * dptr ;
2003-01-03 21:50:13 +03:00
2009-08-06 14:15:51 +04:00
for ( dptr = sconn - > smb1 . searches . dirptrs ; dptr ; dptr = dptr - > next ) {
2003-01-03 21:50:13 +03:00
if ( dptr - > dnum = = key ) {
2005-02-01 03:28:20 +03:00
if ( ! forclose & & ! dptr - > dir_hnd ) {
2009-08-06 14:15:51 +04:00
if ( sconn - > smb1 . searches . dirhandles_open > = MAX_OPEN_DIRECTORIES )
dptr_idleoldest ( sconn ) ;
2005-02-01 03:28:20 +03:00
DEBUG ( 4 , ( " dptr_get: Reopening dptr key %d \n " , key ) ) ;
2008-01-12 19:08:04 +03:00
if ( ! ( dptr - > dir_hnd = OpenDir (
2011-02-10 03:31:06 +03:00
NULL , dptr - > conn , dptr - > path ,
2008-01-12 19:08:04 +03:00
dptr - > wcard , dptr - > attr ) ) ) {
2005-02-01 03:28:20 +03:00
DEBUG ( 4 , ( " dptr_get: Failed to open %s (%s) \n " , dptr - > path ,
strerror ( errno ) ) ) ;
return False ;
}
2003-01-03 21:50:13 +03:00
}
2009-08-06 14:15:51 +04:00
DLIST_PROMOTE ( sconn - > smb1 . searches . dirptrs , dptr ) ;
2003-01-03 21:50:13 +03:00
return dptr ;
}
}
return ( NULL ) ;
1996-05-04 11:50:46 +04:00
}
1999-12-13 16:27:58 +03:00
/****************************************************************************
Get the dir path for a dir index .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-08-06 14:15:51 +04:00
char * dptr_path ( struct smbd_server_connection * sconn , int key )
1996-05-04 11:50:46 +04:00
{
2009-08-06 14:15:51 +04:00
struct dptr_struct * dptr = dptr_get ( sconn , key , false ) ;
2003-01-03 21:50:13 +03:00
if ( dptr )
return ( dptr - > path ) ;
return ( NULL ) ;
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
2005-02-01 03:28:20 +03:00
Get the dir wcard for a dir index .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
char * dptr_wcard ( struct smbd_server_connection * sconn , int key )
1996-05-04 11:50:46 +04:00
{
2009-08-06 14:15:51 +04:00
struct dptr_struct * dptr = dptr_get ( sconn , key , false ) ;
2003-01-03 21:50:13 +03:00
if ( dptr )
return ( dptr - > wcard ) ;
return ( NULL ) ;
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
2005-02-01 03:28:20 +03:00
Get the dir attrib for a dir index .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
uint16 dptr_attr ( struct smbd_server_connection * sconn , int key )
1996-05-04 11:50:46 +04:00
{
2009-08-06 14:15:51 +04:00
struct dptr_struct * dptr = dptr_get ( sconn , key , false ) ;
2005-02-01 03:28:20 +03:00
if ( dptr )
return ( dptr - > attr ) ;
return ( 0 ) ;
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
1999-12-13 16:27:58 +03:00
Close a dptr ( internal func ) .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2005-02-01 03:28:20 +03:00
static void dptr_close_internal ( struct dptr_struct * dptr )
1996-05-04 11:50:46 +04:00
{
2009-08-06 14:15:51 +04:00
struct smbd_server_connection * sconn = dptr - > conn - > sconn ;
2003-01-03 21:50:13 +03:00
DEBUG ( 4 , ( " closing dptr key %d \n " , dptr - > dnum ) ) ;
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
if ( sconn = = NULL ) {
goto done ;
}
DLIST_REMOVE ( sconn - > smb1 . searches . dirptrs , dptr ) ;
1999-12-13 16:27:58 +03:00
2007-09-13 01:48:20 +04:00
/*
2003-01-03 21:50:13 +03:00
* Free the dnum in the bitmap . Remember the dnum value is always
* biased by one with respect to the bitmap .
*/
1999-12-13 16:27:58 +03:00
2010-04-24 12:49:06 +04:00
if ( ! bitmap_query ( sconn - > smb1 . searches . dptr_bmap , dptr - > dnum - 1 ) ) {
2003-01-03 21:50:13 +03:00
DEBUG ( 0 , ( " dptr_close_internal : Error - closing dnum = %d and bitmap not set ! \n " ,
1999-12-13 16:27:58 +03:00
dptr - > dnum ) ) ;
2003-01-03 21:50:13 +03:00
}
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
bitmap_clear ( sconn - > smb1 . searches . dptr_bmap , dptr - > dnum - 1 ) ;
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
done :
2008-01-12 19:08:04 +03:00
TALLOC_FREE ( dptr - > dir_hnd ) ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
/* Lanman 2 specific code */
SAFE_FREE ( dptr - > wcard ) ;
string_set ( & dptr - > path , " " ) ;
SAFE_FREE ( dptr ) ;
1999-12-13 16:27:58 +03:00
}
/****************************************************************************
Close a dptr given a key .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-08-06 14:15:51 +04:00
void dptr_close ( struct smbd_server_connection * sconn , int * key )
1999-12-13 16:27:58 +03:00
{
2005-02-01 03:28:20 +03:00
struct dptr_struct * dptr ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
if ( * key = = INVALID_DPTR_KEY )
return ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
/* OS/2 seems to use -1 to indicate "close all directories" */
if ( * key = = - 1 ) {
2005-02-01 03:28:20 +03:00
struct dptr_struct * next ;
2009-08-06 14:15:51 +04:00
for ( dptr = sconn - > smb1 . searches . dirptrs ; dptr ; dptr = next ) {
2003-01-03 21:50:13 +03:00
next = dptr - > next ;
dptr_close_internal ( dptr ) ;
}
* key = INVALID_DPTR_KEY ;
return ;
}
1996-05-05 15:23:23 +04:00
2009-08-06 14:15:51 +04:00
dptr = dptr_get ( sconn , * key , true ) ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
if ( ! dptr ) {
DEBUG ( 0 , ( " Invalid key %d given to dptr_close \n " , * key ) ) ;
return ;
}
1996-05-05 15:23:23 +04:00
2003-01-03 21:50:13 +03:00
dptr_close_internal ( dptr ) ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
* key = INVALID_DPTR_KEY ;
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
1999-12-13 16:27:58 +03:00
Close all dptrs for a cnum .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
1998-08-14 21:38:29 +04:00
void dptr_closecnum ( connection_struct * conn )
1996-05-04 11:50:46 +04:00
{
2005-02-01 03:28:20 +03:00
struct dptr_struct * dptr , * next ;
2009-08-06 14:15:51 +04:00
struct smbd_server_connection * sconn = conn - > sconn ;
if ( sconn = = NULL ) {
return ;
}
for ( dptr = sconn - > smb1 . searches . dirptrs ; dptr ; dptr = next ) {
2003-01-03 21:50:13 +03:00
next = dptr - > next ;
2009-08-06 14:15:51 +04:00
if ( dptr - > conn = = conn ) {
2003-01-03 21:50:13 +03:00
dptr_close_internal ( dptr ) ;
2009-08-06 14:15:51 +04:00
}
2003-01-03 21:50:13 +03:00
}
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
1999-12-13 16:27:58 +03:00
Idle all dptrs for a cnum .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
1998-08-14 21:38:29 +04:00
void dptr_idlecnum ( connection_struct * conn )
1996-05-04 11:50:46 +04:00
{
2005-02-01 03:28:20 +03:00
struct dptr_struct * dptr ;
2009-08-06 14:15:51 +04:00
struct smbd_server_connection * sconn = conn - > sconn ;
if ( sconn = = NULL ) {
return ;
}
for ( dptr = sconn - > smb1 . searches . dirptrs ; dptr ; dptr = dptr - > next ) {
if ( dptr - > conn = = conn & & dptr - > dir_hnd ) {
2003-01-03 21:50:13 +03:00
dptr_idle ( dptr ) ;
2009-08-06 14:15:51 +04:00
}
2003-01-03 21:50:13 +03:00
}
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
1999-12-13 16:27:58 +03:00
Close a dptr that matches a given path , only if it matches the spid also .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
void dptr_closepath ( struct smbd_server_connection * sconn ,
char * path , uint16 spid )
1996-05-04 11:50:46 +04:00
{
2005-02-01 03:28:20 +03:00
struct dptr_struct * dptr , * next ;
2009-08-06 14:15:51 +04:00
for ( dptr = sconn - > smb1 . searches . dirptrs ; dptr ; dptr = next ) {
2003-01-03 21:50:13 +03:00
next = dptr - > next ;
if ( spid = = dptr - > spid & & strequal ( dptr - > path , path ) )
dptr_close_internal ( dptr ) ;
}
1996-05-04 11:50:46 +04:00
}
1999-12-13 16:27:58 +03:00
/****************************************************************************
Try and close the oldest handle not marked for
expect close in the hope that the client has
finished with that one .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-08-06 14:15:51 +04:00
static void dptr_close_oldest ( struct smbd_server_connection * sconn ,
bool old )
1999-12-13 16:27:58 +03:00
{
2005-02-01 03:28:20 +03:00
struct dptr_struct * dptr ;
2003-01-03 21:50:13 +03:00
/*
* Go to the end of the list .
*/
2009-08-06 14:15:51 +04:00
for ( dptr = sconn - > smb1 . searches . dirptrs ; dptr & & dptr - > next ; dptr = dptr - > next )
2003-01-03 21:50:13 +03:00
;
if ( ! dptr ) {
DEBUG ( 0 , ( " No old dptrs available to close oldest ? \n " ) ) ;
return ;
}
/*
* If ' old ' is true , close the oldest oldhandle dnum ( ie . 1 < dnum < 256 ) that
* does not have expect_close set . If ' old ' is false , close
* one of the new dnum handles .
*/
2010-02-06 04:42:29 +03:00
for ( ; dptr ; dptr = DLIST_PREV ( dptr ) ) {
2003-01-03 21:50:13 +03:00
if ( ( old & & ( dptr - > dnum < 256 ) & & ! dptr - > expect_close ) | |
( ! old & & ( dptr - > dnum > 255 ) ) ) {
dptr_close_internal ( dptr ) ;
return ;
}
}
1999-12-13 16:27:58 +03:00
}
1996-05-04 11:50:46 +04:00
/****************************************************************************
1999-12-13 16:27:58 +03:00
Create a new dir ptr . If the flag old_handle is true then we must allocate
from the bitmap range 0 - 255 as old SMBsearch directory handles are only
one byte long . If old_handle is false we allocate from the range
256 - MAX_DIRECTORY_HANDLES . We bias the number we return by 1 to ensure
2005-02-01 03:28:20 +03:00
a directory handle is never zero .
2005-08-13 03:45:16 +04:00
wcard must not be zero .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2011-02-10 02:05:58 +03:00
NTSTATUS dptr_create ( connection_struct * conn , files_struct * fsp ,
const char * path , bool old_handle , bool expect_close , uint16 spid ,
2007-10-19 04:40:25 +04:00
const char * wcard , bool wcard_has_wild , uint32 attr , struct dptr_struct * * dptr_ret )
1996-05-04 11:50:46 +04:00
{
2009-08-06 14:15:51 +04:00
struct smbd_server_connection * sconn = conn - > sconn ;
2005-02-01 03:28:20 +03:00
struct dptr_struct * dptr = NULL ;
struct smb_Dir * dir_hnd ;
2007-01-17 05:09:37 +03:00
NTSTATUS status ;
2005-02-01 03:28:20 +03:00
2011-02-10 02:05:58 +03:00
if ( fsp & & fsp - > is_directory & & fsp - > fh - > fd ! = - 1 ) {
path = fsp - > fsp_name - > base_name ;
}
2005-02-01 03:28:20 +03:00
DEBUG ( 5 , ( " dptr_create dir=%s \n " , path ) ) ;
1996-05-04 11:50:46 +04:00
2009-08-06 14:15:51 +04:00
if ( sconn = = NULL ) {
DEBUG ( 0 , ( " dptr_create: called with fake connection_struct \n " ) ) ;
return NT_STATUS_INTERNAL_ERROR ;
}
2005-08-13 03:45:16 +04:00
if ( ! wcard ) {
2007-01-17 05:09:37 +03:00
return NT_STATUS_INVALID_PARAMETER ;
2005-08-13 03:45:16 +04:00
}
2011-02-10 03:31:06 +03:00
if ( fsp ) {
dir_hnd = OpenDir_fsp ( NULL , conn , fsp , wcard , attr ) ;
} else {
2011-02-10 02:05:58 +03:00
status = check_name ( conn , path ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
return status ;
}
2011-02-10 03:31:06 +03:00
dir_hnd = OpenDir ( NULL , conn , path , wcard , attr ) ;
2007-01-17 05:09:37 +03:00
}
1996-05-04 11:50:46 +04:00
2005-02-01 03:28:20 +03:00
if ( ! dir_hnd ) {
2007-01-17 05:09:37 +03:00
return map_nt_error_from_unix ( errno ) ;
2005-02-01 03:28:20 +03:00
}
2009-08-06 14:15:51 +04:00
if ( sconn - > smb1 . searches . dirhandles_open > = MAX_OPEN_DIRECTORIES ) {
dptr_idleoldest ( sconn ) ;
2007-01-17 05:09:37 +03:00
}
1999-12-13 16:27:58 +03:00
2005-02-01 03:28:20 +03:00
dptr = SMB_MALLOC_P ( struct dptr_struct ) ;
2003-01-03 21:50:13 +03:00
if ( ! dptr ) {
DEBUG ( 0 , ( " malloc fail in dptr_create. \n " ) ) ;
2008-01-12 19:08:04 +03:00
TALLOC_FREE ( dir_hnd ) ;
2007-01-17 05:09:37 +03:00
return NT_STATUS_NO_MEMORY ;
2003-01-03 21:50:13 +03:00
}
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
ZERO_STRUCTP ( dptr ) ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
if ( old_handle ) {
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
/*
* This is an old - style SMBsearch request . Ensure the
* value we return will fit in the range 1 - 255.
*/
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
dptr - > dnum = bitmap_find ( sconn - > smb1 . searches . dptr_bmap , 0 ) ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
if ( dptr - > dnum = = - 1 | | dptr - > dnum > 254 ) {
1996-05-04 11:50:46 +04:00
2003-01-03 21:50:13 +03:00
/*
* Try and close the oldest handle not marked for
* expect close in the hope that the client has
* finished with that one .
*/
1996-05-04 11:50:46 +04:00
2009-08-06 14:15:51 +04:00
dptr_close_oldest ( sconn , true ) ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
/* Now try again... */
2009-08-06 14:15:51 +04:00
dptr - > dnum = bitmap_find ( sconn - > smb1 . searches . dptr_bmap , 0 ) ;
2003-01-03 21:50:13 +03:00
if ( dptr - > dnum = = - 1 | | dptr - > dnum > 254 ) {
DEBUG ( 0 , ( " dptr_create: returned %d: Error - all old dirptrs in use ? \n " , dptr - > dnum ) ) ;
SAFE_FREE ( dptr ) ;
2008-01-12 19:08:04 +03:00
TALLOC_FREE ( dir_hnd ) ;
2007-01-17 05:09:37 +03:00
return NT_STATUS_TOO_MANY_OPENED_FILES ;
2003-01-03 21:50:13 +03:00
}
}
} else {
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
/*
* This is a new - style trans2 request . Allocate from
* a range that will return 256 - MAX_DIRECTORY_HANDLES .
*/
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
dptr - > dnum = bitmap_find ( sconn - > smb1 . searches . dptr_bmap , 255 ) ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
if ( dptr - > dnum = = - 1 | | dptr - > dnum < 255 ) {
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
/*
* Try and close the oldest handle close in the hope that
* the client has finished with that one . This will only
* happen in the case of the Win98 client bug where it leaks
* directory handles .
*/
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
dptr_close_oldest ( sconn , false ) ;
1999-12-13 16:27:58 +03:00
2003-01-03 21:50:13 +03:00
/* Now try again... */
2009-08-06 14:15:51 +04:00
dptr - > dnum = bitmap_find ( sconn - > smb1 . searches . dptr_bmap , 255 ) ;
1996-05-04 11:50:46 +04:00
2003-01-03 21:50:13 +03:00
if ( dptr - > dnum = = - 1 | | dptr - > dnum < 255 ) {
DEBUG ( 0 , ( " dptr_create: returned %d: Error - all new dirptrs in use ? \n " , dptr - > dnum ) ) ;
SAFE_FREE ( dptr ) ;
2008-01-12 19:08:04 +03:00
TALLOC_FREE ( dir_hnd ) ;
2007-01-17 05:09:37 +03:00
return NT_STATUS_TOO_MANY_OPENED_FILES ;
2003-01-03 21:50:13 +03:00
}
}
}
1996-05-04 11:50:46 +04:00
2009-08-06 14:15:51 +04:00
bitmap_set ( sconn - > smb1 . searches . dptr_bmap , dptr - > dnum ) ;
1996-05-04 11:50:46 +04:00
2003-01-03 21:50:13 +03:00
dptr - > dnum + = 1 ; /* Always bias the dnum by one - no zero dnums allowed. */
1996-05-04 11:50:46 +04:00
2007-09-08 00:57:01 +04:00
string_set ( & dptr - > path , path ) ;
2003-01-03 21:50:13 +03:00
dptr - > conn = conn ;
2005-02-01 03:28:20 +03:00
dptr - > dir_hnd = dir_hnd ;
2003-01-03 21:50:13 +03:00
dptr - > spid = spid ;
dptr - > expect_close = expect_close ;
2005-08-13 03:45:16 +04:00
dptr - > wcard = SMB_STRDUP ( wcard ) ;
if ( ! dptr - > wcard ) {
2009-08-06 14:15:51 +04:00
bitmap_clear ( sconn - > smb1 . searches . dptr_bmap , dptr - > dnum - 1 ) ;
2005-08-13 03:45:16 +04:00
SAFE_FREE ( dptr ) ;
2008-01-12 19:08:04 +03:00
TALLOC_FREE ( dir_hnd ) ;
2007-01-17 05:09:37 +03:00
return NT_STATUS_NO_MEMORY ;
2005-06-25 07:03:44 +04:00
}
2005-08-13 03:45:16 +04:00
if ( lp_posix_pathnames ( ) | | ( wcard [ 0 ] = = ' . ' & & wcard [ 1 ] = = 0 ) ) {
2005-06-25 07:03:44 +04:00
dptr - > has_wild = True ;
} else {
2005-10-31 23:11:58 +03:00
dptr - > has_wild = wcard_has_wild ;
2005-06-25 07:03:44 +04:00
}
1999-12-13 16:27:58 +03:00
2005-08-13 03:45:16 +04:00
dptr - > attr = attr ;
2009-08-06 14:15:51 +04:00
DLIST_ADD ( sconn - > smb1 . searches . dirptrs , dptr ) ;
1996-05-04 11:50:46 +04:00
2003-01-03 21:50:13 +03:00
DEBUG ( 3 , ( " creating new dirptr %d for path %s, expect_close = %d \n " ,
dptr - > dnum , path , expect_close ) ) ;
1996-05-04 11:50:46 +04:00
2007-01-18 09:19:24 +03:00
* dptr_ret = dptr ;
2005-02-01 03:28:20 +03:00
2007-01-17 05:09:37 +03:00
return NT_STATUS_OK ;
1996-05-04 11:50:46 +04:00
}
2005-02-01 03:28:20 +03:00
/****************************************************************************
Wrapper functions to access the lower level directory handles .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2011-02-09 02:05:00 +03:00
void dptr_CloseDir ( files_struct * fsp )
2005-02-01 03:28:20 +03:00
{
2011-02-09 02:05:00 +03:00
if ( fsp - > dptr ) {
2011-02-26 04:25:36 +03:00
/*
* Ugly hack . We have defined fdopendir to return ENOSYS if dirfd also isn ' t
* present . I hate Solaris . JRA .
*/
# ifdef HAVE_DIRFD
2011-03-18 01:55:15 +03:00
if ( fsp - > fh - > fd ! = - 1 & &
fsp - > dptr - > dir_hnd & &
dirfd ( fsp - > dptr - > dir_hnd - > dir ) ) {
2011-02-09 02:05:00 +03:00
/* The call below closes the underlying fd. */
fsp - > fh - > fd = - 1 ;
}
2011-02-26 04:25:36 +03:00
# endif
2011-02-09 02:05:00 +03:00
dptr_close_internal ( fsp - > dptr ) ;
fsp - > dptr = NULL ;
}
2005-02-01 03:28:20 +03:00
}
void dptr_SeekDir ( struct dptr_struct * dptr , long offset )
{
SeekDir ( dptr - > dir_hnd , offset ) ;
}
long dptr_TellDir ( struct dptr_struct * dptr )
{
return TellDir ( dptr - > dir_hnd ) ;
}
2007-10-19 04:40:25 +04:00
bool dptr_has_wild ( struct dptr_struct * dptr )
2006-09-15 13:06:36 +04:00
{
return dptr - > has_wild ;
}
2007-01-18 09:19:24 +03:00
int dptr_dnum ( struct dptr_struct * dptr )
{
return dptr - > dnum ;
}
2005-02-01 21:33:50 +03:00
/****************************************************************************
Return the next visible file name , skipping veto ' d and invisible files .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-11-16 11:49:23 +03:00
static const char * dptr_normal_ReadDirName ( struct dptr_struct * dptr ,
long * poffset , SMB_STRUCT_STAT * pst ,
char * * ptalloced )
2005-02-01 03:28:20 +03:00
{
2005-02-01 21:33:50 +03:00
/* Normal search for the next file. */
2009-11-16 11:49:23 +03:00
const char * name ;
char * talloced = NULL ;
while ( ( name = ReadDirName ( dptr - > dir_hnd , poffset , pst , & talloced ) )
! = NULL ) {
2005-02-01 21:33:50 +03:00
if ( is_visible_file ( dptr - > conn , dptr - > path , name , pst , True ) ) {
2009-11-16 11:49:23 +03:00
* ptalloced = talloced ;
2005-02-01 21:33:50 +03:00
return name ;
}
2009-11-16 11:49:23 +03:00
TALLOC_FREE ( talloced ) ;
2005-02-01 21:33:50 +03:00
}
return NULL ;
}
/****************************************************************************
Return the next visible file name , skipping veto ' d and invisible files .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-05-12 02:39:05 +04:00
char * dptr_ReadDirName ( TALLOC_CTX * ctx ,
2007-09-13 01:48:20 +04:00
struct dptr_struct * dptr ,
long * poffset ,
SMB_STRUCT_STAT * pst )
2005-02-01 21:33:50 +03:00
{
2009-11-15 12:46:23 +03:00
struct smb_filename smb_fname_base ;
2009-01-23 07:18:56 +03:00
char * name = NULL ;
2009-11-16 11:49:23 +03:00
const char * name_temp = NULL ;
char * talloced = NULL ;
2009-01-23 07:18:56 +03:00
char * pathreal = NULL ;
2009-05-02 04:28:38 +04:00
char * found_name = NULL ;
int ret ;
2005-06-03 09:35:04 +04:00
SET_STAT_INVALID ( * pst ) ;
2005-03-03 05:04:36 +03:00
2009-01-23 07:18:56 +03:00
if ( dptr - > has_wild | | dptr - > did_stat ) {
2009-11-16 11:49:23 +03:00
name_temp = dptr_normal_ReadDirName ( dptr , poffset , pst ,
& talloced ) ;
if ( name_temp = = NULL ) {
return NULL ;
}
if ( talloced ! = NULL ) {
return talloc_move ( ctx , & talloced ) ;
}
return talloc_strdup ( ctx , name_temp ) ;
2005-02-01 21:33:50 +03:00
}
2009-01-23 07:18:56 +03:00
/* If poffset is -1 then we know we returned this name before and we
* have no wildcards . We ' re at the end of the directory . */
2005-07-22 00:24:21 +04:00
if ( * poffset = = END_OF_DIRECTORY_OFFSET ) {
2005-03-03 05:04:36 +03:00
return NULL ;
}
2009-01-23 07:18:56 +03:00
/* We know the stored wcard contains no wildcard characters.
* See if we can match with a stat call . If we can ' t , then set
* did_stat to true to ensure we only do this once and keep
* searching . */
dptr - > did_stat = true ;
/* First check if it should be visible. */
if ( ! is_visible_file ( dptr - > conn , dptr - > path , dptr - > wcard ,
pst , true ) )
{
/* This only returns false if the file was found, but
is explicitly not visible . Set us to end of
directory , but return NULL as we know we can ' t ever
find it . */
goto ret ;
}
2005-02-01 21:33:50 +03:00
2009-01-23 07:18:56 +03:00
if ( VALID_STAT ( * pst ) ) {
2009-05-12 02:39:05 +04:00
name = talloc_strdup ( ctx , dptr - > wcard ) ;
2009-01-23 07:18:56 +03:00
goto ret ;
}
2005-02-01 21:33:50 +03:00
2009-01-23 07:18:56 +03:00
pathreal = talloc_asprintf ( ctx ,
" %s/%s " ,
dptr - > path ,
dptr - > wcard ) ;
if ( ! pathreal )
return NULL ;
2005-02-01 21:33:50 +03:00
2009-06-23 02:26:56 +04:00
/* Create an smb_filename with stream_name == NULL. */
2009-11-15 12:46:23 +03:00
ZERO_STRUCT ( smb_fname_base ) ;
smb_fname_base . base_name = pathreal ;
2009-06-23 02:26:56 +04:00
2009-11-15 12:46:23 +03:00
if ( SMB_VFS_STAT ( dptr - > conn , & smb_fname_base ) = = 0 ) {
* pst = smb_fname_base . st ;
2009-05-12 02:39:05 +04:00
name = talloc_strdup ( ctx , dptr - > wcard ) ;
2009-01-23 07:18:56 +03:00
goto clean ;
} else {
/* If we get any other error than ENOENT or ENOTDIR
then the file exists we just can ' t stat it . */
if ( errno ! = ENOENT & & errno ! = ENOTDIR ) {
2009-05-12 02:39:05 +04:00
name = talloc_strdup ( ctx , dptr - > wcard ) ;
2009-01-23 07:18:56 +03:00
goto clean ;
2006-09-15 13:06:36 +04:00
}
2009-01-23 07:18:56 +03:00
}
2006-09-15 13:06:36 +04:00
2009-01-23 07:18:56 +03:00
/* Stat failed. We know this is authoratiative if we are
* providing case sensitive semantics or the underlying
* filesystem is case sensitive .
*/
if ( dptr - > conn - > case_sensitive | |
! ( dptr - > conn - > fs_capabilities & FILE_CASE_SENSITIVE_SEARCH ) )
{
goto clean ;
}
2007-09-13 01:48:20 +04:00
2009-05-02 04:28:38 +04:00
/*
* Try case - insensitive stat if the fs has the ability . This avoids
* scanning the whole directory .
*/
ret = SMB_VFS_GET_REAL_FILENAME ( dptr - > conn , dptr - > path , dptr - > wcard ,
ctx , & found_name ) ;
if ( ret = = 0 ) {
name = found_name ;
goto clean ;
} else if ( errno = = ENOENT ) {
/* The case-insensitive lookup was authoritative. */
goto clean ;
}
2009-01-23 07:18:56 +03:00
TALLOC_FREE ( pathreal ) ;
2006-09-15 13:06:36 +04:00
2009-11-16 11:49:23 +03:00
name_temp = dptr_normal_ReadDirName ( dptr , poffset , pst , & talloced ) ;
if ( name_temp = = NULL ) {
return NULL ;
}
if ( talloced ! = NULL ) {
return talloc_move ( ctx , & talloced ) ;
}
return talloc_strdup ( ctx , name_temp ) ;
2009-01-23 07:18:56 +03:00
clean :
TALLOC_FREE ( pathreal ) ;
ret :
/* We need to set the underlying dir_hnd offset to -1
* also as this function is usually called with the
* output from TellDir . */
dptr - > dir_hnd - > offset = * poffset = END_OF_DIRECTORY_OFFSET ;
return name ;
2005-02-01 21:33:50 +03:00
}
/****************************************************************************
Search for a file by name , skipping veto ' ed and not visible files .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool dptr_SearchDir ( struct dptr_struct * dptr , const char * name , long * poffset , SMB_STRUCT_STAT * pst )
2005-02-01 21:33:50 +03:00
{
2005-06-03 09:35:04 +04:00
SET_STAT_INVALID ( * pst ) ;
2005-03-21 21:10:21 +03:00
2005-07-22 00:24:21 +04:00
if ( ! dptr - > has_wild & & ( dptr - > dir_hnd - > offset = = END_OF_DIRECTORY_OFFSET ) ) {
2005-03-21 21:10:21 +03:00
/* This is a singleton directory and we're already at the end. */
2005-07-22 00:24:21 +04:00
* poffset = END_OF_DIRECTORY_OFFSET ;
2005-03-21 21:10:21 +03:00
return False ;
}
2006-06-27 03:36:03 +04:00
return SearchDir ( dptr - > dir_hnd , name , poffset ) ;
2005-02-01 03:28:20 +03:00
}
2006-04-08 09:00:04 +04:00
/****************************************************************************
Add the name we ' re returning into the underlying cache .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void dptr_DirCacheAdd ( struct dptr_struct * dptr , const char * name , long offset )
{
DirCacheAdd ( dptr - > dir_hnd , name , offset ) ;
}
2009-02-03 08:37:51 +03:00
/****************************************************************************
Initialize variables & state data at the beginning of all search SMB requests .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void dptr_init_search_op ( struct dptr_struct * dptr )
{
2009-02-14 13:42:05 +03:00
SMB_VFS_INIT_SEARCH_OP ( dptr - > conn , dptr - > dir_hnd - > dir ) ;
2009-02-03 08:37:51 +03:00
}
1996-05-04 11:50:46 +04:00
/****************************************************************************
1999-12-13 16:27:58 +03:00
Fill the 5 byte server reserved dptr field .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
bool dptr_fill ( struct smbd_server_connection * sconn ,
char * buf1 , unsigned int key )
1996-05-04 11:50:46 +04:00
{
2003-01-03 21:50:13 +03:00
unsigned char * buf = ( unsigned char * ) buf1 ;
2009-08-06 14:15:51 +04:00
struct dptr_struct * dptr = dptr_get ( sconn , key , false ) ;
2003-01-03 21:50:13 +03:00
uint32 offset ;
2005-02-01 03:28:20 +03:00
if ( ! dptr ) {
2003-01-03 21:50:13 +03:00
DEBUG ( 1 , ( " filling null dirptr %d \n " , key ) ) ;
return ( False ) ;
}
2005-05-01 13:30:18 +04:00
offset = ( uint32 ) TellDir ( dptr - > dir_hnd ) ;
2003-01-03 21:50:13 +03:00
DEBUG ( 6 , ( " fill on key %u dirptr 0x%lx now at %d \n " , key ,
2005-02-01 03:28:20 +03:00
( long ) dptr - > dir_hnd , ( int ) offset ) ) ;
2003-01-03 21:50:13 +03:00
buf [ 0 ] = key ;
2005-07-20 22:21:38 +04:00
SIVAL ( buf , 1 , offset ) ;
2003-01-03 21:50:13 +03:00
return ( True ) ;
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
1999-12-13 16:27:58 +03:00
Fetch the dir ptr and seek it given the 5 byte server field .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
struct dptr_struct * dptr_fetch ( struct smbd_server_connection * sconn ,
char * buf , int * num )
1996-05-04 11:50:46 +04:00
{
2003-01-03 21:50:13 +03:00
unsigned int key = * ( unsigned char * ) buf ;
2009-08-06 14:15:51 +04:00
struct dptr_struct * dptr = dptr_get ( sconn , key , false ) ;
2003-01-03 21:50:13 +03:00
uint32 offset ;
2005-05-01 13:30:18 +04:00
long seekoff ;
2003-01-03 21:50:13 +03:00
2005-02-01 03:28:20 +03:00
if ( ! dptr ) {
2003-01-03 21:50:13 +03:00
DEBUG ( 3 , ( " fetched null dirptr %d \n " , key ) ) ;
return ( NULL ) ;
}
* num = key ;
2005-05-01 13:30:18 +04:00
offset = IVAL ( buf , 1 ) ;
if ( offset = = ( uint32 ) - 1 ) {
2005-07-22 00:24:21 +04:00
seekoff = END_OF_DIRECTORY_OFFSET ;
2005-05-01 13:30:18 +04:00
} else {
2005-07-20 22:21:38 +04:00
seekoff = ( long ) offset ;
2005-05-01 13:30:18 +04:00
}
SeekDir ( dptr - > dir_hnd , seekoff ) ;
2003-01-03 21:50:13 +03:00
DEBUG ( 3 , ( " fetching dirptr %d for path %s at offset %d \n " ,
2009-08-06 14:15:51 +04:00
key , dptr - > path , ( int ) seekoff ) ) ;
2005-02-01 03:28:20 +03:00
return ( dptr ) ;
1996-05-04 11:50:46 +04:00
}
/****************************************************************************
1999-12-13 16:27:58 +03:00
Fetch the dir ptr .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-06 14:15:51 +04:00
struct dptr_struct * dptr_fetch_lanman2 ( struct smbd_server_connection * sconn ,
int dptr_num )
1996-05-04 11:50:46 +04:00
{
2009-08-06 14:15:51 +04:00
struct dptr_struct * dptr = dptr_get ( sconn , dptr_num , false ) ;
2003-01-03 21:50:13 +03:00
2005-02-01 03:28:20 +03:00
if ( ! dptr ) {
2003-01-03 21:50:13 +03:00
DEBUG ( 3 , ( " fetched null dirptr %d \n " , dptr_num ) ) ;
return ( NULL ) ;
}
2009-08-06 14:15:51 +04:00
DEBUG ( 3 , ( " fetching dirptr %d for path %s \n " , dptr_num , dptr - > path ) ) ;
2005-02-01 03:28:20 +03:00
return ( dptr ) ;
1996-05-04 11:50:46 +04:00
}
1996-06-05 19:16:09 +04:00
/****************************************************************************
2006-04-24 14:45:06 +04:00
Check that a file matches a particular file type .
1996-06-05 19:16:09 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2007-10-19 04:40:25 +04:00
bool dir_check_ftype ( connection_struct * conn , uint32 mode , uint32 dirtype )
1996-06-05 19:16:09 +04:00
{
2005-06-25 07:03:44 +04:00
uint32 mask ;
2002-09-25 19:19:00 +04:00
/* Check the "may have" search bits. */
if ( ( ( mode & ~ dirtype ) & ( aHIDDEN | aSYSTEM | aDIR ) ) ! = 0 )
return False ;
/* Check the "must have" bits, which are the may have bits shifted eight */
/* If must have bit is set, the file/dir can not be returned in search unless the matching
file attribute is set */
mask = ( ( dirtype > > 8 ) & ( aDIR | aARCH | aRONLY | aHIDDEN | aSYSTEM ) ) ; /* & 0x37 */
if ( mask ) {
if ( ( mask & ( mode & ( aDIR | aARCH | aRONLY | aHIDDEN | aSYSTEM ) ) ) = = mask ) /* check if matching attribute present */
return True ;
else
return False ;
}
return True ;
1996-06-05 19:16:09 +04:00
}
2007-10-19 04:40:25 +04:00
static bool mangle_mask_match ( connection_struct * conn ,
2007-09-12 03:57:59 +04:00
const char * filename ,
const char * mask )
2002-07-15 14:35:28 +04:00
{
2007-09-08 00:57:01 +04:00
char mname [ 13 ] ;
if ( ! name_to_8_3 ( filename , mname , False , conn - > params ) ) {
return False ;
}
return mask_match_search ( mname , mask , False ) ;
2002-07-15 14:35:28 +04:00
}
2009-08-06 22:53:13 +04:00
bool smbd_dirptr_get_entry ( TALLOC_CTX * ctx ,
struct dptr_struct * dirptr ,
const char * mask ,
uint32_t dirtype ,
bool dont_descend ,
bool ask_sharemode ,
bool ( * match_fn ) ( TALLOC_CTX * ctx ,
void * private_data ,
const char * dname ,
const char * mask ,
char * * _fname ) ,
bool ( * mode_fn ) ( TALLOC_CTX * ctx ,
void * private_data ,
struct smb_filename * smb_fname ,
uint32_t * _mode ) ,
void * private_data ,
char * * _fname ,
struct smb_filename * * _smb_fname ,
uint32_t * _mode ,
long * _prev_offset )
{
connection_struct * conn = dirptr - > conn ;
bool needslash ;
* _smb_fname = NULL ;
* _mode = 0 ;
needslash = ( dirptr - > path [ strlen ( dirptr - > path ) - 1 ] ! = ' / ' ) ;
while ( true ) {
long cur_offset ;
long prev_offset ;
SMB_STRUCT_STAT sbuf ;
char * dname = NULL ;
bool isdots ;
char * fname = NULL ;
char * pathreal = NULL ;
2009-11-15 12:46:23 +03:00
struct smb_filename smb_fname ;
2009-08-06 22:53:13 +04:00
uint32_t mode = 0 ;
bool ok ;
NTSTATUS status ;
cur_offset = dptr_TellDir ( dirptr ) ;
prev_offset = cur_offset ;
dname = dptr_ReadDirName ( ctx , dirptr , & cur_offset , & sbuf ) ;
DEBUG ( 6 , ( " smbd_dirptr_get_entry: dirptr 0x%lx now at offset %ld \n " ,
( long ) dirptr , cur_offset ) ) ;
if ( dname = = NULL ) {
return false ;
}
isdots = ( ISDOT ( dname ) | | ISDOTDOT ( dname ) ) ;
if ( dont_descend & & ! isdots ) {
TALLOC_FREE ( dname ) ;
continue ;
}
/*
* fname may get mangled , dname is never mangled .
* Whenever we ' re accessing the filesystem we use
* pathreal which is composed from dname .
*/
ok = match_fn ( ctx , private_data , dname , mask , & fname ) ;
if ( ! ok ) {
TALLOC_FREE ( dname ) ;
continue ;
}
pathreal = talloc_asprintf ( ctx , " %s%s%s " ,
dirptr - > path ,
needslash ? " / " : " " ,
dname ) ;
if ( ! pathreal ) {
TALLOC_FREE ( dname ) ;
TALLOC_FREE ( fname ) ;
return false ;
}
/* Create smb_fname with NULL stream_name. */
2009-11-15 12:46:23 +03:00
ZERO_STRUCT ( smb_fname ) ;
smb_fname . base_name = pathreal ;
smb_fname . st = sbuf ;
2009-08-06 22:53:13 +04:00
2009-11-15 12:46:23 +03:00
ok = mode_fn ( ctx , private_data , & smb_fname , & mode ) ;
2009-08-06 22:53:13 +04:00
if ( ! ok ) {
TALLOC_FREE ( dname ) ;
TALLOC_FREE ( fname ) ;
2009-11-15 12:46:23 +03:00
TALLOC_FREE ( pathreal ) ;
2009-08-06 22:53:13 +04:00
continue ;
}
if ( ! dir_check_ftype ( conn , mode , dirtype ) ) {
DEBUG ( 5 , ( " [%s] attribs 0x%x didn't match 0x%x \n " ,
fname , ( unsigned int ) mode , ( unsigned int ) dirtype ) ) ;
TALLOC_FREE ( dname ) ;
TALLOC_FREE ( fname ) ;
2009-11-15 12:46:23 +03:00
TALLOC_FREE ( pathreal ) ;
2009-08-06 22:53:13 +04:00
continue ;
}
if ( ask_sharemode ) {
struct timespec write_time_ts ;
struct file_id fileid ;
fileid = vfs_file_id_from_sbuf ( conn ,
2009-11-15 12:46:23 +03:00
& smb_fname . st ) ;
2011-01-26 00:57:38 +03:00
get_file_infos ( fileid , 0 , NULL , & write_time_ts ) ;
2009-08-06 22:53:13 +04:00
if ( ! null_timespec ( write_time_ts ) ) {
2009-11-15 12:46:23 +03:00
update_stat_ex_mtime ( & smb_fname . st ,
2009-08-06 22:53:13 +04:00
write_time_ts ) ;
}
}
DEBUG ( 3 , ( " smbd_dirptr_get_entry mask=[%s] found %s "
" fname=%s (%s) \n " ,
2009-11-15 12:46:23 +03:00
mask , smb_fname_str_dbg ( & smb_fname ) ,
2009-08-06 22:53:13 +04:00
dname , fname ) ) ;
DirCacheAdd ( dirptr - > dir_hnd , dname , cur_offset ) ;
TALLOC_FREE ( dname ) ;
2009-11-15 12:46:23 +03:00
status = copy_smb_filename ( ctx , & smb_fname , _smb_fname ) ;
TALLOC_FREE ( pathreal ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
return false ;
}
2009-08-06 22:53:13 +04:00
* _fname = fname ;
* _mode = mode ;
* _prev_offset = prev_offset ;
return true ;
}
return false ;
}
1996-05-04 11:50:46 +04:00
/****************************************************************************
1999-12-13 16:27:58 +03:00
Get an 8.3 directory entry .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-08-07 10:54:06 +04:00
static bool smbd_dirptr_8_3_match_fn ( TALLOC_CTX * ctx ,
void * private_data ,
const char * dname ,
const char * mask ,
char * * _fname )
1996-05-04 11:50:46 +04:00
{
2009-08-07 10:54:06 +04:00
connection_struct * conn = ( connection_struct * ) private_data ;
if ( ( strcmp ( mask , " *.* " ) = = 0 ) | |
mask_match_search ( dname , mask , false ) | |
mangle_mask_match ( conn , dname , mask ) ) {
char mname [ 13 ] ;
const char * fname ;
if ( ! mangle_is_8_3 ( dname , false , conn - > params ) ) {
bool ok = name_to_8_3 ( dname , mname , false ,
conn - > params ) ;
if ( ! ok ) {
2009-07-08 23:24:03 +04:00
return false ;
}
2009-08-07 10:54:06 +04:00
fname = mname ;
} else {
fname = dname ;
}
2009-07-08 23:24:03 +04:00
2009-08-07 10:54:06 +04:00
* _fname = talloc_strdup ( ctx , fname ) ;
if ( * _fname = = NULL ) {
return false ;
}
1996-05-04 11:50:46 +04:00
2009-08-07 10:54:06 +04:00
return true ;
}
2008-04-07 11:21:19 +04:00
2009-08-07 10:54:06 +04:00
return false ;
}
2008-03-12 17:39:38 +03:00
2009-08-07 10:54:06 +04:00
static bool smbd_dirptr_8_3_mode_fn ( TALLOC_CTX * ctx ,
void * private_data ,
struct smb_filename * smb_fname ,
uint32_t * _mode )
{
connection_struct * conn = ( connection_struct * ) private_data ;
if ( ! VALID_STAT ( smb_fname - > st ) ) {
if ( ( SMB_VFS_STAT ( conn , smb_fname ) ) ! = 0 ) {
DEBUG ( 5 , ( " smbd_dirptr_8_3_mode_fn: "
" Couldn't stat [%s]. Error "
" = %s \n " ,
smb_fname_str_dbg ( smb_fname ) ,
strerror ( errno ) ) ) ;
return false ;
}
}
1996-05-04 11:50:46 +04:00
2009-08-07 10:54:06 +04:00
* _mode = dos_mode ( conn , smb_fname ) ;
return true ;
}
2006-04-08 09:00:04 +04:00
2009-08-07 10:54:06 +04:00
bool get_dir_entry ( TALLOC_CTX * ctx ,
2009-08-07 11:31:45 +04:00
struct dptr_struct * dirptr ,
2009-08-07 10:54:06 +04:00
const char * mask ,
uint32_t dirtype ,
char * * _fname ,
SMB_OFF_T * _size ,
uint32_t * _mode ,
struct timespec * _date ,
bool check_descend ,
bool ask_sharemode )
{
2009-08-07 11:31:45 +04:00
connection_struct * conn = dirptr - > conn ;
2009-08-07 10:54:06 +04:00
char * fname = NULL ;
struct smb_filename * smb_fname = NULL ;
uint32_t mode = 0 ;
long prev_offset ;
bool ok ;
2007-09-13 01:48:20 +04:00
2009-08-07 10:54:06 +04:00
ok = smbd_dirptr_get_entry ( ctx ,
2009-08-07 11:31:45 +04:00
dirptr ,
2009-08-07 10:54:06 +04:00
mask ,
dirtype ,
check_descend ,
ask_sharemode ,
smbd_dirptr_8_3_match_fn ,
smbd_dirptr_8_3_mode_fn ,
conn ,
& fname ,
& smb_fname ,
& mode ,
& prev_offset ) ;
if ( ! ok ) {
return false ;
2003-01-03 21:50:13 +03:00
}
1996-05-04 11:50:46 +04:00
2009-08-07 10:54:06 +04:00
* _fname = talloc_move ( ctx , & fname ) ;
* _size = smb_fname - > st . st_ex_size ;
* _mode = mode ;
* _date = smb_fname - > st . st_ex_mtime ;
TALLOC_FREE ( smb_fname ) ;
return true ;
2003-01-03 21:50:13 +03:00
}
1996-05-04 11:50:46 +04:00
2001-04-16 19:16:31 +04:00
/*******************************************************************
2002-09-25 19:19:00 +04:00
Check to see if a user can read a file . This is only approximate ,
it is used as part of the " hide unreadable " option . Don ' t
use it for anything security sensitive .
2001-04-16 19:16:31 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-12-17 22:16:22 +03:00
2009-06-23 02:26:56 +04:00
static bool user_can_read_file ( connection_struct * conn ,
struct smb_filename * smb_fname )
2001-04-16 19:16:31 +04:00
{
2002-07-15 14:35:28 +04:00
/*
2010-03-15 22:24:06 +03:00
* Never hide files from the root user .
* We use ( uid_t ) 0 here not sec_initial_uid ( )
* as make test uses a single user context .
2002-07-15 14:35:28 +04:00
*/
2010-03-15 22:24:06 +03:00
if ( get_current_uid ( conn ) = = ( uid_t ) 0 ) {
2002-07-15 14:35:28 +04:00
return True ;
2005-07-08 08:51:27 +04:00
}
2002-07-15 14:35:28 +04:00
2009-06-23 02:26:56 +04:00
return can_access_file_acl ( conn , smb_fname , FILE_READ_DATA ) ;
2001-04-16 19:16:31 +04:00
}
2002-08-17 19:27:10 +04:00
/*******************************************************************
2002-09-25 19:19:00 +04:00
Check to see if a user can write a file ( and only files , we do not
check dirs on this one ) . This is only approximate ,
it is used as part of the " hide unwriteable " option . Don ' t
use it for anything security sensitive .
2002-08-17 19:27:10 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-06-26 05:19:09 +04:00
static bool user_can_write_file ( connection_struct * conn ,
const struct smb_filename * smb_fname )
2002-08-17 19:27:10 +04:00
{
/*
2010-03-15 22:24:06 +03:00
* Never hide files from the root user .
* We use ( uid_t ) 0 here not sec_initial_uid ( )
* as make test uses a single user context .
2002-08-17 19:27:10 +04:00
*/
2010-03-15 22:24:06 +03:00
if ( get_current_uid ( conn ) = = ( uid_t ) 0 ) {
2002-08-17 19:27:10 +04:00
return True ;
2005-07-08 08:51:27 +04:00
}
2002-08-17 19:27:10 +04:00
2009-06-26 05:19:09 +04:00
SMB_ASSERT ( VALID_STAT ( smb_fname - > st ) ) ;
2002-08-17 19:27:10 +04:00
2005-07-08 08:51:27 +04:00
/* Pseudo-open the file */
2002-08-17 19:27:10 +04:00
2009-06-26 05:19:09 +04:00
if ( S_ISDIR ( smb_fname - > st . st_ex_mode ) ) {
2002-08-17 19:27:10 +04:00
return True ;
2007-10-13 23:06:49 +04:00
}
2002-08-17 19:27:10 +04:00
2009-06-26 05:19:09 +04:00
return can_write_to_file ( conn , smb_fname ) ;
2002-08-17 19:27:10 +04:00
}
2002-09-25 19:19:00 +04:00
/*******************************************************************
Is a file a " special " type ?
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-06-26 05:19:09 +04:00
static bool file_is_special ( connection_struct * conn ,
const struct smb_filename * smb_fname )
2002-09-25 19:19:00 +04:00
{
/*
2010-03-15 22:24:06 +03:00
* Never hide files from the root user .
* We use ( uid_t ) 0 here not sec_initial_uid ( )
* as make test uses a single user context .
2002-09-25 19:19:00 +04:00
*/
2010-03-15 22:24:06 +03:00
if ( get_current_uid ( conn ) = = ( uid_t ) 0 ) {
2003-12-23 10:33:42 +03:00
return False ;
2010-03-15 22:24:06 +03:00
}
2002-09-25 19:19:00 +04:00
2009-06-26 05:19:09 +04:00
SMB_ASSERT ( VALID_STAT ( smb_fname - > st ) ) ;
2002-09-25 19:19:00 +04:00
2009-06-26 05:19:09 +04:00
if ( S_ISREG ( smb_fname - > st . st_ex_mode ) | |
S_ISDIR ( smb_fname - > st . st_ex_mode ) | |
S_ISLNK ( smb_fname - > st . st_ex_mode ) )
2002-09-25 19:19:00 +04:00
return False ;
return True ;
}
2005-02-01 21:33:50 +03:00
/*******************************************************************
2009-01-23 07:18:56 +03:00
Should the file be seen by the client ?
NOTE : A successful return is no guarantee of the file ' s existence .
2005-02-01 21:33:50 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-01-23 07:18:56 +03:00
bool is_visible_file ( connection_struct * conn , const char * dir_path ,
const char * name , SMB_STRUCT_STAT * pst , bool use_veto )
2005-02-01 21:33:50 +03:00
{
2007-10-19 04:40:25 +04:00
bool hide_unreadable = lp_hideunreadable ( SNUM ( conn ) ) ;
bool hide_unwriteable = lp_hideunwriteable_files ( SNUM ( conn ) ) ;
bool hide_special = lp_hide_special_files ( SNUM ( conn ) ) ;
2009-06-23 02:26:56 +04:00
char * entry = NULL ;
struct smb_filename * smb_fname_base = NULL ;
NTSTATUS status ;
bool ret = false ;
2005-02-01 21:33:50 +03:00
if ( ( strcmp ( " . " , name ) = = 0 ) | | ( strcmp ( " .. " , name ) = = 0 ) ) {
return True ; /* . and .. are always visible. */
}
/* If it's a vetoed file, pretend it doesn't even exist */
2009-11-23 18:33:53 +03:00
if ( use_veto & & IS_VETO_PATH ( conn , name ) ) {
2006-06-27 03:36:03 +04:00
DEBUG ( 10 , ( " is_visible_file: file %s is vetoed. \n " , name ) ) ;
2005-02-01 21:33:50 +03:00
return False ;
}
if ( hide_unreadable | | hide_unwriteable | | hide_special ) {
2009-06-18 22:38:42 +04:00
entry = talloc_asprintf ( talloc_tos ( ) , " %s/%s " , dir_path , name ) ;
2009-06-23 02:26:56 +04:00
if ( ! entry ) {
ret = false ;
goto out ;
2005-02-01 21:33:50 +03:00
}
2006-12-29 23:39:53 +03:00
2009-06-23 02:26:56 +04:00
/* Create an smb_filename with stream_name == NULL. */
status = create_synthetic_smb_fname ( talloc_tos ( ) , entry , NULL ,
2009-06-26 05:19:09 +04:00
pst , & smb_fname_base ) ;
2009-06-23 02:26:56 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
ret = false ;
goto out ;
2006-12-29 23:39:53 +03:00
}
2007-12-23 01:55:37 +03:00
/* If the file name does not exist, there's no point checking
* the configuration options . We succeed , on the basis that the
* checks * might * have passed if the file was present .
*/
2009-06-26 05:19:09 +04:00
if ( ! VALID_STAT ( * pst ) ) {
if ( SMB_VFS_STAT ( conn , smb_fname_base ) ! = 0 ) {
ret = true ;
goto out ;
} else {
* pst = smb_fname_base - > st ;
}
2007-12-23 01:55:37 +03:00
}
2005-02-01 21:33:50 +03:00
/* Honour _hide unreadable_ option */
2009-06-23 02:26:56 +04:00
if ( hide_unreadable & &
! user_can_read_file ( conn , smb_fname_base ) ) {
2009-01-23 07:18:56 +03:00
DEBUG ( 10 , ( " is_visible_file: file %s is unreadable. \n " ,
entry ) ) ;
2009-06-23 02:26:56 +04:00
ret = false ;
goto out ;
2005-02-01 21:33:50 +03:00
}
/* Honour _hide unwriteable_ option */
2009-06-26 05:19:09 +04:00
if ( hide_unwriteable & & ! user_can_write_file ( conn ,
smb_fname_base ) ) {
2009-01-23 07:18:56 +03:00
DEBUG ( 10 , ( " is_visible_file: file %s is unwritable. \n " ,
entry ) ) ;
2009-06-23 02:26:56 +04:00
ret = false ;
goto out ;
2005-02-01 21:33:50 +03:00
}
/* Honour _hide_special_ option */
2009-06-26 05:19:09 +04:00
if ( hide_special & & file_is_special ( conn , smb_fname_base ) ) {
2009-01-23 07:18:56 +03:00
DEBUG ( 10 , ( " is_visible_file: file %s is special. \n " ,
entry ) ) ;
2009-06-23 02:26:56 +04:00
ret = false ;
goto out ;
2005-02-01 21:33:50 +03:00
}
}
2009-06-23 02:26:56 +04:00
ret = true ;
out :
TALLOC_FREE ( smb_fname_base ) ;
TALLOC_FREE ( entry ) ;
return ret ;
2005-02-01 21:33:50 +03:00
}
2008-01-12 19:08:04 +03:00
static int smb_Dir_destructor ( struct smb_Dir * dirp )
{
if ( dirp - > dir ) {
2011-03-18 01:55:15 +03:00
# ifdef HAVE_DIRFD
if ( dirp - > conn - > sconn ) {
files_struct * fsp = file_find_fd ( dirp - > conn - > sconn ,
dirfd ( dirp - > dir ) ) ;
if ( fsp ) {
/* The call below closes the underlying fd. */
fsp - > fh - > fd = - 1 ;
}
}
# endif
2008-01-12 19:08:04 +03:00
SMB_VFS_CLOSEDIR ( dirp - > conn , dirp - > dir ) ;
}
2009-08-06 14:15:51 +04:00
if ( dirp - > conn - > sconn ) {
dirp - > conn - > sconn - > smb1 . searches . dirhandles_open - - ;
}
2008-01-12 19:08:04 +03:00
return 0 ;
}
1996-05-04 11:50:46 +04:00
/*******************************************************************
1999-12-13 16:27:58 +03:00
Open a directory .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2008-01-12 19:08:04 +03:00
struct smb_Dir * OpenDir ( TALLOC_CTX * mem_ctx , connection_struct * conn ,
2011-02-10 02:05:58 +03:00
const char * name ,
const char * mask ,
uint32 attr )
1996-05-04 11:50:46 +04:00
{
2008-01-12 19:08:04 +03:00
struct smb_Dir * dirp = TALLOC_ZERO_P ( mem_ctx , struct smb_Dir ) ;
2009-08-06 14:15:51 +04:00
struct smbd_server_connection * sconn = conn - > sconn ;
2007-08-24 01:53:00 +04:00
2002-07-15 14:35:28 +04:00
if ( ! dirp ) {
2005-01-29 00:01:58 +03:00
return NULL ;
2002-07-15 14:35:28 +04:00
}
2005-01-29 00:01:58 +03:00
dirp - > conn = conn ;
2007-08-24 01:53:00 +04:00
dirp - > name_cache_size = lp_directory_name_cache_size ( SNUM ( conn ) ) ;
2002-07-15 14:35:28 +04:00
2011-02-10 03:31:06 +03:00
dirp - > dir_path = talloc_strdup ( dirp , name ) ;
if ( ! dirp - > dir_path ) {
errno = ENOMEM ;
goto fail ;
2011-02-10 02:05:58 +03:00
}
2011-02-10 03:31:06 +03:00
if ( sconn ) {
sconn - > smb1 . searches . dirhandles_open + + ;
}
talloc_set_destructor ( dirp , smb_Dir_destructor ) ;
dirp - > dir = SMB_VFS_OPENDIR ( conn , dirp - > dir_path , mask , attr ) ;
if ( ! dirp - > dir ) {
DEBUG ( 5 , ( " OpenDir: Can't open %s. %s \n " , dirp - > dir_path ,
strerror ( errno ) ) ) ;
goto fail ;
}
return dirp ;
fail :
TALLOC_FREE ( dirp ) ;
return NULL ;
}
/*******************************************************************
Open a directory from an fsp .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static struct smb_Dir * OpenDir_fsp ( TALLOC_CTX * mem_ctx , connection_struct * conn ,
files_struct * fsp ,
const char * mask ,
uint32 attr )
{
struct smb_Dir * dirp = TALLOC_ZERO_P ( mem_ctx , struct smb_Dir ) ;
struct smbd_server_connection * sconn = conn - > sconn ;
if ( ! dirp ) {
return NULL ;
}
dirp - > conn = conn ;
dirp - > name_cache_size = lp_directory_name_cache_size ( SNUM ( conn ) ) ;
dirp - > dir_path = talloc_strdup ( dirp , fsp - > fsp_name - > base_name ) ;
2005-01-29 00:01:58 +03:00
if ( ! dirp - > dir_path ) {
2008-08-12 17:19:17 +04:00
errno = ENOMEM ;
2005-01-29 00:01:58 +03:00
goto fail ;
}
2008-01-12 19:08:04 +03:00
2009-08-06 14:15:51 +04:00
if ( sconn ) {
sconn - > smb1 . searches . dirhandles_open + + ;
}
2008-01-12 19:08:04 +03:00
talloc_set_destructor ( dirp , smb_Dir_destructor ) ;
2011-02-10 03:31:06 +03:00
if ( fsp - > is_directory & & fsp - > fh - > fd ! = - 1 ) {
2011-02-10 02:05:58 +03:00
dirp - > dir = SMB_VFS_FDOPENDIR ( fsp , mask , attr ) ;
if ( dirp - > dir = = NULL ) {
2011-02-10 03:31:06 +03:00
DEBUG ( 10 , ( " OpenDir_fsp: SMB_VFS_FDOPENDIR on %s returned "
2011-02-10 02:05:58 +03:00
" NULL (%s) \n " ,
dirp - > dir_path ,
strerror ( errno ) ) ) ;
if ( errno ! = ENOSYS ) {
return NULL ;
}
}
}
if ( dirp - > dir = = NULL ) {
2011-02-10 03:31:06 +03:00
/* FDOPENDIR didn't work. Use OPENDIR instead. */
2011-02-10 02:05:58 +03:00
dirp - > dir = SMB_VFS_OPENDIR ( conn , dirp - > dir_path , mask , attr ) ;
}
2005-01-29 00:01:58 +03:00
if ( ! dirp - > dir ) {
2011-02-10 03:31:06 +03:00
DEBUG ( 5 , ( " OpenDir_fsp: Can't open %s. %s \n " , dirp - > dir_path ,
2008-01-12 19:08:04 +03:00
strerror ( errno ) ) ) ;
2005-01-29 00:01:58 +03:00
goto fail ;
}
2002-07-15 14:35:28 +04:00
2005-02-01 03:28:20 +03:00
return dirp ;
2002-08-17 19:27:10 +04:00
2005-01-29 00:01:58 +03:00
fail :
2008-01-12 19:08:04 +03:00
TALLOC_FREE ( dirp ) ;
2005-01-29 00:01:58 +03:00
return NULL ;
1996-05-04 11:50:46 +04:00
}
2011-02-10 03:31:06 +03:00
1996-05-04 11:50:46 +04:00
/*******************************************************************
2009-01-23 07:18:56 +03:00
Read from a directory .
Return directory entry , current offset , and optional stat information .
2005-02-01 21:33:50 +03:00
Don ' t check for veto or invisible files .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2009-11-16 11:49:23 +03:00
const char * ReadDirName ( struct smb_Dir * dirp , long * poffset ,
SMB_STRUCT_STAT * sbuf , char * * ptalloced )
1996-05-04 11:50:46 +04:00
{
2009-11-16 11:49:23 +03:00
const char * n ;
char * talloced = NULL ;
2005-01-29 00:01:58 +03:00
connection_struct * conn = dirp - > conn ;
1996-05-04 11:50:46 +04:00
2005-06-11 03:13:25 +04:00
/* Cheat to allow . and .. to be the first entries returned. */
2009-01-23 07:18:56 +03:00
if ( ( ( * poffset = = START_OF_DIRECTORY_OFFSET ) | |
( * poffset = = DOT_DOT_DIRECTORY_OFFSET ) ) & & ( dirp - > file_number < 2 ) )
{
2005-06-11 03:13:25 +04:00
if ( dirp - > file_number = = 0 ) {
2009-11-16 11:49:23 +03:00
n = " . " ;
2005-07-22 00:24:21 +04:00
* poffset = dirp - > offset = START_OF_DIRECTORY_OFFSET ;
2005-06-11 03:13:25 +04:00
} else {
2009-11-16 11:49:23 +03:00
n = " .. " ;
2005-07-22 00:24:21 +04:00
* poffset = dirp - > offset = DOT_DOT_DIRECTORY_OFFSET ;
2005-06-11 03:13:25 +04:00
}
dirp - > file_number + + ;
2009-11-16 11:49:23 +03:00
* ptalloced = NULL ;
2005-06-11 03:13:25 +04:00
return n ;
2005-08-22 01:12:27 +04:00
} else if ( * poffset = = END_OF_DIRECTORY_OFFSET ) {
* poffset = dirp - > offset = END_OF_DIRECTORY_OFFSET ;
return NULL ;
2005-06-11 03:13:25 +04:00
} else {
/* A real offset, seek to it. */
SeekDir ( dirp , * poffset ) ;
}
2009-11-16 11:49:23 +03:00
while ( ( n = vfs_readdirname ( conn , dirp - > dir , sbuf , & talloced ) ) ) {
2005-06-11 03:13:25 +04:00
/* Ignore . and .. - we've already returned them. */
if ( * n = = ' . ' ) {
if ( ( n [ 1 ] = = ' \0 ' ) | | ( n [ 1 ] = = ' . ' & & n [ 2 ] = = ' \0 ' ) ) {
2009-11-16 11:49:23 +03:00
TALLOC_FREE ( talloced ) ;
2005-06-11 03:13:25 +04:00
continue ;
}
}
2006-04-08 09:00:04 +04:00
* poffset = dirp - > offset = SMB_VFS_TELLDIR ( conn , dirp - > dir ) ;
2009-11-16 11:49:23 +03:00
* ptalloced = talloced ;
2005-06-11 03:13:25 +04:00
dirp - > file_number + + ;
2006-04-08 09:00:04 +04:00
return n ;
2003-01-03 21:50:13 +03:00
}
2005-08-22 01:12:27 +04:00
* poffset = dirp - > offset = END_OF_DIRECTORY_OFFSET ;
2009-11-16 11:49:23 +03:00
* ptalloced = NULL ;
2005-01-29 00:01:58 +03:00
return NULL ;
}
2005-06-15 22:37:34 +04:00
/*******************************************************************
Rewind to the start .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void RewindDir ( struct smb_Dir * dirp , long * poffset )
{
SMB_VFS_REWINDDIR ( dirp - > conn , dirp - > dir ) ;
dirp - > file_number = 0 ;
2005-07-22 00:24:21 +04:00
dirp - > offset = START_OF_DIRECTORY_OFFSET ;
* poffset = START_OF_DIRECTORY_OFFSET ;
2005-06-15 22:37:34 +04:00
}
2005-01-29 00:01:58 +03:00
/*******************************************************************
Seek a dir .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1996-05-04 11:50:46 +04:00
2005-02-01 03:28:20 +03:00
void SeekDir ( struct smb_Dir * dirp , long offset )
2005-01-29 00:01:58 +03:00
{
2005-02-01 03:28:20 +03:00
if ( offset ! = dirp - > offset ) {
2005-09-28 00:41:22 +04:00
if ( offset = = START_OF_DIRECTORY_OFFSET ) {
2005-06-15 22:37:34 +04:00
RewindDir ( dirp , & offset ) ;
2007-09-13 01:48:20 +04:00
/*
2005-09-28 00:41:22 +04:00
* Ok we should really set the file number here
* to 1 to enable " .. " to be returned next . Trouble
* is I ' m worried about callers using SeekDir ( dirp , 0 )
* as equivalent to RewindDir ( ) . So leave this alone
* for now .
*/
} else if ( offset = = DOT_DOT_DIRECTORY_OFFSET ) {
RewindDir ( dirp , & offset ) ;
/*
* Set the file number to 2 - we want to get the first
* real file entry ( the one we return after " .. " )
* on the next ReadDir .
*/
dirp - > file_number = 2 ;
2005-08-22 01:12:27 +04:00
} else if ( offset = = END_OF_DIRECTORY_OFFSET ) {
; /* Don't seek in this case. */
2005-06-15 22:37:34 +04:00
} else {
SMB_VFS_SEEKDIR ( dirp - > conn , dirp - > dir , offset ) ;
}
2005-02-01 03:28:20 +03:00
dirp - > offset = offset ;
}
1996-05-04 11:50:46 +04:00
}
/*******************************************************************
1999-12-13 16:27:58 +03:00
Tell a dir position .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-13 16:27:58 +03:00
2005-02-01 03:28:20 +03:00
long TellDir ( struct smb_Dir * dirp )
1996-05-04 11:50:46 +04:00
{
2005-01-29 00:01:58 +03:00
return ( dirp - > offset ) ;
}
1996-05-04 11:50:46 +04:00
2006-04-08 09:00:04 +04:00
/*******************************************************************
Add an entry into the dcache .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void DirCacheAdd ( struct smb_Dir * dirp , const char * name , long offset )
{
struct name_cache_entry * e ;
2008-01-08 23:45:21 +03:00
if ( dirp - > name_cache_size = = 0 ) {
2007-08-24 01:53:00 +04:00
return ;
}
2008-01-08 23:45:21 +03:00
if ( dirp - > name_cache = = NULL ) {
2008-01-12 19:08:04 +03:00
dirp - > name_cache = TALLOC_ZERO_ARRAY (
dirp , struct name_cache_entry , dirp - > name_cache_size ) ;
2008-01-08 23:45:21 +03:00
if ( dirp - > name_cache = = NULL ) {
return ;
}
}
2007-08-24 01:53:00 +04:00
dirp - > name_cache_index = ( dirp - > name_cache_index + 1 ) %
dirp - > name_cache_size ;
2006-04-08 09:00:04 +04:00
e = & dirp - > name_cache [ dirp - > name_cache_index ] ;
2008-01-12 19:08:04 +03:00
TALLOC_FREE ( e - > name ) ;
e - > name = talloc_strdup ( dirp , name ) ;
2006-04-08 09:00:04 +04:00
e - > offset = offset ;
}
2005-01-29 00:01:58 +03:00
/*******************************************************************
Find an entry by name . Leave us at the offset after it .
2005-02-01 21:33:50 +03:00
Don ' t check for veto or invisible files .
2005-01-29 00:01:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool SearchDir ( struct smb_Dir * dirp , const char * name , long * poffset )
2005-01-29 00:01:58 +03:00
{
int i ;
2009-11-16 11:49:23 +03:00
const char * entry = NULL ;
char * talloced = NULL ;
2005-01-29 00:01:58 +03:00
connection_struct * conn = dirp - > conn ;
/* Search back in the name cache. */
2007-08-24 01:53:00 +04:00
if ( dirp - > name_cache_size & & dirp - > name_cache ) {
for ( i = dirp - > name_cache_index ; i > = 0 ; i - - ) {
struct name_cache_entry * e = & dirp - > name_cache [ i ] ;
if ( e - > name & & ( conn - > case_sensitive ? ( strcmp ( e - > name , name ) = = 0 ) : strequal ( e - > name , name ) ) ) {
* poffset = e - > offset ;
SeekDir ( dirp , e - > offset ) ;
return True ;
}
2005-01-29 00:01:58 +03:00
}
2007-08-24 01:53:00 +04:00
for ( i = dirp - > name_cache_size - 1 ; i > dirp - > name_cache_index ; i - - ) {
struct name_cache_entry * e = & dirp - > name_cache [ i ] ;
if ( e - > name & & ( conn - > case_sensitive ? ( strcmp ( e - > name , name ) = = 0 ) : strequal ( e - > name , name ) ) ) {
* poffset = e - > offset ;
SeekDir ( dirp , e - > offset ) ;
return True ;
}
2005-01-29 00:01:58 +03:00
}
}
/* Not found in the name cache. Rewind directory and start from scratch. */
SMB_VFS_REWINDDIR ( conn , dirp - > dir ) ;
2005-06-11 03:13:25 +04:00
dirp - > file_number = 0 ;
2005-07-22 00:24:21 +04:00
* poffset = START_OF_DIRECTORY_OFFSET ;
2009-11-16 11:49:23 +03:00
while ( ( entry = ReadDirName ( dirp , poffset , NULL , & talloced ) ) ) {
2005-02-01 21:33:50 +03:00
if ( conn - > case_sensitive ? ( strcmp ( entry , name ) = = 0 ) : strequal ( entry , name ) ) {
2009-11-16 11:49:23 +03:00
TALLOC_FREE ( talloced ) ;
2005-01-29 00:01:58 +03:00
return True ;
}
2009-11-16 11:49:23 +03:00
TALLOC_FREE ( talloced ) ;
2005-01-29 00:01:58 +03:00
}
return False ;
1996-05-04 11:50:46 +04:00
}
2007-02-09 05:03:39 +03:00
/*****************************************************************
Is this directory empty ?
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NTSTATUS can_delete_directory ( struct connection_struct * conn ,
const char * dirname )
{
NTSTATUS status = NT_STATUS_OK ;
long dirpos = 0 ;
2009-11-16 11:49:23 +03:00
const char * dname = NULL ;
char * talloced = NULL ;
2009-01-23 07:18:56 +03:00
SMB_STRUCT_STAT st ;
2011-02-10 03:31:06 +03:00
struct smb_Dir * dir_hnd = OpenDir ( talloc_tos ( ) , conn ,
2011-02-10 02:05:58 +03:00
dirname , NULL , 0 ) ;
2007-02-09 05:03:39 +03:00
if ( ! dir_hnd ) {
return map_nt_error_from_unix ( errno ) ;
}
2009-11-16 11:49:23 +03:00
while ( ( dname = ReadDirName ( dir_hnd , & dirpos , & st , & talloced ) ) ) {
2007-02-09 05:03:39 +03:00
/* Quick check for "." and ".." */
if ( dname [ 0 ] = = ' . ' ) {
if ( ! dname [ 1 ] | | ( dname [ 1 ] = = ' . ' & & ! dname [ 2 ] ) ) {
2009-11-16 11:49:23 +03:00
TALLOC_FREE ( talloced ) ;
2007-02-09 05:03:39 +03:00
continue ;
}
}
if ( ! is_visible_file ( conn , dirname , dname , & st , True ) ) {
2009-11-16 11:49:23 +03:00
TALLOC_FREE ( talloced ) ;
2007-02-09 05:03:39 +03:00
continue ;
}
2009-01-23 07:18:56 +03:00
DEBUG ( 10 , ( " can_delete_directory: got name %s - can't delete \n " ,
dname ) ) ;
2007-02-09 05:03:39 +03:00
status = NT_STATUS_DIRECTORY_NOT_EMPTY ;
break ;
}
2009-11-16 11:49:23 +03:00
TALLOC_FREE ( talloced ) ;
2008-01-12 19:08:04 +03:00
TALLOC_FREE ( dir_hnd ) ;
2007-02-09 05:03:39 +03:00
return status ;
}