CVE-2013-4476: lib-util: add file_check_permissions()
[Samba.git] / source3 / modules / vfs_dirsort.c
blob64d74d57964d5348bef0d0cb8f0acc51391bdd52
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 unsigned int number_of_entries;
34 struct timespec mtime;
35 DIR *source_directory;
36 files_struct *fsp; /* If open via FDOPENDIR. */
37 struct smb_filename *smb_fname; /* If open via OPENDIR */
40 static void free_dirsort_privates(void **datap) {
41 TALLOC_FREE(*datap);
44 static bool get_sorted_dir_mtime(vfs_handle_struct *handle,
45 struct dirsort_privates *data,
46 struct timespec *ret_mtime)
48 int ret;
49 struct timespec mtime;
51 if (data->fsp) {
52 ret = fsp_stat(data->fsp);
53 mtime = data->fsp->fsp_name->st.st_ex_mtime;
54 } else {
55 ret = SMB_VFS_STAT(handle->conn, data->smb_fname);
56 mtime = data->smb_fname->st.st_ex_mtime;
59 if (ret == -1) {
60 return false;
63 *ret_mtime = mtime;
65 return true;
68 static bool open_and_sort_dir(vfs_handle_struct *handle,
69 struct dirsort_privates *data)
71 unsigned int i = 0;
72 unsigned int total_count = 0;
74 data->number_of_entries = 0;
76 if (get_sorted_dir_mtime(handle, data, &data->mtime) == false) {
77 return false;
80 while (SMB_VFS_NEXT_READDIR(handle, data->source_directory, NULL)
81 != NULL) {
82 total_count++;
85 if (total_count == 0) {
86 return false;
89 /* Open the underlying directory and count the number of entries
90 Skip back to the beginning as we'll read it again */
91 SMB_VFS_NEXT_REWINDDIR(handle, data->source_directory);
93 /* Set up an array and read the directory entries into it */
94 TALLOC_FREE(data->directory_list); /* destroy previous cache if needed */
95 data->directory_list = talloc_zero_array(data,
96 struct dirent,
97 total_count);
98 if (!data->directory_list) {
99 return false;
101 for (i = 0; i < total_count; i++) {
102 struct dirent *dp = SMB_VFS_NEXT_READDIR(handle,
103 data->source_directory,
104 NULL);
105 if (dp == NULL) {
106 break;
108 data->directory_list[i] = *dp;
111 data->number_of_entries = i;
113 /* Sort the directory entries by name */
114 TYPESAFE_QSORT(data->directory_list, data->number_of_entries, compare_dirent);
115 return true;
118 static DIR *dirsort_opendir(vfs_handle_struct *handle,
119 const char *fname, const char *mask,
120 uint32 attr)
122 NTSTATUS status;
123 struct dirsort_privates *data = NULL;
125 /* set up our private data about this directory */
126 data = talloc_zero(handle->conn, struct dirsort_privates);
127 if (!data) {
128 return NULL;
131 status = create_synthetic_smb_fname(data,
132 fname,
133 NULL,
134 NULL,
135 &data->smb_fname);
136 if (!NT_STATUS_IS_OK(status)) {
137 TALLOC_FREE(data);
138 return NULL;
141 /* Open the underlying directory and count the number of entries */
142 data->source_directory = SMB_VFS_NEXT_OPENDIR(handle, fname, mask,
143 attr);
145 if (data->source_directory == NULL) {
146 TALLOC_FREE(data);
147 return NULL;
150 if (!open_and_sort_dir(handle, data)) {
151 SMB_VFS_NEXT_CLOSEDIR(handle,data->source_directory);
152 TALLOC_FREE(data);
153 return NULL;
156 SMB_VFS_HANDLE_SET_DATA(handle, data, free_dirsort_privates,
157 struct dirsort_privates, return NULL);
159 return data->source_directory;
162 static DIR *dirsort_fdopendir(vfs_handle_struct *handle,
163 files_struct *fsp,
164 const char *mask,
165 uint32 attr)
167 struct dirsort_privates *data = NULL;
169 /* set up our private data about this directory */
170 data = talloc_zero(handle->conn, struct dirsort_privates);
171 if (!data) {
172 return NULL;
175 data->fsp = fsp;
177 /* Open the underlying directory and count the number of entries */
178 data->source_directory = SMB_VFS_NEXT_FDOPENDIR(handle, fsp, mask,
179 attr);
181 if (data->source_directory == NULL) {
182 TALLOC_FREE(data);
183 return NULL;
186 if (!open_and_sort_dir(handle, data)) {
187 SMB_VFS_NEXT_CLOSEDIR(handle,data->source_directory);
188 TALLOC_FREE(data);
189 /* fd is now closed. */
190 fsp->fh->fd = -1;
191 return NULL;
194 SMB_VFS_HANDLE_SET_DATA(handle, data, free_dirsort_privates,
195 struct dirsort_privates, return NULL);
197 return data->source_directory;
200 static struct dirent *dirsort_readdir(vfs_handle_struct *handle,
201 DIR *dirp,
202 SMB_STRUCT_STAT *sbuf)
204 struct dirsort_privates *data = NULL;
205 struct timespec current_mtime;
207 SMB_VFS_HANDLE_GET_DATA(handle, data, struct dirsort_privates,
208 return NULL);
210 if (get_sorted_dir_mtime(handle, data, &current_mtime) == false) {
211 return NULL;
214 /* throw away cache and re-read the directory if we've changed */
215 if (timespec_compare(&current_mtime, &data->mtime) > 1) {
216 open_and_sort_dir(handle, data);
219 if (data->pos >= data->number_of_entries) {
220 return NULL;
223 return &data->directory_list[data->pos++];
226 static void dirsort_seekdir(vfs_handle_struct *handle, DIR *dirp,
227 long offset)
229 struct dirsort_privates *data = NULL;
230 SMB_VFS_HANDLE_GET_DATA(handle, data, struct dirsort_privates, return);
232 data->pos = offset;
235 static long dirsort_telldir(vfs_handle_struct *handle, DIR *dirp)
237 struct dirsort_privates *data = NULL;
238 SMB_VFS_HANDLE_GET_DATA(handle, data, struct dirsort_privates,
239 return -1);
241 return data->pos;
244 static void dirsort_rewinddir(vfs_handle_struct *handle, DIR *dirp)
246 struct dirsort_privates *data = NULL;
247 SMB_VFS_HANDLE_GET_DATA(handle, data, struct dirsort_privates, return);
249 data->pos = 0;
252 static struct vfs_fn_pointers vfs_dirsort_fns = {
253 .opendir_fn = dirsort_opendir,
254 .fdopendir_fn = dirsort_fdopendir,
255 .readdir_fn = dirsort_readdir,
256 .seekdir_fn = dirsort_seekdir,
257 .telldir_fn = dirsort_telldir,
258 .rewind_dir_fn = dirsort_rewinddir,
261 NTSTATUS vfs_dirsort_init(void)
263 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "dirsort",
264 &vfs_dirsort_fns);