]> arthur.barton.de Git - netatalk.git/blob - libatalk/vfs/vfs.c
bundled libevent2 is static
[netatalk.git] / libatalk / vfs / vfs.c
1 /*
2     Copyright (c) 2004 Didier Gautheron
3     Copyright (c) 2009 Frank Lahm
4  
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9  
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14  
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  
19 */
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif /* HAVE_CONFIG_H */
23
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <libgen.h>
31
32 #include <atalk/afp.h>    
33 #include <atalk/adouble.h>
34 #include <atalk/ea.h>
35 #include <atalk/acl.h>
36 #include <atalk/logger.h>
37 #include <atalk/util.h>
38 #include <atalk/volume.h>
39 #include <atalk/vfs.h>
40 #include <atalk/directory.h>
41 #include <atalk/unix.h>
42 #include <atalk/errchk.h>
43 #include <atalk/bstrlib.h>
44 #include <atalk/bstradd.h>
45 #include <atalk/compat.h>
46
47 struct perm {
48     uid_t uid;
49     gid_t gid;
50 };
51
52 typedef int (*rf_loop)(const struct vol *, struct dirent *, char *, void *, int);
53
54 /* ----------------------------- */
55 static int 
56 for_each_adouble(const char *from, const char *name, rf_loop fn, const struct vol *vol, void *data, int flag)
57 {
58     char            buf[ MAXPATHLEN + 1];
59     char            *m;
60     DIR             *dp;
61     struct dirent   *de;
62     int             ret;
63     
64
65     if (NULL == ( dp = opendir( name)) ) {
66         if (!flag) {
67             LOG(log_error, logtype_afpd, "%s: opendir %s: %s", from, fullpathname(name),strerror(errno) );
68             return -1;
69         }
70         return 0;
71     }
72     strlcpy( buf, name, sizeof(buf));
73     strlcat( buf, "/", sizeof(buf) );
74     m = strchr( buf, '\0' );
75     ret = 0;
76     while ((de = readdir(dp))) {
77         if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, "..")) {
78                 continue;
79         }
80         
81         strlcat(buf, de->d_name, sizeof(buf));
82         if (fn && (ret = fn(vol, de, buf, data, flag))) {
83            closedir(dp);
84            return ret;
85         }
86         *m = 0;
87     }
88     closedir(dp);
89     return ret;
90 }
91
92 static int netatalk_name(const char *name)
93 {
94     return strcmp(name,".AppleDB") && strcmp(name,".AppleDesktop");        
95 }
96
97 /*******************************************************************************
98  * classic adouble format 
99  *******************************************************************************/
100
101 static int validupath_adouble(VFS_FUNC_ARGS_VALIDUPATH)
102 {
103     if (name[0] != '.')
104         return 1;
105     
106     return netatalk_name(name) && strcmp(name,".AppleDouble") && strcasecmp(name,".Parent");
107 }                                           
108
109 /* ----------------- */
110 static int RF_chown_adouble(VFS_FUNC_ARGS_CHOWN)
111 {
112     struct stat st;
113     const char *ad_p;
114
115     ad_p = vol->ad_path(path, ADFLAGS_HF );
116
117     if ( stat( ad_p, &st ) < 0 )
118         return 0; /* ignore */
119
120     return chown( ad_p, uid, gid );
121 }
122
123 /* ----------------- */
124 static int RF_renamedir_adouble(VFS_FUNC_ARGS_RENAMEDIR)
125 {
126     return 0;
127 }
128
129 /* ----------------- */
130 static int deletecurdir_adouble_loop(const struct vol *vol, struct dirent *de, char *name, void *data _U_, int flag _U_)
131 {
132     struct stat st;
133     int         err;
134     
135     /* bail if the file exists in the current directory.
136      * note: this will not fail with dangling symlinks */
137     
138     if (lstat(de->d_name, &st) == 0)
139         return AFPERR_DIRNEMPT;
140
141     if ((err = netatalk_unlink(name)))
142         return err;
143
144     return 0;
145 }
146
147 static int RF_deletecurdir_adouble(VFS_FUNC_ARGS_DELETECURDIR)
148 {
149     int err;
150
151     /* delete stray .AppleDouble files. this happens to get .Parent files
152        as well. */
153     if ((err = for_each_adouble("deletecurdir", ".AppleDouble", deletecurdir_adouble_loop, vol, NULL, 1))) 
154         return err;
155     return netatalk_rmdir(-1, ".AppleDouble" );
156 }
157
158 /* ----------------- */
159 static int adouble_setfilmode(const struct vol *vol, const char *name, mode_t mode, struct stat *st)
160 {
161     return setfilmode(vol, name, ad_hf_mode(mode), st);
162 }
163
164 static int RF_setfilmode_adouble(VFS_FUNC_ARGS_SETFILEMODE)
165 {
166     return adouble_setfilmode(vol, vol->ad_path(name, ADFLAGS_HF ), mode, st);
167 }
168
169 /* ----------------- */
170 static int RF_setdirunixmode_adouble(VFS_FUNC_ARGS_SETDIRUNIXMODE)
171 {
172     const char *adouble = vol->ad_path(name, ADFLAGS_DIR );
173
174     if (dir_rx_set(mode)) {
175         if (chmod_acl(ad_dir(adouble), (DIRBITS | mode) & ~vol->v_umask) < 0 ) 
176             return -1;
177     }
178
179     if (adouble_setfilmode(vol, vol->ad_path(name, ADFLAGS_DIR ), mode, st) < 0) 
180         return -1;
181
182     if (!dir_rx_set(mode)) {
183         if (chmod_acl(ad_dir(adouble), (DIRBITS | mode) & ~vol->v_umask) < 0 ) 
184             return  -1 ;
185     }
186     return 0;
187 }
188
189 /* ----------------- */
190 static int setdirmode_adouble_loop(const struct vol *vol, struct dirent *de _U_, char *name, void *data, int flag)
191 {
192     mode_t hf_mode = *(mode_t *)data;
193     struct stat st;
194
195     if (ostat(name, &st, vol_syml_opt(vol)) < 0 ) {
196         if (flag)
197             return 0;
198         LOG(log_error, logtype_afpd, "setdirmode: stat %s: %s", name, strerror(errno) );
199     }
200     else if (!S_ISDIR(st.st_mode)) {
201         if (setfilmode(vol, name, hf_mode, &st) < 0) {
202                /* FIXME what do we do then? */
203         }
204     }
205     return 0;
206 }
207
208 static int RF_setdirmode_adouble(VFS_FUNC_ARGS_SETDIRMODE)
209 {
210     mode_t hf_mode = ad_hf_mode(mode);
211     const char  *adouble = vol->ad_path(name, ADFLAGS_DIR );
212     const char  *adouble_p = ad_dir(adouble);
213
214     if (dir_rx_set(mode)) {
215         if (chmod_acl(ad_dir(adouble), (DIRBITS | mode) & ~vol->v_umask) < 0) 
216             return -1;
217     }
218
219     if (for_each_adouble("setdirmode", adouble_p, setdirmode_adouble_loop, vol, &hf_mode, 0))
220         return -1;
221
222     if (!dir_rx_set(mode)) {
223         if (chmod_acl(ad_dir(adouble), (DIRBITS | mode) & ~vol->v_umask) < 0) 
224             return  -1 ;
225     }
226     return 0;
227 }
228
229 static int RF_setdirowner_adouble(VFS_FUNC_ARGS_SETDIROWNER)
230 {
231     if (lchown(".AppleDouble", uid, gid) < 0 && errno != EPERM ) {
232         LOG(log_debug, logtype_afpd, "setdirowner: chown %d/%d %s: %s",
233             uid, gid,fullpathname(".AppleDouble"), strerror(errno));
234     }
235     return 0;
236 }
237
238 /* ----------------- */
239 static int RF_deletefile_adouble(VFS_FUNC_ARGS_DELETEFILE)
240 {
241         return netatalk_unlinkat(dirfd, vol->ad_path(file, ADFLAGS_HF));
242 }
243
244 /* ----------------- */
245 static int RF_renamefile_adouble(VFS_FUNC_ARGS_RENAMEFILE)
246 {
247     char  adsrc[ MAXPATHLEN + 1];
248     int   err = 0;
249
250     strcpy( adsrc, vol->ad_path(src, 0 ));
251     if (unix_rename(dirfd, adsrc, -1, vol->ad_path(dst, 0 )) < 0) {
252         struct stat st;
253
254         err = errno;
255         if (errno == ENOENT) {
256                 struct adouble    ad;
257
258             if (ostatat(dirfd, adsrc, &st, vol_syml_opt(vol))) /* source has no ressource fork, */
259                 return 0;
260
261             /* We are here  because :
262              * -there's no dest folder. 
263              * -there's no .AppleDouble in the dest folder.
264              * if we use the struct adouble passed in parameter it will not
265              * create .AppleDouble if the file is already opened, so we
266              * use a diff one, it's not a pb,ie it's not the same file, yet.
267              */
268             ad_init(&ad, vol); 
269             if (ad_open(&ad, dst, ADFLAGS_HF | ADFLAGS_RDWR | ADFLAGS_CREATE, 0666) == 0) {
270                 ad_close(&ad, ADFLAGS_HF);
271                 if (!unix_rename(dirfd, adsrc, -1, vol->ad_path(dst, 0 )) ) 
272                    err = 0;
273                 else 
274                    err = errno;
275             }
276             else { /* it's something else, bail out */
277                     err = errno;
278                 }
279             }
280         }
281         if (err) {
282                 errno = err;
283                 return -1;
284         }
285         return 0;
286 }
287
288 static int RF_copyfile_adouble(VFS_FUNC_ARGS_COPYFILE)
289 /* const struct vol *vol, int sfd, const char *src, const char *dst */
290 {
291     EC_INIT;
292     bstring s = NULL, d = NULL;
293     char *dup1 = NULL;
294     char *dup2 = NULL;
295     char *dup3 = NULL;
296     char *dup4 = NULL;
297     const char *name = NULL;
298     const char *dir = NULL;
299
300     struct stat st;
301     EC_ZERO(stat(dst, &st));
302
303     if (S_ISDIR(st.st_mode)) {
304         /* build src path to AppleDouble file*/
305         EC_NULL(s = bfromcstr(src));
306         EC_ZERO(bcatcstr(s, "/.AppleDouble/.Parent"));
307
308         /* build dst path to AppleDouble file*/
309         EC_NULL(d = bfromcstr(dst));
310         EC_ZERO(bcatcstr(d, "/.AppleDouble/.Parent"));
311     } else {
312         /* get basename */
313
314         /* build src path to AppleDouble file*/
315         EC_NULL(dup1 = strdup(src));
316         EC_NULL(name = basename(strdup(dup1)));
317
318         EC_NULL(dup2 = strdup(src));
319         EC_NULL(dir = dirname(dup2));
320         EC_NULL(s = bfromcstr(dir));
321         EC_ZERO(bcatcstr(s, "/.AppleDouble/"));
322         EC_ZERO(bcatcstr(s, name));
323
324         /* build dst path to AppleDouble file*/
325         EC_NULL(dup4 = strdup(dst));
326         EC_NULL(name = basename(strdup(dup4)));
327
328         EC_NULL(dup3 = strdup(dst));
329         EC_NULL(dir = dirname(dup3));
330         EC_NULL(d = bfromcstr(dir));
331         EC_ZERO(bcatcstr(d, "/.AppleDouble/"));
332         EC_ZERO(bcatcstr(d, name));
333     }
334
335     /* ignore errors */
336     if (copy_file(sfd, cfrombstr(s), cfrombstr(d), 0666) != 0)
337         if (errno != ENOENT)
338             EC_FAIL;
339
340 EC_CLEANUP:
341     bdestroy(s);
342     bdestroy(d);
343     if (dup1) free(dup1);
344     if (dup2) free(dup2);
345     if (dup3) free(dup3);
346     if (dup4) free(dup4);
347
348     EC_EXIT;
349 }
350
351 #ifdef HAVE_SOLARIS_ACLS
352 static int RF_solaris_acl(VFS_FUNC_ARGS_ACL)
353 {
354     static char buf[ MAXPATHLEN + 1];
355     struct stat st;
356     int len;
357
358     if ((stat(path, &st)) != 0)
359         return -1;
360     if (S_ISDIR(st.st_mode)) {
361         len = snprintf(buf, MAXPATHLEN, "%s/.AppleDouble",path);
362         if (len < 0 || len >=  MAXPATHLEN)
363             return -1;
364         /* set acl on .AppleDouble dir first */
365         if ((acl(buf, cmd, count, aces)) != 0)
366             return -1;
367         /* now set ACL on ressource fork */
368         if ((acl(vol->ad_path(path, ADFLAGS_DIR), cmd, count, aces)) != 0)
369             return -1;
370     } else
371         /* set ACL on ressource fork */
372         if ((acl(vol->ad_path(path, ADFLAGS_HF), cmd, count, aces)) != 0)
373             return -1;
374
375     return 0;
376 }
377
378 static int RF_solaris_remove_acl(VFS_FUNC_ARGS_REMOVE_ACL)
379 {
380     int ret;
381     static char buf[ MAXPATHLEN + 1];
382     int len;
383
384     if (dir) {
385         len = snprintf(buf, MAXPATHLEN, "%s/.AppleDouble",path);
386         if (len < 0 || len >=  MAXPATHLEN)
387             return AFPERR_MISC;
388         /* remove ACL from .AppleDouble/.Parent first */
389         if ((ret = remove_acl_vfs(vol->ad_path(path, ADFLAGS_DIR))) != AFP_OK)
390             return ret;
391         /* now remove from .AppleDouble dir */
392         if ((ret = remove_acl_vfs(buf)) != AFP_OK)
393             return ret;
394     } else
395         /* remove ACL from ressource fork */
396         if ((ret = remove_acl_vfs(vol->ad_path(path, ADFLAGS_HF))) != AFP_OK)
397             return ret;
398
399     return AFP_OK;
400 }
401 #endif
402
403 #ifdef HAVE_POSIX_ACLS
404 static int RF_posix_acl(VFS_FUNC_ARGS_ACL)
405 {
406     EC_INIT;
407     static char buf[ MAXPATHLEN + 1];
408     struct stat st;
409     int len;
410
411     if (S_ISDIR(st.st_mode)) {
412         len = snprintf(buf, MAXPATHLEN, "%s/.AppleDouble",path);
413         if (len < 0 || len >=  MAXPATHLEN)
414             EC_FAIL;
415         /* set acl on .AppleDouble dir first */
416         EC_ZERO_LOG(acl_set_file(buf, type, acl));
417
418         if (type == ACL_TYPE_ACCESS)
419             /* set ACL on ressource fork (".Parent") too */
420             EC_ZERO_LOG(acl_set_file(vol->ad_path(path, ADFLAGS_DIR), type, acl));
421     } else {
422         /* set ACL on ressource fork */
423         EC_ZERO_LOG(acl_set_file(vol->ad_path(path, ADFLAGS_HF), type, acl));
424     }
425     
426 EC_CLEANUP:
427     if (ret != 0)
428         return AFPERR_MISC;
429     return AFP_OK;
430 }
431
432 static int RF_posix_remove_acl(VFS_FUNC_ARGS_REMOVE_ACL)
433 {
434     EC_INIT;
435     static char buf[ MAXPATHLEN + 1];
436     int len;
437
438     if (dir) {
439         len = snprintf(buf, MAXPATHLEN, "%s/.AppleDouble",path);
440         if (len < 0 || len >=  MAXPATHLEN)
441             return AFPERR_MISC;
442         /* remove ACL from .AppleDouble/.Parent first */
443         EC_ZERO_LOG_ERR(remove_acl_vfs(vol->ad_path(path, ADFLAGS_DIR)), AFPERR_MISC);
444
445         /* now remove from .AppleDouble dir */
446         EC_ZERO_LOG_ERR(remove_acl_vfs(buf), AFPERR_MISC);
447     } else {
448         /* remove ACL from ressource fork */
449         EC_ZERO_LOG_ERR(remove_acl_vfs(vol->ad_path(path, ADFLAGS_HF)), AFPERR_MISC);
450     }
451
452 EC_CLEANUP:
453     EC_EXIT;
454 }
455 #endif
456
457 /*************************************************************************
458  * EA adouble format 
459  ************************************************************************/
460 static int validupath_ea(VFS_FUNC_ARGS_VALIDUPATH)
461 {
462     if (name[0] != '.')
463         return 1;
464     
465 #ifndef HAVE_EAFD
466     if (name[1] == '_')
467         return ad_valid_header_osx(name);
468 #endif
469     return netatalk_name(name);
470 }
471
472 /* ----------------- */
473 static int RF_chown_ea(VFS_FUNC_ARGS_CHOWN)
474 {
475 #ifndef HAVE_EAFD
476     return chown(vol->ad_path(path, ADFLAGS_HF ), uid, gid);
477 #endif
478     return 0;
479 }
480
481 /* ---------------- */
482 static int RF_renamedir_ea(VFS_FUNC_ARGS_RENAMEDIR)
483 {
484     return 0;
485 }
486
487 /* Returns 1 if the entry is NOT an ._ file */
488 static int deletecurdir_ea_osx_chkifempty_loop(const struct vol *vol, struct dirent *de, char *name, void *data _U_, int flag _U_)
489 {
490     if (de->d_name[0] != '.' || de->d_name[0] == '_')
491         return 1;
492
493     return 0;
494 }
495
496 static int deletecurdir_ea_osx_loop(const struct vol *vol, struct dirent *de, char *name, void *data _U_, int flag _U_)
497 {
498     int ret;
499     
500     if ((ret = netatalk_unlink(name)) != 0)
501         return ret;
502
503     return 0;
504 }
505
506 /* ---------------- */
507 static int RF_deletecurdir_ea(VFS_FUNC_ARGS_DELETECURDIR)
508 {
509 #ifndef HAVE_EAFD
510     int err;
511     /* delete stray ._AppleDouble files */
512
513     /* first check if there's really no other file besides files starting with ._ */
514     if ((err = for_each_adouble("deletecurdir_ea_osx", ".",
515                                 deletecurdir_ea_osx_chkifempty_loop,
516                                 vol, NULL, 0)) != 0) {
517         if (err == 1)
518             return AFPERR_DIRNEMPT;
519         return AFPERR_MISC;
520     }
521
522     /* Now delete orphaned ._ files */
523     if ((err = for_each_adouble("deletecurdir_ea_osx", ".",
524                                 deletecurdir_ea_osx_loop,
525                                 vol, NULL, 0)) != 0)
526         return err;
527
528 #endif
529     return 0;
530 }
531
532 /* ---------------- */
533 static int RF_setdirunixmode_ea(VFS_FUNC_ARGS_SETDIRUNIXMODE)
534 {
535 #ifndef HAVE_EAFD
536 #endif
537     return 0;
538 }
539
540 static int RF_setfilmode_ea(VFS_FUNC_ARGS_SETFILEMODE)
541 {
542 #ifndef HAVE_EAFD
543     return adouble_setfilmode(vol, vol->ad_path(name, ADFLAGS_HF ), mode, st);
544 #endif
545     return 0;
546 }
547
548 /* ---------------- */
549 static int RF_setdirmode_ea(VFS_FUNC_ARGS_SETDIRMODE)
550 {
551 #ifndef HAVE_EAFD
552 #endif
553     return 0;
554 }
555
556 /* ---------------- */
557 static int RF_setdirowner_ea(VFS_FUNC_ARGS_SETDIROWNER)
558 {
559 #ifndef HAVE_EAFD
560 #endif
561         return 0;
562 }
563
564 static int RF_deletefile_ea(VFS_FUNC_ARGS_DELETEFILE)
565 {
566 #ifndef HAVE_EAFD
567         return netatalk_unlinkat(dirfd, vol->ad_path(file, ADFLAGS_HF));
568 #endif
569     return 0;
570 }
571 static int RF_copyfile_ea(VFS_FUNC_ARGS_COPYFILE)
572 {
573 #ifdef HAVE_EAFD
574     /* the EA VFS module does this all for us */
575     return 0;
576 #endif
577
578     EC_INIT;
579     bstring s = NULL, d = NULL;
580     char *dup1 = NULL;
581     char *dup2 = NULL;
582     char *dup3 = NULL;
583     char *dup4 = NULL;
584     const char *name = NULL;
585     const char *dir = NULL;
586
587     /* get basename */
588
589     /* build src path to ._ file*/
590     EC_NULL(dup1 = strdup(src));
591     EC_NULL(name = basename(strdup(dup1)));
592
593     EC_NULL(dup2 = strdup(src));
594     EC_NULL(dir = dirname(dup2));
595     EC_NULL(s = bfromcstr(dir));
596     EC_ZERO(bcatcstr(s, "/._"));
597     EC_ZERO(bcatcstr(s, name));
598
599     /* build dst path to ._file*/
600     EC_NULL(dup4 = strdup(dst));
601     EC_NULL(name = basename(strdup(dup4)));
602
603     EC_NULL(dup3 = strdup(dst));
604     EC_NULL(dir = dirname(dup3));
605     EC_NULL(d = bfromcstr(dir));
606     EC_ZERO(bcatcstr(d, "/._"));
607     EC_ZERO(bcatcstr(d, name));
608
609     if (copy_file(sfd, cfrombstr(s), cfrombstr(d), 0666) != 0) {
610         switch (errno) {
611         case ENOENT:
612             break;
613         default:
614             LOG(log_error, logtype_afpd, "[VFS] copyfile(\"%s\" -> \"%s\"): %s",
615                 cfrombstr(s), cfrombstr(d), strerror(errno));
616             EC_FAIL;
617                     
618         }
619     }
620
621 EC_CLEANUP:
622     bdestroy(s);
623     bdestroy(d);
624     free(dup1);
625     free(dup2);
626     free(dup3);
627     free(dup4);
628     EC_EXIT;
629 }
630
631 /* ---------------- */
632 static int RF_renamefile_ea(VFS_FUNC_ARGS_RENAMEFILE)
633 {
634 #ifndef HAVE_EAFD
635     char  adsrc[ MAXPATHLEN + 1];
636     int   err = 0;
637
638     strcpy( adsrc, vol->ad_path(src, 0 ));
639
640     if (unix_rename(dirfd, adsrc, -1, vol->ad_path(dst, 0 )) < 0) {
641         struct stat st;
642
643         err = errno;
644         if (errno == ENOENT && ostatat(dirfd, adsrc, &st, vol_syml_opt(vol))) /* source has no ressource fork, */
645             return 0;
646         errno = err;
647         return -1;
648     }
649     return 0;
650 #endif
651     return 0;
652 }
653
654 /********************************************************************************************
655  * VFS chaining
656  ********************************************************************************************/
657
658 /* 
659  * Up until we really start stacking many VFS modules on top of one another or use
660  * dynamic module loading like we do for UAMs, up until then we just stack VFS modules
661  * via an fixed size array.
662  * All VFS funcs must return AFP_ERR codes. When a func in the chain returns an error
663  * this error code will be returned to the caller, BUT the chain in followed and all
664  * following funcs are called in order to give them a chance.
665  */
666
667 /* 
668  * Define most VFS funcs with macros as they all do the same.
669  * Only "ad_path" and "validupath" will NOT do stacking and only
670  * call the func from the first module.
671  */
672
673 #define VFS_MFUNC(name, args, vars) \
674     static int vfs_ ## name(args) \
675     { \
676         int i = 0, ret = AFP_OK, err; \
677         while (vol->vfs_modules[i]) { \
678             if (vol->vfs_modules[i]->vfs_ ## name) { \
679                 err = vol->vfs_modules[i]->vfs_ ## name (vars); \
680                 if ((ret == AFP_OK) && (err != AFP_OK)) \
681                     ret = err; \
682             } \
683             i ++; \
684         } \
685         return ret; \
686     }
687
688 VFS_MFUNC(chown, VFS_FUNC_ARGS_CHOWN, VFS_FUNC_VARS_CHOWN)
689 VFS_MFUNC(renamedir, VFS_FUNC_ARGS_RENAMEDIR, VFS_FUNC_VARS_RENAMEDIR) 
690 VFS_MFUNC(deletecurdir, VFS_FUNC_ARGS_DELETECURDIR, VFS_FUNC_VARS_DELETECURDIR)
691 VFS_MFUNC(setfilmode, VFS_FUNC_ARGS_SETFILEMODE, VFS_FUNC_VARS_SETFILEMODE)
692 VFS_MFUNC(setdirmode, VFS_FUNC_ARGS_SETDIRMODE, VFS_FUNC_VARS_SETDIRMODE)
693 VFS_MFUNC(setdirunixmode, VFS_FUNC_ARGS_SETDIRUNIXMODE, VFS_FUNC_VARS_SETDIRUNIXMODE)
694 VFS_MFUNC(setdirowner, VFS_FUNC_ARGS_SETDIROWNER, VFS_FUNC_VARS_SETDIROWNER)
695 VFS_MFUNC(deletefile, VFS_FUNC_ARGS_DELETEFILE, VFS_FUNC_VARS_DELETEFILE)
696 VFS_MFUNC(renamefile, VFS_FUNC_ARGS_RENAMEFILE, VFS_FUNC_VARS_RENAMEFILE)
697 VFS_MFUNC(copyfile, VFS_FUNC_ARGS_COPYFILE, VFS_FUNC_VARS_COPYFILE)
698 #ifdef HAVE_ACLS
699 VFS_MFUNC(acl, VFS_FUNC_ARGS_ACL, VFS_FUNC_VARS_ACL)
700 VFS_MFUNC(remove_acl, VFS_FUNC_ARGS_REMOVE_ACL, VFS_FUNC_VARS_REMOVE_ACL)
701 #endif
702 VFS_MFUNC(ea_getsize, VFS_FUNC_ARGS_EA_GETSIZE, VFS_FUNC_VARS_EA_GETSIZE)
703 VFS_MFUNC(ea_getcontent, VFS_FUNC_ARGS_EA_GETCONTENT, VFS_FUNC_VARS_EA_GETCONTENT)
704 VFS_MFUNC(ea_list, VFS_FUNC_ARGS_EA_LIST, VFS_FUNC_VARS_EA_LIST)
705 VFS_MFUNC(ea_set, VFS_FUNC_ARGS_EA_SET, VFS_FUNC_VARS_EA_SET)
706 VFS_MFUNC(ea_remove, VFS_FUNC_ARGS_EA_REMOVE, VFS_FUNC_VARS_EA_REMOVE)
707
708 static int vfs_validupath(VFS_FUNC_ARGS_VALIDUPATH)
709 {
710     return vol->vfs_modules[0]->vfs_validupath(VFS_FUNC_VARS_VALIDUPATH);
711 }
712
713 /*
714  * These function pointers get called from the lib users via vol->vfs->func.
715  * These funcs are defined via the macros above.
716  */
717 static struct vfs_ops vfs_master_funcs = {
718     vfs_validupath,
719     vfs_chown,
720     vfs_renamedir,
721     vfs_deletecurdir,
722     vfs_setfilmode,
723     vfs_setdirmode,
724     vfs_setdirunixmode,
725     vfs_setdirowner,
726     vfs_deletefile,
727     vfs_renamefile,
728     vfs_copyfile,
729 #ifdef HAVE_ACLS
730     vfs_acl,
731     vfs_remove_acl,
732 #endif
733     vfs_ea_getsize,
734     vfs_ea_getcontent,
735     vfs_ea_list,
736     vfs_ea_set,
737     vfs_ea_remove
738 };
739
740 /* 
741  * Primary adouble modules: v2, ea
742  */
743
744 static struct vfs_ops netatalk_adouble_v2 = {
745     /* vfs_validupath:    */ validupath_adouble,
746     /* vfs_chown:         */ RF_chown_adouble,
747     /* vfs_renamedir:     */ RF_renamedir_adouble,
748     /* vfs_deletecurdir:  */ RF_deletecurdir_adouble,
749     /* vfs_setfilmode:    */ RF_setfilmode_adouble,
750     /* vfs_setdirmode:    */ RF_setdirmode_adouble,
751     /* vfs_setdirunixmode:*/ RF_setdirunixmode_adouble,
752     /* vfs_setdirowner:   */ RF_setdirowner_adouble,
753     /* vfs_deletefile:    */ RF_deletefile_adouble,
754     /* vfs_renamefile:    */ RF_renamefile_adouble,
755     /* vfs_copyfile:      */ RF_copyfile_adouble,
756     NULL
757 };
758
759 static struct vfs_ops netatalk_adouble_ea = {
760     /* vfs_validupath:    */ validupath_ea,
761     /* vfs_chown:         */ RF_chown_ea,
762     /* vfs_renamedir:     */ RF_renamedir_ea,
763     /* vfs_deletecurdir:  */ RF_deletecurdir_ea,
764     /* vfs_setfilmode:    */ RF_setfilmode_ea,
765     /* vfs_setdirmode:    */ RF_setdirmode_ea,
766     /* vfs_setdirunixmode:*/ RF_setdirunixmode_ea,
767     /* vfs_setdirowner:   */ RF_setdirowner_ea,
768     /* vfs_deletefile:    */ RF_deletefile_ea,
769     /* vfs_renamefile:    */ RF_renamefile_ea,
770     /* vfs_copyfile:      */ RF_copyfile_ea,
771     NULL
772 };
773
774 /* 
775  * Secondary vfs modules for Extended Attributes
776  */
777
778 static struct vfs_ops netatalk_ea_adouble = {
779     /* vfs_validupath:    */ NULL,
780     /* vfs_chown:         */ ea_chown,
781     /* vfs_renamedir:     */ NULL, /* ok */
782     /* vfs_deletecurdir:  */ NULL, /* ok */
783     /* vfs_setfilmode:    */ ea_chmod_file,
784     /* vfs_setdirmode:    */ NULL, /* ok */
785     /* vfs_setdirunixmode:*/ ea_chmod_dir,
786     /* vfs_setdirowner:   */ NULL, /* ok */
787     /* vfs_deletefile:    */ ea_deletefile,
788     /* vfs_renamefile:    */ ea_renamefile,
789     /* vfs_copyfile       */ ea_copyfile,
790 #ifdef HAVE_ACLS
791     /* vfs_acl:           */ NULL,
792     /* vfs_remove_acl     */ NULL,
793 #endif
794     /* vfs_getsize        */ get_easize,
795     /* vfs_getcontent     */ get_eacontent,
796     /* vfs_list           */ list_eas,
797     /* vfs_set            */ set_ea,
798     /* vfs_remove         */ remove_ea
799 };
800
801 static struct vfs_ops netatalk_ea_sys = {
802     /* validupath:        */ NULL,
803     /* rf_chown:          */ NULL,
804     /* rf_renamedir:      */ NULL,
805     /* rf_deletecurdir:   */ NULL,
806     /* rf_setfilmode:     */ NULL,
807     /* rf_setdirmode:     */ NULL,
808     /* rf_setdirunixmode: */ NULL,
809     /* rf_setdirowner:    */ NULL,
810     /* rf_deletefile:     */ NULL,
811     /* rf_renamefile:     */ NULL,
812     /* vfs_copyfile:      */ sys_ea_copyfile,
813 #ifdef HAVE_ACLS
814     /* rf_acl:            */ NULL,
815     /* rf_remove_acl      */ NULL,
816 #endif
817     /* ea_getsize         */ sys_get_easize,
818     /* ea_getcontent      */ sys_get_eacontent,
819     /* ea_list            */ sys_list_eas,
820     /* ea_set             */ sys_set_ea,
821     /* ea_remove          */ sys_remove_ea
822 };
823
824 /* 
825  * Tertiary VFS modules for ACLs
826  */
827
828 #ifdef HAVE_SOLARIS_ACLS
829 static struct vfs_ops netatalk_solaris_acl_adouble = {
830     /* validupath:        */ NULL,
831     /* rf_chown:          */ NULL,
832     /* rf_renamedir:      */ NULL,
833     /* rf_deletecurdir:   */ NULL,
834     /* rf_setfilmode:     */ NULL,
835     /* rf_setdirmode:     */ NULL,
836     /* rf_setdirunixmode: */ NULL,
837     /* rf_setdirowner:    */ NULL,
838     /* rf_deletefile:     */ NULL,
839     /* rf_renamefile:     */ NULL,
840     /* vfs_copyfile       */ NULL,
841     /* rf_acl:            */ RF_solaris_acl,
842     /* rf_remove_acl      */ RF_solaris_remove_acl,
843     NULL
844 };
845 #endif
846
847 #ifdef HAVE_POSIX_ACLS
848 static struct vfs_ops netatalk_posix_acl_adouble = {
849     /* validupath:        */ NULL,
850     /* rf_chown:          */ NULL,
851     /* rf_renamedir:      */ NULL,
852     /* rf_deletecurdir:   */ NULL,
853     /* rf_setfilmode:     */ NULL,
854     /* rf_setdirmode:     */ NULL,
855     /* rf_setdirunixmode: */ NULL,
856     /* rf_setdirowner:    */ NULL,
857     /* rf_deletefile:     */ NULL,
858     /* rf_renamefile:     */ NULL,
859     /* vfs_copyfile       */ NULL,
860     /* rf_acl:            */ RF_posix_acl,
861     /* rf_remove_acl      */ RF_posix_remove_acl,
862     NULL
863 };
864 #endif
865
866 /* ---------------- */
867 void initvol_vfs(struct vol *vol)
868 {
869     vol->vfs = &vfs_master_funcs;
870
871     /* Default adouble stuff */
872     if (vol->v_adouble == AD_VERSION2) {
873         vol->vfs_modules[0] = &netatalk_adouble_v2;
874         vol->ad_path = ad_path;
875     } else {
876         vol->vfs_modules[0] = &netatalk_adouble_ea;
877 #ifdef HAVE_EAFD
878         vol->ad_path = ad_path_ea;
879 #else
880         vol->ad_path = ad_path_osx;
881 #endif
882     }
883
884     /* Extended Attributes */
885     if (vol->v_vfs_ea == AFPVOL_EA_SYS) {
886         LOG(log_debug, logtype_afpd, "initvol_vfs: enabling EA support with native EAs");
887         vol->vfs_modules[1] = &netatalk_ea_sys;
888     } else if (vol->v_vfs_ea == AFPVOL_EA_AD) {
889         LOG(log_debug, logtype_afpd, "initvol_vfs: enabling EA support with adouble files");
890         vol->vfs_modules[1] = &netatalk_ea_adouble;
891     } else {
892         LOG(log_debug, logtype_afpd, "initvol_vfs: volume without EA support");
893     }
894
895     /* ACLs */
896 #ifdef HAVE_SOLARIS_ACLS
897     vol->vfs_modules[2] = &netatalk_solaris_acl_adouble;
898 #endif
899 #ifdef HAVE_POSIX_ACLS
900     vol->vfs_modules[2] = &netatalk_posix_acl_adouble;
901 #endif
902
903 }