2 Unix SMB/Netbios implementation.
4 VFS initialisation and support functions
5 Copyright (C) Tim Potter 1999
6 Copyright (C) Alexander Bokovoy 2002
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 This work was sponsored by Optifacio Software Services, Inc.
28 #define DBGC_CLASS DBGC_VFS
30 struct vfs_init_function_entry
{
32 vfs_op_tuple
*vfs_op_tuples
;
33 struct vfs_init_function_entry
*prev
, *next
;
36 static struct vfs_init_function_entry
*backends
= NULL
;
38 /* Some structures to help us initialise the vfs operations table */
45 /* Default vfs hooks. WARNING: The order of these initialisers is
46 very important. They must be in the same order as defined in
47 vfs.h. Change at your own peril. */
49 static struct vfs_ops default_vfs
= {
54 vfswrap_dummy_connect
,
55 vfswrap_dummy_disconnect
,
59 vfswrap_get_shadow_copy_data
,
61 /* Directory operations */
100 /* Windows ACL operations. */
106 /* POSIX ACL operations. */
110 vfswrap_sys_acl_get_entry
,
111 vfswrap_sys_acl_get_tag_type
,
112 vfswrap_sys_acl_get_permset
,
113 vfswrap_sys_acl_get_qualifier
,
114 vfswrap_sys_acl_get_file
,
115 vfswrap_sys_acl_get_fd
,
116 vfswrap_sys_acl_clear_perms
,
117 vfswrap_sys_acl_add_perm
,
118 vfswrap_sys_acl_to_text
,
119 vfswrap_sys_acl_init
,
120 vfswrap_sys_acl_create_entry
,
121 vfswrap_sys_acl_set_tag_type
,
122 vfswrap_sys_acl_set_qualifier
,
123 vfswrap_sys_acl_set_permset
,
124 vfswrap_sys_acl_valid
,
125 vfswrap_sys_acl_set_file
,
126 vfswrap_sys_acl_set_fd
,
127 vfswrap_sys_acl_delete_def_file
,
128 vfswrap_sys_acl_get_perm
,
129 vfswrap_sys_acl_free_text
,
130 vfswrap_sys_acl_free_acl
,
131 vfswrap_sys_acl_free_qualifier
,
141 vfswrap_lremovexattr
,
142 vfswrap_fremovexattr
,
149 /****************************************************************************
150 maintain the list of available backends
151 ****************************************************************************/
153 static struct vfs_init_function_entry
*vfs_find_backend_entry(const char *name
)
155 struct vfs_init_function_entry
*entry
= backends
;
158 if (strcmp(entry
->name
, name
)==0) return entry
;
165 NTSTATUS
smb_register_vfs(int version
, const char *name
, vfs_op_tuple
*vfs_op_tuples
)
167 struct vfs_init_function_entry
*entry
= backends
;
169 if ((version
!= SMB_VFS_INTERFACE_VERSION
)) {
170 DEBUG(0, ("Failed to register vfs module.\n"
171 "The module was compiled against SMB_VFS_INTERFACE_VERSION %d,\n"
172 "current SMB_VFS_INTERFACE_VERSION is %d.\n"
173 "Please recompile against the current Samba Version!\n",
174 version
, SMB_VFS_INTERFACE_VERSION
));
175 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
178 if (!name
|| !name
[0] || !vfs_op_tuples
) {
179 DEBUG(0,("smb_register_vfs() called with NULL pointer or empty name!\n"));
180 return NT_STATUS_INVALID_PARAMETER
;
183 if (vfs_find_backend_entry(name
)) {
184 DEBUG(0,("VFS module %s already loaded!\n", name
));
185 return NT_STATUS_OBJECT_NAME_COLLISION
;
188 entry
= smb_xmalloc(sizeof(struct vfs_init_function_entry
));
189 entry
->name
= smb_xstrdup(name
);
190 entry
->vfs_op_tuples
= vfs_op_tuples
;
192 DLIST_ADD(backends
, entry
);
193 DEBUG(5, ("Successfully added vfs backend '%s'\n", name
));
197 /****************************************************************************
198 initialise default vfs hooks
199 ****************************************************************************/
201 static void vfs_init_default(connection_struct
*conn
)
203 DEBUG(3, ("Initialising default vfs hooks\n"));
205 memcpy(&conn
->vfs
.ops
, &default_vfs
.ops
, sizeof(default_vfs
.ops
));
206 memcpy(&conn
->vfs_opaque
.ops
, &default_vfs
.ops
, sizeof(default_vfs
.ops
));
209 /****************************************************************************
210 initialise custom vfs hooks
211 ****************************************************************************/
213 BOOL
vfs_init_custom(connection_struct
*conn
, const char *vfs_object
)
216 char *module_name
= NULL
;
217 char *module_param
= NULL
, *p
;
219 vfs_handle_struct
*handle
;
220 struct vfs_init_function_entry
*entry
;
222 if (!conn
||!vfs_object
||!vfs_object
[0]) {
223 DEBUG(0,("vfs_init_custon() called with NULL pointer or emtpy vfs_object!\n"));
227 if(!backends
) static_init_vfs
;
229 DEBUG(3, ("Initialising custom vfs hooks from [%s]\n", vfs_object
));
231 module_name
= smb_xstrdup(vfs_object
);
233 p
= strchr(module_name
, ':');
238 trim_char(module_param
, ' ', ' ');
241 trim_char(module_name
, ' ', ' ');
243 /* First, try to load the module with the new module system */
244 if((entry
= vfs_find_backend_entry(module_name
)) ||
245 (NT_STATUS_IS_OK(smb_probe_module("vfs", module_name
)) &&
246 (entry
= vfs_find_backend_entry(module_name
)))) {
248 DEBUGADD(5,("Successfully loaded vfs module [%s] with the new modules system\n", vfs_object
));
250 if ((ops
= entry
->vfs_op_tuples
) == NULL
) {
251 DEBUG(0, ("entry->vfs_op_tuples==NULL for [%s] failed\n", vfs_object
));
252 SAFE_FREE(module_name
);
256 DEBUG(0,("Can't find a vfs module [%s]\n",vfs_object
));
257 SAFE_FREE(module_name
);
261 handle
= (vfs_handle_struct
*)talloc_zero(conn
->mem_ctx
,sizeof(vfs_handle_struct
));
263 DEBUG(0,("talloc_zero() failed!\n"));
264 SAFE_FREE(module_name
);
267 memcpy(&handle
->vfs_next
, &conn
->vfs
, sizeof(struct vfs_ops
));
270 handle
->param
= talloc_strdup(conn
->mem_ctx
, module_param
);
272 DLIST_ADD(conn
->vfs_handles
, handle
);
274 for(i
=0; ops
[i
].op
!= NULL
; i
++) {
275 DEBUG(5, ("Checking operation #%d (type %d, layer %d)\n", i
, ops
[i
].type
, ops
[i
].layer
));
276 if(ops
[i
].layer
== SMB_VFS_LAYER_OPAQUE
) {
277 /* Check whether this operation was already made opaque by different module */
278 if(((void**)&conn
->vfs_opaque
.ops
)[ops
[i
].type
] == ((void**)&default_vfs
.ops
)[ops
[i
].type
]) {
279 /* No, it isn't overloaded yet. Overload. */
280 DEBUGADD(5, ("Making operation type %d opaque [module %s]\n", ops
[i
].type
, vfs_object
));
281 ((void**)&conn
->vfs_opaque
.ops
)[ops
[i
].type
] = ops
[i
].op
;
282 ((vfs_handle_struct
**)&conn
->vfs_opaque
.handles
)[ops
[i
].type
] = handle
;
285 /* Change current VFS disposition*/
286 DEBUGADD(5, ("Accepting operation type %d from module %s\n", ops
[i
].type
, vfs_object
));
287 ((void**)&conn
->vfs
.ops
)[ops
[i
].type
] = ops
[i
].op
;
288 ((vfs_handle_struct
**)&conn
->vfs
.handles
)[ops
[i
].type
] = handle
;
291 SAFE_FREE(module_name
);
295 /*****************************************************************
297 ******************************************************************/
299 BOOL
smbd_vfs_init(connection_struct
*conn
)
301 const char **vfs_objects
;
305 /* Normal share - initialise with disk access functions */
306 vfs_init_default(conn
);
307 vfs_objects
= lp_vfs_objects(SNUM(conn
));
309 /* Override VFS functions if 'vfs object' was not specified*/
310 if (!vfs_objects
|| !vfs_objects
[0])
313 for (i
=0; vfs_objects
[i
] ;) {
317 for (j
=i
-1; j
>= 0; j
--) {
318 if (!vfs_init_custom(conn
, vfs_objects
[j
])) {
319 DEBUG(0, ("smbd_vfs_init: vfs_init_custom failed for %s\n", vfs_objects
[j
]));
326 /*******************************************************************
327 Check if directory exists.
328 ********************************************************************/
330 BOOL
vfs_directory_exist(connection_struct
*conn
, const char *dname
, SMB_STRUCT_STAT
*st
)
338 if (SMB_VFS_STAT(conn
,dname
,st
) != 0)
341 ret
= S_ISDIR(st
->st_mode
);
348 /*******************************************************************
350 ********************************************************************/
352 int vfs_MkDir(connection_struct
*conn
, const char *name
, mode_t mode
)
355 SMB_STRUCT_STAT sbuf
;
357 if(!(ret
=SMB_VFS_MKDIR(conn
, name
, mode
))) {
359 inherit_access_acl(conn
, name
, mode
);
362 * Check if high bits should have been set,
363 * then (if bits are missing): add them.
364 * Consider bits automagically set by UNIX, i.e. SGID bit from parent dir.
366 if(mode
& ~(S_IRWXU
|S_IRWXG
|S_IRWXO
) &&
367 !SMB_VFS_STAT(conn
,name
,&sbuf
) && (mode
& ~sbuf
.st_mode
))
368 SMB_VFS_CHMOD(conn
,name
,sbuf
.st_mode
| (mode
& ~sbuf
.st_mode
));
373 /*******************************************************************
374 Check if an object exists in the vfs.
375 ********************************************************************/
377 BOOL
vfs_object_exist(connection_struct
*conn
,const char *fname
,SMB_STRUCT_STAT
*sbuf
)
386 if (SMB_VFS_STAT(conn
,fname
,sbuf
) == -1)
391 /*******************************************************************
392 Check if a file exists in the vfs.
393 ********************************************************************/
395 BOOL
vfs_file_exist(connection_struct
*conn
, const char *fname
,SMB_STRUCT_STAT
*sbuf
)
404 if (SMB_VFS_STAT(conn
,fname
,sbuf
) == -1)
406 return(S_ISREG(sbuf
->st_mode
));
409 /****************************************************************************
410 Read data from fsp on the vfs. (note: EINTR re-read differs from vfs_write_data)
411 ****************************************************************************/
413 ssize_t
vfs_read_data(files_struct
*fsp
, char *buf
, size_t byte_count
)
417 while (total
< byte_count
)
419 ssize_t ret
= SMB_VFS_READ(fsp
, fsp
->fd
, buf
+ total
,
422 if (ret
== 0) return total
;
431 return (ssize_t
)total
;
434 ssize_t
vfs_pread_data(files_struct
*fsp
, char *buf
,
435 size_t byte_count
, SMB_OFF_T offset
)
439 while (total
< byte_count
)
441 ssize_t ret
= SMB_VFS_PREAD(fsp
, fsp
->fd
, buf
+ total
,
442 byte_count
- total
, offset
+ total
);
444 if (ret
== 0) return total
;
453 return (ssize_t
)total
;
456 /****************************************************************************
457 Write data to a fd on the vfs.
458 ****************************************************************************/
460 ssize_t
vfs_write_data(files_struct
*fsp
,const char *buffer
,size_t N
)
466 ret
= SMB_VFS_WRITE(fsp
,fsp
->fd
,buffer
+ total
,N
- total
);
475 return (ssize_t
)total
;
478 ssize_t
vfs_pwrite_data(files_struct
*fsp
,const char *buffer
,
479 size_t N
, SMB_OFF_T offset
)
485 ret
= SMB_VFS_PWRITE(fsp
, fsp
->fd
, buffer
+ total
,
486 N
- total
, offset
+ total
);
495 return (ssize_t
)total
;
497 /****************************************************************************
498 An allocate file space call using the vfs interface.
499 Allocates space for a file from a filedescriptor.
500 Returns 0 on success, -1 on failure.
501 ****************************************************************************/
503 int vfs_allocate_file_space(files_struct
*fsp
, SMB_BIG_UINT len
)
507 connection_struct
*conn
= fsp
->conn
;
508 SMB_BIG_UINT space_avail
;
509 SMB_BIG_UINT bsize
,dfree
,dsize
;
511 release_level_2_oplocks_on_change(fsp
);
514 * Actually try and commit the space on disk....
517 DEBUG(10,("vfs_allocate_file_space: file %s, len %.0f\n", fsp
->fsp_name
, (double)len
));
519 if (((SMB_OFF_T
)len
) < 0) {
520 DEBUG(0,("vfs_allocate_file_space: %s negative len requested.\n", fsp
->fsp_name
));
524 ret
= SMB_VFS_FSTAT(fsp
,fsp
->fd
,&st
);
528 if (len
== (SMB_BIG_UINT
)st
.st_size
)
531 if (len
< (SMB_BIG_UINT
)st
.st_size
) {
532 /* Shrink - use ftruncate. */
534 DEBUG(10,("vfs_allocate_file_space: file %s, shrink. Current size %.0f\n",
535 fsp
->fsp_name
, (double)st
.st_size
));
537 flush_write_cache(fsp
, SIZECHANGE_FLUSH
);
538 if ((ret
= SMB_VFS_FTRUNCATE(fsp
, fsp
->fd
, (SMB_OFF_T
)len
)) != -1) {
539 set_filelen_write_cache(fsp
, len
);
544 /* Grow - we need to test if we have enough space. */
546 if (!lp_strict_allocate(SNUM(fsp
->conn
)))
550 len
/= 1024; /* Len is now number of 1k blocks needed. */
551 space_avail
= SMB_VFS_DISK_FREE(conn
,fsp
->fsp_name
,False
,&bsize
,&dfree
,&dsize
);
553 DEBUG(10,("vfs_allocate_file_space: file %s, grow. Current size %.0f, needed blocks = %.0f, space avail = %.0f\n",
554 fsp
->fsp_name
, (double)st
.st_size
, (double)len
, (double)space_avail
));
556 if (len
> space_avail
) {
564 /****************************************************************************
565 A vfs set_filelen call.
566 set the length of a file from a filedescriptor.
567 Returns 0 on success, -1 on failure.
568 ****************************************************************************/
570 int vfs_set_filelen(files_struct
*fsp
, SMB_OFF_T len
)
574 release_level_2_oplocks_on_change(fsp
);
575 DEBUG(10,("vfs_set_filelen: ftruncate %s to len %.0f\n", fsp
->fsp_name
, (double)len
));
576 flush_write_cache(fsp
, SIZECHANGE_FLUSH
);
577 if ((ret
= SMB_VFS_FTRUNCATE(fsp
, fsp
->fd
, len
)) != -1)
578 set_filelen_write_cache(fsp
, len
);
583 /****************************************************************************
584 Transfer some data (n bytes) between two file_struct's.
585 ****************************************************************************/
587 static files_struct
*in_fsp
;
588 static files_struct
*out_fsp
;
590 static ssize_t
read_fn(int fd
, void *buf
, size_t len
)
592 return SMB_VFS_READ(in_fsp
, fd
, buf
, len
);
595 static ssize_t
write_fn(int fd
, const void *buf
, size_t len
)
597 return SMB_VFS_WRITE(out_fsp
, fd
, buf
, len
);
600 SMB_OFF_T
vfs_transfer_file(files_struct
*in
, files_struct
*out
, SMB_OFF_T n
)
605 return transfer_file_internal(in_fsp
->fd
, out_fsp
->fd
, n
, read_fn
, write_fn
);
608 /*******************************************************************
609 A vfs_readdir wrapper which just returns the file name.
610 ********************************************************************/
612 char *vfs_readdirname(connection_struct
*conn
, void *p
)
614 struct dirent
*ptr
= NULL
;
620 ptr
= (struct dirent
*)SMB_VFS_READDIR(conn
,p
);
631 #ifdef HAVE_BROKEN_READDIR
632 /* using /usr/ucb/cc is BAD */
639 /*******************************************************************
640 A wrapper for vfs_chdir().
641 ********************************************************************/
643 int vfs_ChDir(connection_struct
*conn
, const char *path
)
646 static pstring LastDir
="";
648 if (strcsequal(path
,"."))
651 if (*path
== '/' && strcsequal(LastDir
,path
))
654 DEBUG(4,("vfs_ChDir to %s\n",path
));
656 res
= SMB_VFS_CHDIR(conn
,path
);
658 pstrcpy(LastDir
,path
);
662 /* number of list structures for a caching GetWd function. */
663 #define MAX_GETWDCACHE (50)
666 SMB_DEV_T dev
; /* These *must* be compatible with the types returned in a stat() call. */
667 SMB_INO_T inode
; /* These *must* be compatible with the types returned in a stat() call. */
668 char *dos_path
; /* The pathname in DOS format. */
670 } ino_list
[MAX_GETWDCACHE
];
672 extern BOOL use_getwd_cache
;
674 /****************************************************************************
675 Prompte a ptr (to make it recently used)
676 ****************************************************************************/
678 static void array_promote(char *array
,int elsize
,int element
)
684 p
= (char *)malloc(elsize
);
687 DEBUG(5,("array_promote: malloc fail\n"));
691 memcpy(p
,array
+ element
* elsize
, elsize
);
692 memmove(array
+ elsize
,array
,elsize
*element
);
693 memcpy(array
,p
,elsize
);
697 /*******************************************************************
698 Return the absolute current directory path - given a UNIX pathname.
699 Note that this path is returned in DOS format, not UNIX
700 format. Note this can be called with conn == NULL.
701 ********************************************************************/
703 char *vfs_GetWd(connection_struct
*conn
, char *path
)
706 static BOOL getwd_cache_init
= False
;
707 SMB_STRUCT_STAT st
, st2
;
712 if (!use_getwd_cache
)
713 return(SMB_VFS_GETWD(conn
,path
));
716 if (!getwd_cache_init
) {
717 getwd_cache_init
= True
;
718 for (i
=0;i
<MAX_GETWDCACHE
;i
++) {
719 string_set(&ino_list
[i
].dos_path
,"");
720 ino_list
[i
].valid
= False
;
724 /* Get the inode of the current directory, if this doesn't work we're
727 if (SMB_VFS_STAT(conn
, ".",&st
) == -1) {
728 DEBUG(0,("Very strange, couldn't stat \".\" path=%s\n", path
));
729 return(SMB_VFS_GETWD(conn
,path
));
733 for (i
=0; i
<MAX_GETWDCACHE
; i
++) {
734 if (ino_list
[i
].valid
) {
736 /* If we have found an entry with a matching inode and dev number
737 then find the inode number for the directory in the cached string.
738 If this agrees with that returned by the stat for the current
739 directory then all is o.k. (but make sure it is a directory all
742 if (st
.st_ino
== ino_list
[i
].inode
&& st
.st_dev
== ino_list
[i
].dev
) {
743 if (SMB_VFS_STAT(conn
,ino_list
[i
].dos_path
,&st2
) == 0) {
744 if (st
.st_ino
== st2
.st_ino
&& st
.st_dev
== st2
.st_dev
&&
745 (st2
.st_mode
& S_IFMT
) == S_IFDIR
) {
746 pstrcpy (path
, ino_list
[i
].dos_path
);
748 /* promote it for future use */
749 array_promote((char *)&ino_list
[0],sizeof(ino_list
[0]),i
);
752 /* If the inode is different then something's changed,
753 scrub the entry and start from scratch. */
754 ino_list
[i
].valid
= False
;
761 /* We don't have the information to hand so rely on traditional methods.
762 The very slow getcwd, which spawns a process on some systems, or the
763 not quite so bad getwd. */
765 if (!SMB_VFS_GETWD(conn
,s
)) {
766 DEBUG(0,("vfs_GetWd: SMB_VFS_GETWD call failed, errno %s\n",strerror(errno
)));
772 DEBUG(5,("vfs_GetWd %s, inode %.0f, dev %.0f\n",s
,(double)st
.st_ino
,(double)st
.st_dev
));
774 /* add it to the cache */
775 i
= MAX_GETWDCACHE
- 1;
776 string_set(&ino_list
[i
].dos_path
,s
);
777 ino_list
[i
].dev
= st
.st_dev
;
778 ino_list
[i
].inode
= st
.st_ino
;
779 ino_list
[i
].valid
= True
;
781 /* put it at the top of the list */
782 array_promote((char *)&ino_list
[0],sizeof(ino_list
[0]),i
);
787 BOOL
canonicalize_path(connection_struct
*conn
, pstring path
)
789 #ifdef REALPATH_TAKES_NULL
790 char *resolved_name
= SMB_VFS_REALPATH(conn
,path
,NULL
);
791 if (!resolved_name
) {
794 pstrcpy(path
, resolved_name
);
795 SAFE_FREE(resolved_name
);
799 char resolved_name_buf
[PATH_MAX
+1];
801 pstring resolved_name_buf
;
803 char *resolved_name
= SMB_VFS_REALPATH(conn
,path
,resolved_name_buf
);
804 if (!resolved_name
) {
807 pstrcpy(path
, resolved_name
);
809 #endif /* REALPATH_TAKES_NULL */
812 /*******************************************************************
813 Reduce a file name, removing .. elements and checking that
814 it is below dir in the heirachy. This uses realpath.
815 ********************************************************************/
817 BOOL
reduce_name(connection_struct
*conn
, const pstring fname
)
819 #ifdef REALPATH_TAKES_NULL
820 BOOL free_resolved_name
= True
;
823 char resolved_name_buf
[PATH_MAX
+1];
825 pstring resolved_name_buf
;
827 BOOL free_resolved_name
= False
;
829 char *resolved_name
= NULL
;
830 size_t con_path_len
= strlen(conn
->connectpath
);
832 int saved_errno
= errno
;
834 DEBUG(3,("reduce_name [%s] [%s]\n", fname
, conn
->connectpath
));
836 #ifdef REALPATH_TAKES_NULL
837 resolved_name
= SMB_VFS_REALPATH(conn
,fname
,NULL
);
839 resolved_name
= SMB_VFS_REALPATH(conn
,fname
,resolved_name_buf
);
842 if (!resolved_name
) {
845 DEBUG(3,("reduce_name: Component not a directory in getting realpath for %s\n", fname
));
851 fstring last_component
;
852 /* Last component didn't exist. Remove it and try and canonicalise the directory. */
854 pstrcpy(tmp_fname
, fname
);
855 p
= strrchr_m(tmp_fname
, '/');
858 fstrcpy(last_component
, p
);
860 fstrcpy(last_component
, tmp_fname
);
861 pstrcpy(tmp_fname
, ".");
864 #ifdef REALPATH_TAKES_NULL
865 resolved_name
= SMB_VFS_REALPATH(conn
,tmp_fname
,NULL
);
867 resolved_name
= SMB_VFS_REALPATH(conn
,tmp_fname
,resolved_name_buf
);
869 if (!resolved_name
) {
870 DEBUG(3,("reduce_name: couldn't get realpath for %s\n", fname
));
874 pstrcpy(tmp_fname
, resolved_name
);
875 pstrcat(tmp_fname
, "/");
876 pstrcat(tmp_fname
, last_component
);
877 #ifdef REALPATH_TAKES_NULL
878 SAFE_FREE(resolved_name
);
879 resolved_name
= strdup(tmp_fname
);
880 if (!resolved_name
) {
881 DEBUG(0,("reduce_name: malloc fail for %s\n", tmp_fname
));
887 safe_strcpy(resolved_name_buf
, tmp_fname
, PATH_MAX
);
889 pstrcpy(pstring resolved_name_buf
, tmp_fname
);
891 resolved_name
= resolved_name_buf
;
896 DEBUG(1,("reduce_name: couldn't get realpath for %s\n", fname
));
902 DEBUG(10,("reduce_name realpath [%s] -> [%s]\n", fname
, resolved_name
));
904 if (*resolved_name
!= '/') {
905 DEBUG(0,("reduce_name: realpath doesn't return absolute paths !\n"));
906 if (free_resolved_name
)
907 SAFE_FREE(resolved_name
);
912 /* Check for widelinks allowed. */
913 if (!lp_widelinks(SNUM(conn
)) && (strncmp(conn
->connectpath
, resolved_name
, con_path_len
) != 0)) {
914 DEBUG(2, ("reduce_name: Bad access attempt: %s is a symlink outside the share path", fname
));
915 if (free_resolved_name
)
916 SAFE_FREE(resolved_name
);
921 /* Check if we are allowing users to follow symlinks */
922 /* Patch from David Clerc <David.Clerc@cui.unige.ch>
923 University of Geneva */
926 if (!lp_symlinks(SNUM(conn
))) {
927 SMB_STRUCT_STAT statbuf
;
928 if ( (SMB_VFS_LSTAT(conn
,fname
,&statbuf
) != -1) &&
929 (S_ISLNK(statbuf
.st_mode
)) ) {
930 if (free_resolved_name
)
931 SAFE_FREE(resolved_name
);
932 DEBUG(3,("reduce_name: denied: file path name %s is a symlink\n",resolved_name
));
939 DEBUG(3,("reduce_name: %s reduced to %s\n", fname
, p
));
940 if (free_resolved_name
)
941 SAFE_FREE(resolved_name
);