2 * VFS module to provide a sorted directory list.
4 * Copyright (C) Andy Kelk (andy@mopoke.co.uk), 2009
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "smbd/smbd.h"
23 #include "system/filesys.h"
25 static int compare_dirent (const SMB_STRUCT_DIRENT
*da
, const SMB_STRUCT_DIRENT
*db
)
27 return StrCaseCmp(da
->d_name
, db
->d_name
);
30 struct dirsort_privates
{
32 SMB_STRUCT_DIRENT
*directory_list
;
33 long number_of_entries
;
35 SMB_STRUCT_DIR
*source_directory
;
39 static void free_dirsort_privates(void **datap
) {
40 struct dirsort_privates
*data
= (struct dirsort_privates
*) *datap
;
41 SAFE_FREE(data
->directory_list
);
48 static bool open_and_sort_dir (vfs_handle_struct
*handle
)
50 SMB_STRUCT_DIRENT
*dp
;
53 struct dirsort_privates
*data
= NULL
;
55 SMB_VFS_HANDLE_GET_DATA(handle
, data
, struct dirsort_privates
,
58 data
->number_of_entries
= 0;
60 if (fstat(data
->fd
, &dir_stat
) == 0) {
61 data
->mtime
= dir_stat
.st_mtime
;
64 while (SMB_VFS_NEXT_READDIR(handle
, data
->source_directory
, NULL
)
66 data
->number_of_entries
++;
69 /* Open the underlying directory and count the number of entries
70 Skip back to the beginning as we'll read it again */
71 SMB_VFS_NEXT_REWINDDIR(handle
, data
->source_directory
);
73 /* Set up an array and read the directory entries into it */
74 SAFE_FREE(data
->directory_list
); /* destroy previous cache if needed */
75 data
->directory_list
= (SMB_STRUCT_DIRENT
*)SMB_MALLOC(
76 data
->number_of_entries
* sizeof(SMB_STRUCT_DIRENT
));
77 if (!data
->directory_list
) {
80 current_pos
= data
->pos
;
82 while ((dp
= SMB_VFS_NEXT_READDIR(handle
, data
->source_directory
,
84 data
->directory_list
[data
->pos
++] = *dp
;
87 /* Sort the directory entries by name */
88 data
->pos
= current_pos
;
89 TYPESAFE_QSORT(data
->directory_list
, data
->number_of_entries
, compare_dirent
);
93 static SMB_STRUCT_DIR
*dirsort_opendir(vfs_handle_struct
*handle
,
94 const char *fname
, const char *mask
,
97 struct dirsort_privates
*data
= NULL
;
99 /* set up our private data about this directory */
100 data
= (struct dirsort_privates
*)SMB_MALLOC(
101 sizeof(struct dirsort_privates
));
107 data
->directory_list
= NULL
;
110 /* Open the underlying directory and count the number of entries */
111 data
->source_directory
= SMB_VFS_NEXT_OPENDIR(handle
, fname
, mask
,
114 data
->fd
= dirfd(data
->source_directory
);
116 SMB_VFS_HANDLE_SET_DATA(handle
, data
, free_dirsort_privates
,
117 struct dirsort_privates
, return NULL
);
119 if (!open_and_sort_dir(handle
)) {
120 SMB_VFS_NEXT_CLOSEDIR(handle
,data
->source_directory
);
124 return data
->source_directory
;
127 static SMB_STRUCT_DIR
*dirsort_fdopendir(vfs_handle_struct
*handle
,
132 struct dirsort_privates
*data
= NULL
;
134 /* set up our private data about this directory */
135 data
= (struct dirsort_privates
*)SMB_MALLOC(
136 sizeof(struct dirsort_privates
));
142 data
->directory_list
= NULL
;
145 /* Open the underlying directory and count the number of entries */
146 data
->source_directory
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
,
149 if (data
->source_directory
== NULL
) {
154 data
->fd
= dirfd(data
->source_directory
);
156 SMB_VFS_HANDLE_SET_DATA(handle
, data
, free_dirsort_privates
,
157 struct dirsort_privates
, return NULL
);
159 if (!open_and_sort_dir(handle
)) {
160 SMB_VFS_NEXT_CLOSEDIR(handle
,data
->source_directory
);
161 /* fd is now closed. */
166 return data
->source_directory
;
169 static SMB_STRUCT_DIRENT
*dirsort_readdir(vfs_handle_struct
*handle
,
170 SMB_STRUCT_DIR
*dirp
,
171 SMB_STRUCT_STAT
*sbuf
)
173 struct dirsort_privates
*data
= NULL
;
174 time_t current_mtime
;
175 struct stat dir_stat
;
177 SMB_VFS_HANDLE_GET_DATA(handle
, data
, struct dirsort_privates
,
180 if (fstat(data
->fd
, &dir_stat
) == -1) {
184 current_mtime
= dir_stat
.st_mtime
;
186 /* throw away cache and re-read the directory if we've changed */
187 if (current_mtime
> data
->mtime
) {
188 open_and_sort_dir(handle
);
191 if (data
->pos
>= data
->number_of_entries
) {
195 return &data
->directory_list
[data
->pos
++];
198 static void dirsort_seekdir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
,
201 struct dirsort_privates
*data
= NULL
;
202 SMB_VFS_HANDLE_GET_DATA(handle
, data
, struct dirsort_privates
, return);
207 static long dirsort_telldir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
209 struct dirsort_privates
*data
= NULL
;
210 SMB_VFS_HANDLE_GET_DATA(handle
, data
, struct dirsort_privates
,
216 static void dirsort_rewinddir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
218 struct dirsort_privates
*data
= NULL
;
219 SMB_VFS_HANDLE_GET_DATA(handle
, data
, struct dirsort_privates
, return);
224 static struct vfs_fn_pointers vfs_dirsort_fns
= {
225 .opendir
= dirsort_opendir
,
226 .fdopendir
= dirsort_fdopendir
,
227 .readdir
= dirsort_readdir
,
228 .seekdir
= dirsort_seekdir
,
229 .telldir
= dirsort_telldir
,
230 .rewind_dir
= dirsort_rewinddir
,
233 NTSTATUS
vfs_dirsort_init(void)
235 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "dirsort",