r3780: final release notes
[Samba.git] / source / modules / vfs_shadow_copy.c
blob7ad7b1f7b14f4f41831b4cf9c69f9b587c140d0f
1 /*
2 * implementation of an Shadow Copy module
4 * Copyright (C) Stefan Metzmacher 2003-2004
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
24 Please read the VFS module Samba-HowTo-Collection.
25 there's a chapter about this module
27 For this share
28 Z:\
30 the ShadowCopies are in this directories
32 Z:\@GMT-2003.08.05-12.00.00\
33 Z:\@GMT-2003.08.05-12.01.00\
34 Z:\@GMT-2003.08.05-12.02.00\
36 e.g.
38 Z:\testfile.txt
39 Z:\@GMT-2003.08.05-12.02.00\testfile.txt
41 or:
43 Z:\testdir\testfile.txt
44 Z:\@GMT-2003.08.05-12.02.00\testdir\testfile.txt
47 Note: Files must differ to be displayed via Windows Explorer!
48 Directories are always displayed...
51 static int vfs_shadow_copy_debug_level = DBGC_VFS;
53 #undef DBGC_CLASS
54 #define DBGC_CLASS vfs_shadow_copy_debug_level
56 #define SHADOW_COPY_PREFIX "@GMT-"
57 #define SHADOW_COPY_SAMPLE "@GMT-2004.02.18-15.44.00"
59 typedef struct {
60 int pos;
61 int num;
62 struct dirent *dirs;
63 } shadow_copy_Dir;
65 static BOOL shadow_copy_match_name(const char *name)
67 if (strncmp(SHADOW_COPY_PREFIX,name, sizeof(SHADOW_COPY_PREFIX)-1)==0 &&
68 (strlen(SHADOW_COPY_SAMPLE) == strlen(name))) {
69 return True;
72 return False;
75 static DIR *shadow_copy_opendir(vfs_handle_struct *handle, connection_struct *conn, const char *fname)
77 shadow_copy_Dir *dirp;
78 DIR *p = SMB_VFS_NEXT_OPENDIR(handle,conn,fname);
80 if (!p) {
81 DEBUG(0,("shadow_copy_opendir: SMB_VFS_NEXT_OPENDIR() failed for [%s]\n",fname));
82 return NULL;
85 dirp = (shadow_copy_Dir *)malloc(sizeof(shadow_copy_Dir));
86 if (!dirp) {
87 DEBUG(0,("shadow_copy_opendir: Out of memory\n"));
88 SMB_VFS_NEXT_CLOSEDIR(handle,conn,p);
89 return NULL;
92 ZERO_STRUCTP(dirp);
94 while (True) {
95 struct dirent *d;
96 struct dirent *r;
99 d = SMB_VFS_NEXT_READDIR(handle, conn, p);
100 if (d == NULL) {
101 break;
104 if (shadow_copy_match_name(d->d_name)) {
105 DEBUG(8,("shadow_copy_opendir: hide [%s]\n",d->d_name));
106 continue;
109 DEBUG(10,("shadow_copy_opendir: not hide [%s]\n",d->d_name));
111 r = (struct dirent *)Realloc(dirp->dirs,(dirp->num+1)*sizeof(struct dirent));
112 if (!r) {
113 DEBUG(0,("shadow_copy_opendir: Out of memory\n"));
114 break;
117 dirp->dirs = r;
118 dirp->dirs[dirp->num++] = *d;
121 SMB_VFS_NEXT_CLOSEDIR(handle,conn,p);
122 return((DIR *)dirp);
125 struct dirent *shadow_copy_readdir(vfs_handle_struct *handle, connection_struct *conn, DIR *_dirp)
127 shadow_copy_Dir *dirp = (shadow_copy_Dir *)_dirp;
129 if (dirp->pos < dirp->num) {
130 return &(dirp->dirs[dirp->pos++]);
133 return NULL;
136 int shadow_copy_closedir(vfs_handle_struct *handle, connection_struct *conn, DIR *_dirp)
138 shadow_copy_Dir *dirp = (shadow_copy_Dir *)_dirp;
140 SAFE_FREE(dirp);
142 return 0;
145 static int shadow_copy_get_shadow_copy_data(vfs_handle_struct *handle, files_struct *fsp, SHADOW_COPY_DATA *shadow_copy_data, BOOL labels)
147 DIR *p = SMB_VFS_NEXT_OPENDIR(handle,fsp->conn,fsp->conn->connectpath);
149 shadow_copy_data->num_volumes = 0;
150 shadow_copy_data->labels = NULL;
152 if (!p) {
153 DEBUG(0,("shadow_copy_get_shadow_copy_data: SMB_VFS_NEXT_OPENDIR() failed for [%s]\n",fsp->conn->connectpath));
154 return -1;
157 while (True) {
158 SHADOW_COPY_LABEL *tlabels;
159 struct dirent *d;
161 d = SMB_VFS_NEXT_READDIR(handle, fsp->conn, p);
162 if (d == NULL) {
163 break;
166 /* */
167 if (!shadow_copy_match_name(d->d_name)) {
168 DEBUG(10,("shadow_copy_get_shadow_copy_data: ignore [%s]\n",d->d_name));
169 continue;
172 DEBUG(7,("shadow_copy_get_shadow_copy_data: not ignore [%s]\n",d->d_name));
174 if (!labels) {
175 shadow_copy_data->num_volumes++;
176 continue;
179 tlabels = (SHADOW_COPY_LABEL *)talloc_realloc(shadow_copy_data->mem_ctx,
180 shadow_copy_data->labels,
181 (shadow_copy_data->num_volumes+1)*sizeof(SHADOW_COPY_LABEL));
182 if (tlabels == NULL) {
183 DEBUG(0,("shadow_copy_get_shadow_copy_data: Out of memory\n"));
184 SMB_VFS_NEXT_CLOSEDIR(handle,fsp->conn,p);
185 return -1;
188 snprintf(tlabels[shadow_copy_data->num_volumes++], sizeof(*tlabels), "%s",d->d_name);
190 shadow_copy_data->labels = tlabels;
193 SMB_VFS_NEXT_CLOSEDIR(handle,fsp->conn,p);
194 return 0;
197 /* VFS operations structure */
199 static vfs_op_tuple shadow_copy_ops[] = {
200 {SMB_VFS_OP(shadow_copy_opendir), SMB_VFS_OP_OPENDIR, SMB_VFS_LAYER_TRANSPARENT},
201 {SMB_VFS_OP(shadow_copy_readdir), SMB_VFS_OP_READDIR, SMB_VFS_LAYER_TRANSPARENT},
202 {SMB_VFS_OP(shadow_copy_closedir), SMB_VFS_OP_CLOSEDIR, SMB_VFS_LAYER_TRANSPARENT},
204 {SMB_VFS_OP(shadow_copy_get_shadow_copy_data), SMB_VFS_OP_GET_SHADOW_COPY_DATA,SMB_VFS_LAYER_OPAQUE},
206 {SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP, SMB_VFS_LAYER_NOOP}
209 NTSTATUS vfs_shadow_copy_init(void)
211 NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "shadow_copy", shadow_copy_ops);
213 if (!NT_STATUS_IS_OK(ret))
214 return ret;
216 vfs_shadow_copy_debug_level = debug_add_class("shadow_copy");
217 if (vfs_shadow_copy_debug_level == -1) {
218 vfs_shadow_copy_debug_level = DBGC_VFS;
219 DEBUG(0, ("%s: Couldn't register custom debugging class!\n",
220 "vfs_shadow_copy_init"));
221 } else {
222 DEBUG(10, ("%s: Debug class number of '%s': %d\n",
223 "vfs_shadow_copy_init","shadow_copy",vfs_shadow_copy_debug_level));
226 return ret;