s3:smbd: change blocking.c to use fsp_fnum_dbg() for fsp->fnum logging.
[Samba/gebeck_regimport.git] / source3 / modules / vfs_dirsort.c
blobf04f52d71896d93d1c462e61a8dd5ce02604c46a
1 /*
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/>.
21 #include "includes.h"
22 #include "smbd/smbd.h"
23 #include "system/filesys.h"
25 static int compare_dirent (const struct dirent *da, const struct dirent *db)
27 return strcasecmp_m(da->d_name, db->d_name);
30 struct dirsort_privates {
31 long pos;
32 struct dirent *directory_list;
33 long number_of_entries;
34 time_t mtime;
35 DIR *source_directory;
36 int fd;
39 static void free_dirsort_privates(void **datap) {
40 struct dirsort_privates *data = (struct dirsort_privates *) *datap;
41 SAFE_FREE(data->directory_list);
42 SAFE_FREE(data);
43 *datap = NULL;
45 return;
48 static bool open_and_sort_dir (vfs_handle_struct *handle)
50 struct dirent *dp;
51 struct stat dir_stat;
52 long current_pos;
53 struct dirsort_privates *data = NULL;
55 SMB_VFS_HANDLE_GET_DATA(handle, data, struct dirsort_privates,
56 return false);
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)
65 != 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 = (struct dirent *)SMB_MALLOC(
76 data->number_of_entries * sizeof(struct dirent));
77 if (!data->directory_list) {
78 return false;
80 current_pos = data->pos;
81 data->pos = 0;
82 while ((dp = SMB_VFS_NEXT_READDIR(handle, data->source_directory,
83 NULL)) != NULL) {
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);
90 return true;
93 static DIR *dirsort_opendir(vfs_handle_struct *handle,
94 const char *fname, const char *mask,
95 uint32 attr)
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));
103 if (!data) {
104 return NULL;
107 data->directory_list = NULL;
108 data->pos = 0;
110 /* Open the underlying directory and count the number of entries */
111 data->source_directory = SMB_VFS_NEXT_OPENDIR(handle, fname, mask,
112 attr);
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);
121 return NULL;
124 return data->source_directory;
127 static DIR *dirsort_fdopendir(vfs_handle_struct *handle,
128 files_struct *fsp,
129 const char *mask,
130 uint32 attr)
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));
138 if (!data) {
139 return NULL;
142 data->directory_list = NULL;
143 data->pos = 0;
145 /* Open the underlying directory and count the number of entries */
146 data->source_directory = SMB_VFS_NEXT_FDOPENDIR(handle, fsp, mask,
147 attr);
149 if (data->source_directory == NULL) {
150 SAFE_FREE(data);
151 return 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. */
162 fsp->fh->fd = -1;
163 return NULL;
166 return data->source_directory;
169 static struct dirent *dirsort_readdir(vfs_handle_struct *handle,
170 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,
178 return NULL);
180 if (fstat(data->fd, &dir_stat) == -1) {
181 return NULL;
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) {
192 return NULL;
195 return &data->directory_list[data->pos++];
198 static void dirsort_seekdir(vfs_handle_struct *handle, DIR *dirp,
199 long offset)
201 struct dirsort_privates *data = NULL;
202 SMB_VFS_HANDLE_GET_DATA(handle, data, struct dirsort_privates, return);
204 data->pos = offset;
207 static long dirsort_telldir(vfs_handle_struct *handle, DIR *dirp)
209 struct dirsort_privates *data = NULL;
210 SMB_VFS_HANDLE_GET_DATA(handle, data, struct dirsort_privates,
211 return -1);
213 return data->pos;
216 static void dirsort_rewinddir(vfs_handle_struct *handle, DIR *dirp)
218 struct dirsort_privates *data = NULL;
219 SMB_VFS_HANDLE_GET_DATA(handle, data, struct dirsort_privates, return);
221 data->pos = 0;
224 static struct vfs_fn_pointers vfs_dirsort_fns = {
225 .opendir_fn = dirsort_opendir,
226 .fdopendir_fn = dirsort_fdopendir,
227 .readdir_fn = dirsort_readdir,
228 .seekdir_fn = dirsort_seekdir,
229 .telldir_fn = dirsort_telldir,
230 .rewind_dir_fn = dirsort_rewinddir,
233 NTSTATUS vfs_dirsort_init(void)
235 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "dirsort",
236 &vfs_dirsort_fns);