s3: Add an async smbsock_connect
[Samba.git] / source3 / modules / vfs_netatalk.c
blob885a972ac32ddd7c83df7eef3ab3f9917aeb417c
1 /*
2 * AppleTalk VFS module for Samba-3.x
4 * Copyright (C) Alexei Kotovich, 2002
5 * Copyright (C) Stefan (metze) Metzmacher, 2003
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"
23 #undef DBGC_CLASS
24 #define DBGC_CLASS DBGC_VFS
26 #define APPLEDOUBLE ".AppleDouble"
27 #define ADOUBLEMODE 0777
29 /* atalk functions */
31 static int atalk_build_paths(TALLOC_CTX *ctx, const char *path,
32 const char *fname, char **adbl_path, char **orig_path,
33 SMB_STRUCT_STAT *adbl_info, SMB_STRUCT_STAT *orig_info);
35 static int atalk_unlink_file(const char *path);
37 static int atalk_get_path_ptr(char *path)
39 int i = 0;
40 int ptr = 0;
42 for (i = 0; path[i]; i ++) {
43 if (path[i] == '/')
44 ptr = i;
45 /* get out some 'spam';) from win32's file name */
46 else if (path[i] == ':') {
47 path[i] = '\0';
48 break;
52 return ptr;
55 static int atalk_build_paths(TALLOC_CTX *ctx, const char *path, const char *fname,
56 char **adbl_path, char **orig_path,
57 SMB_STRUCT_STAT *adbl_info, SMB_STRUCT_STAT *orig_info)
59 int ptr0 = 0;
60 int ptr1 = 0;
61 char *dname = 0;
62 char *name = 0;
64 if (!ctx || !path || !fname || !adbl_path || !orig_path ||
65 !adbl_info || !orig_info)
66 return -1;
67 #if 0
68 DEBUG(3, ("ATALK: PATH: %s[%s]\n", path, fname));
69 #endif
70 if (strstr(path, APPLEDOUBLE) || strstr(fname, APPLEDOUBLE)) {
71 DEBUG(3, ("ATALK: path %s[%s] already contains %s\n", path, fname, APPLEDOUBLE));
72 return -1;
75 if (fname[0] == '.') ptr0 ++;
76 if (fname[1] == '/') ptr0 ++;
78 *orig_path = talloc_asprintf(ctx, "%s/%s", path, &fname[ptr0]);
80 /* get pointer to last '/' */
81 ptr1 = atalk_get_path_ptr(*orig_path);
83 sys_lstat(*orig_path, orig_info);
85 if (S_ISDIR(orig_info->st_mode)) {
86 *adbl_path = talloc_asprintf(ctx, "%s/%s/%s/",
87 path, &fname[ptr0], APPLEDOUBLE);
88 } else {
89 dname = talloc_strdup(ctx, *orig_path);
90 dname[ptr1] = '\0';
91 name = *orig_path;
92 *adbl_path = talloc_asprintf(ctx, "%s/%s/%s",
93 dname, APPLEDOUBLE, &name[ptr1 + 1]);
95 #if 0
96 DEBUG(3, ("ATALK: DEBUG:\n%s\n%s\n", *orig_path, *adbl_path));
97 #endif
98 sys_lstat(*adbl_path, adbl_info);
99 return 0;
102 static int atalk_unlink_file(const char *path)
104 int ret = 0;
106 become_root();
107 ret = unlink(path);
108 unbecome_root();
110 return ret;
113 static void atalk_add_to_list(name_compare_entry **list)
115 int i, count = 0;
116 name_compare_entry *new_list = 0;
117 name_compare_entry *cur_list = 0;
119 cur_list = *list;
121 if (cur_list) {
122 for (i = 0, count = 0; cur_list[i].name; i ++, count ++) {
123 if (strstr(cur_list[i].name, APPLEDOUBLE))
124 return;
128 if (!(new_list = SMB_CALLOC_ARRAY(name_compare_entry, count + 2)))
129 return;
131 for (i = 0; i < count; i ++) {
132 new_list[i].name = SMB_STRDUP(cur_list[i].name);
133 new_list[i].is_wild = cur_list[i].is_wild;
136 new_list[i].name = SMB_STRDUP(APPLEDOUBLE);
137 new_list[i].is_wild = False;
139 free_namearray(*list);
141 *list = new_list;
142 new_list = 0;
143 cur_list = 0;
146 static void atalk_rrmdir(TALLOC_CTX *ctx, char *path)
148 char *dpath;
149 SMB_STRUCT_DIRENT *dent = 0;
150 SMB_STRUCT_DIR *dir;
152 if (!path) return;
154 dir = sys_opendir(path);
155 if (!dir) return;
157 while (NULL != (dent = sys_readdir(dir))) {
158 if (strcmp(dent->d_name, ".") == 0 ||
159 strcmp(dent->d_name, "..") == 0)
160 continue;
161 if (!(dpath = talloc_asprintf(ctx, "%s/%s",
162 path, dent->d_name)))
163 continue;
164 atalk_unlink_file(dpath);
167 sys_closedir(dir);
170 /* Disk operations */
172 /* Directory operations */
174 static SMB_STRUCT_DIR *atalk_opendir(struct vfs_handle_struct *handle, const char *fname, const char *mask, uint32 attr)
176 SMB_STRUCT_DIR *ret = 0;
178 ret = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
181 * when we try to perform delete operation upon file which has fork
182 * in ./.AppleDouble and this directory wasn't hidden by Samba,
183 * MS Windows explorer causes the error: "Cannot find the specified file"
184 * There is some workaround to avoid this situation, i.e. if
185 * connection has not .AppleDouble entry in either veto or hide
186 * list then it would be nice to add one.
189 atalk_add_to_list(&handle->conn->hide_list);
190 atalk_add_to_list(&handle->conn->veto_list);
192 return ret;
195 static int atalk_rmdir(struct vfs_handle_struct *handle, const char *path)
197 bool add = False;
198 TALLOC_CTX *ctx = 0;
199 char *dpath;
201 if (!handle->conn->origpath || !path) goto exit_rmdir;
203 /* due to there is no way to change bDeleteVetoFiles variable
204 * from this module, gotta use talloc stuff..
207 strstr(path, APPLEDOUBLE) ? (add = False) : (add = True);
209 if (!(ctx = talloc_init("remove_directory")))
210 goto exit_rmdir;
212 if (!(dpath = talloc_asprintf(ctx, "%s/%s%s",
213 handle->conn->origpath, path, add ? "/"APPLEDOUBLE : "")))
214 goto exit_rmdir;
216 atalk_rrmdir(ctx, dpath);
218 exit_rmdir:
219 talloc_destroy(ctx);
220 return SMB_VFS_NEXT_RMDIR(handle, path);
223 /* File operations */
225 static int atalk_rename(struct vfs_handle_struct *handle, const char *oldname, const char *newname)
227 int ret = 0;
228 char *adbl_path = 0;
229 char *orig_path = 0;
230 SMB_STRUCT_STAT adbl_info;
231 SMB_STRUCT_STAT orig_info;
232 TALLOC_CTX *ctx;
234 ret = SMB_VFS_NEXT_RENAME(handle, oldname, newname);
236 if (!oldname) return ret;
238 if (!(ctx = talloc_init("rename_file")))
239 return ret;
241 if (atalk_build_paths(ctx, handle->conn->origpath, oldname, &adbl_path, &orig_path,
242 &adbl_info, &orig_info) != 0)
243 goto exit_rename;
245 if (S_ISDIR(orig_info.st_mode) || S_ISREG(orig_info.st_mode)) {
246 DEBUG(3, ("ATALK: %s has passed..\n", adbl_path));
247 goto exit_rename;
250 atalk_unlink_file(adbl_path);
252 exit_rename:
253 talloc_destroy(ctx);
254 return ret;
257 static int atalk_unlink(struct vfs_handle_struct *handle, const char *path)
259 int ret = 0, i;
260 char *adbl_path = 0;
261 char *orig_path = 0;
262 SMB_STRUCT_STAT adbl_info;
263 SMB_STRUCT_STAT orig_info;
264 TALLOC_CTX *ctx;
266 ret = SMB_VFS_NEXT_UNLINK(handle, path);
268 if (!path) return ret;
270 /* no .AppleDouble sync if veto or hide list is empty,
271 * otherwise "Cannot find the specified file" error will be caused
274 if (!handle->conn->veto_list) return ret;
275 if (!handle->conn->hide_list) return ret;
277 for (i = 0; handle->conn->veto_list[i].name; i ++) {
278 if (strstr(handle->conn->veto_list[i].name, APPLEDOUBLE))
279 break;
282 if (!handle->conn->veto_list[i].name) {
283 for (i = 0; handle->conn->hide_list[i].name; i ++) {
284 if (strstr(handle->conn->hide_list[i].name, APPLEDOUBLE))
285 break;
286 else {
287 DEBUG(3, ("ATALK: %s is not hidden, skipped..\n",
288 APPLEDOUBLE));
289 return ret;
294 if (!(ctx = talloc_init("unlink_file")))
295 return ret;
297 if (atalk_build_paths(ctx, handle->conn->origpath, path, &adbl_path, &orig_path,
298 &adbl_info, &orig_info) != 0)
299 goto exit_unlink;
301 if (S_ISDIR(orig_info.st_mode) || S_ISREG(orig_info.st_mode)) {
302 DEBUG(3, ("ATALK: %s has passed..\n", adbl_path));
303 goto exit_unlink;
306 atalk_unlink_file(adbl_path);
308 exit_unlink:
309 talloc_destroy(ctx);
310 return ret;
313 static int atalk_chmod(struct vfs_handle_struct *handle, const char *path, mode_t mode)
315 int ret = 0;
316 char *adbl_path = 0;
317 char *orig_path = 0;
318 SMB_STRUCT_STAT adbl_info;
319 SMB_STRUCT_STAT orig_info;
320 TALLOC_CTX *ctx;
322 ret = SMB_VFS_NEXT_CHMOD(handle, path, mode);
324 if (!path) return ret;
326 if (!(ctx = talloc_init("chmod_file")))
327 return ret;
329 if (atalk_build_paths(ctx, handle->conn->origpath, path, &adbl_path, &orig_path,
330 &adbl_info, &orig_info) != 0)
331 goto exit_chmod;
333 if (!S_ISDIR(orig_info.st_mode) && !S_ISREG(orig_info.st_mode)) {
334 DEBUG(3, ("ATALK: %s has passed..\n", orig_path));
335 goto exit_chmod;
338 chmod(adbl_path, ADOUBLEMODE);
340 exit_chmod:
341 talloc_destroy(ctx);
342 return ret;
345 static int atalk_chown(struct vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
347 int ret = 0;
348 char *adbl_path = 0;
349 char *orig_path = 0;
350 SMB_STRUCT_STAT adbl_info;
351 SMB_STRUCT_STAT orig_info;
352 TALLOC_CTX *ctx;
354 ret = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
356 if (!path) return ret;
358 if (!(ctx = talloc_init("chown_file")))
359 return ret;
361 if (atalk_build_paths(ctx, handle->conn->origpath, path, &adbl_path, &orig_path,
362 &adbl_info, &orig_info) != 0)
363 goto exit_chown;
365 if (!S_ISDIR(orig_info.st_mode) && !S_ISREG(orig_info.st_mode)) {
366 DEBUG(3, ("ATALK: %s has passed..\n", orig_path));
367 goto exit_chown;
370 if (chown(adbl_path, uid, gid) == -1) {
371 DEBUG(3, ("ATALK: chown error %s\n", strerror(errno)));
374 exit_chown:
375 talloc_destroy(ctx);
376 return ret;
379 static int atalk_lchown(struct vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
381 int ret = 0;
382 char *adbl_path = 0;
383 char *orig_path = 0;
384 SMB_STRUCT_STAT adbl_info;
385 SMB_STRUCT_STAT orig_info;
386 TALLOC_CTX *ctx;
388 ret = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
390 if (!path) return ret;
392 if (!(ctx = talloc_init("lchown_file")))
393 return ret;
395 if (atalk_build_paths(ctx, handle->conn->origpath, path, &adbl_path, &orig_path,
396 &adbl_info, &orig_info) != 0)
397 goto exit_lchown;
399 if (!S_ISDIR(orig_info.st_mode) && !S_ISREG(orig_info.st_mode)) {
400 DEBUG(3, ("ATALK: %s has passed..\n", orig_path));
401 goto exit_lchown;
404 if (lchown(adbl_path, uid, gid) == -1) {
405 DEBUG(3, ("ATALK: lchown error %s\n", strerror(errno)));
408 exit_lchown:
409 talloc_destroy(ctx);
410 return ret;
413 static vfs_op_tuple atalk_ops[] = {
415 /* Directory operations */
417 {SMB_VFS_OP(atalk_opendir), SMB_VFS_OP_OPENDIR, SMB_VFS_LAYER_TRANSPARENT},
418 {SMB_VFS_OP(atalk_rmdir), SMB_VFS_OP_RMDIR, SMB_VFS_LAYER_TRANSPARENT},
420 /* File operations */
422 {SMB_VFS_OP(atalk_rename), SMB_VFS_OP_RENAME, SMB_VFS_LAYER_TRANSPARENT},
423 {SMB_VFS_OP(atalk_unlink), SMB_VFS_OP_UNLINK, SMB_VFS_LAYER_TRANSPARENT},
424 {SMB_VFS_OP(atalk_chmod), SMB_VFS_OP_CHMOD, SMB_VFS_LAYER_TRANSPARENT},
425 {SMB_VFS_OP(atalk_chown), SMB_VFS_OP_CHOWN, SMB_VFS_LAYER_TRANSPARENT},
426 {SMB_VFS_OP(atalk_lchown), SMB_VFS_OP_LCHOWN, SMB_VFS_LAYER_TRANSPARENT},
428 /* Finish VFS operations definition */
430 {SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP, SMB_VFS_LAYER_NOOP}
433 NTSTATUS vfs_netatalk_init(void);
434 NTSTATUS vfs_netatalk_init(void)
436 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "netatalk", atalk_ops);