]> arthur.barton.de Git - netatalk.git/blob - libatalk/vfs/vfs.c
File's ressource fork can't be read if metadata EA is missing
[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 (stat(path, &st) == -1)
412         EC_FAIL;
413
414     if (S_ISDIR(st.st_mode)) {
415         len = snprintf(buf, MAXPATHLEN, "%s/.AppleDouble",path);
416         if (len < 0 || len >=  MAXPATHLEN)
417             EC_FAIL;
418         /* set acl on .AppleDouble dir first */
419         EC_ZERO_LOG(acl_set_file(buf, type, acl));
420
421         if (type == ACL_TYPE_ACCESS)
422             /* set ACL on ressource fork (".Parent") too */
423             EC_ZERO_LOG(acl_set_file(vol->ad_path(path, ADFLAGS_DIR), type, acl));
424     } else {
425         /* set ACL on ressource fork */
426         EC_ZERO_LOG(acl_set_file(vol->ad_path(path, ADFLAGS_HF), type, acl));
427     }
428     
429 EC_CLEANUP:
430     if (ret != 0)
431         return AFPERR_MISC;
432     return AFP_OK;
433 }
434
435 static int RF_posix_remove_acl(VFS_FUNC_ARGS_REMOVE_ACL)
436 {
437     EC_INIT;
438     static char buf[ MAXPATHLEN + 1];
439     int len;
440
441     if (dir) {
442         len = snprintf(buf, MAXPATHLEN, "%s/.AppleDouble",path);
443         if (len < 0 || len >=  MAXPATHLEN)
444             return AFPERR_MISC;
445         /* remove ACL from .AppleDouble/.Parent first */
446         EC_ZERO_LOG_ERR(remove_acl_vfs(vol->ad_path(path, ADFLAGS_DIR)), AFPERR_MISC);
447
448         /* now remove from .AppleDouble dir */
449         EC_ZERO_LOG_ERR(remove_acl_vfs(buf), AFPERR_MISC);
450     } else {
451         /* remove ACL from ressource fork */
452         EC_ZERO_LOG_ERR(remove_acl_vfs(vol->ad_path(path, ADFLAGS_HF)), AFPERR_MISC);
453     }
454
455 EC_CLEANUP:
456     EC_EXIT;
457 }
458 #endif
459
460 /*************************************************************************
461  * EA adouble format 
462  ************************************************************************/
463 static int validupath_ea(VFS_FUNC_ARGS_VALIDUPATH)
464 {
465     if (name[0] != '.')
466         return 1;
467     
468 #ifndef HAVE_EAFD
469     if (name[1] == '_')
470         return ad_valid_header_osx(name);
471 #endif
472     return netatalk_name(name);
473 }
474
475 /* ----------------- */
476 static int RF_chown_ea(VFS_FUNC_ARGS_CHOWN)
477 {
478 #ifndef HAVE_EAFD
479     return chown(vol->ad_path(path, ADFLAGS_HF ), uid, gid);
480 #endif
481     return 0;
482 }
483
484 /* ---------------- */
485 static int RF_renamedir_ea(VFS_FUNC_ARGS_RENAMEDIR)
486 {
487     return 0;
488 }
489
490 /* Returns 1 if the entry is NOT an ._ file */
491 static int deletecurdir_ea_osx_chkifempty_loop(const struct vol *vol, struct dirent *de, char *name, void *data _U_, int flag _U_)
492 {
493     if (de->d_name[0] != '.' || de->d_name[0] == '_')
494         return 1;
495
496     return 0;
497 }
498
499 static int deletecurdir_ea_osx_loop(const struct vol *vol, struct dirent *de, char *name, void *data _U_, int flag _U_)
500 {
501     int ret;
502     
503     if ((ret = netatalk_unlink(name)) != 0)
504         return ret;
505
506     return 0;
507 }
508
509 /* ---------------- */
510 static int RF_deletecurdir_ea(VFS_FUNC_ARGS_DELETECURDIR)
511 {
512 #ifndef HAVE_EAFD
513     int err;
514     /* delete stray ._AppleDouble files */
515
516     /* first check if there's really no other file besides files starting with ._ */
517     if ((err = for_each_adouble("deletecurdir_ea_osx", ".",
518                                 deletecurdir_ea_osx_chkifempty_loop,
519                                 vol, NULL, 0)) != 0) {
520         if (err == 1)
521             return AFPERR_DIRNEMPT;
522         return AFPERR_MISC;
523     }
524
525     /* Now delete orphaned ._ files */
526     if ((err = for_each_adouble("deletecurdir_ea_osx", ".",
527                                 deletecurdir_ea_osx_loop,
528                                 vol, NULL, 0)) != 0)
529         return err;
530
531 #endif
532     return 0;
533 }
534
535 /* ---------------- */
536 static int RF_setdirunixmode_ea(VFS_FUNC_ARGS_SETDIRUNIXMODE)
537 {
538 #ifndef HAVE_EAFD
539 #endif
540     return 0;
541 }
542
543 static int RF_setfilmode_ea(VFS_FUNC_ARGS_SETFILEMODE)
544 {
545 #ifndef HAVE_EAFD
546     return adouble_setfilmode(vol, vol->ad_path(name, ADFLAGS_HF ), mode, st);
547 #endif
548     return 0;
549 }
550
551 /* ---------------- */
552 static int RF_setdirmode_ea(VFS_FUNC_ARGS_SETDIRMODE)
553 {
554 #ifndef HAVE_EAFD
555 #endif
556     return 0;
557 }
558
559 /* ---------------- */
560 static int RF_setdirowner_ea(VFS_FUNC_ARGS_SETDIROWNER)
561 {
562 #ifndef HAVE_EAFD
563 #endif
564         return 0;
565 }
566
567 static int RF_deletefile_ea(VFS_FUNC_ARGS_DELETEFILE)
568 {
569 #ifndef HAVE_EAFD
570         return netatalk_unlinkat(dirfd, vol->ad_path(file, ADFLAGS_HF));
571 #endif
572     return 0;
573 }
574 static int RF_copyfile_ea(VFS_FUNC_ARGS_COPYFILE)
575 {
576 #ifdef HAVE_EAFD
577     /* the EA VFS module does this all for us */
578     return 0;
579 #endif
580
581     EC_INIT;
582     bstring s = NULL, d = NULL;
583     char *dup1 = NULL;
584     char *dup2 = NULL;
585     char *dup3 = NULL;
586     char *dup4 = NULL;
587     const char *name = NULL;
588     const char *dir = NULL;
589
590     /* get basename */
591
592     /* build src path to ._ file*/
593     EC_NULL(dup1 = strdup(src));
594     EC_NULL(name = basename(strdup(dup1)));
595
596     EC_NULL(dup2 = strdup(src));
597     EC_NULL(dir = dirname(dup2));
598     EC_NULL(s = bfromcstr(dir));
599     EC_ZERO(bcatcstr(s, "/._"));
600     EC_ZERO(bcatcstr(s, name));
601
602     /* build dst path to ._file*/
603     EC_NULL(dup4 = strdup(dst));
604     EC_NULL(name = basename(strdup(dup4)));
605
606     EC_NULL(dup3 = strdup(dst));
607     EC_NULL(dir = dirname(dup3));
608     EC_NULL(d = bfromcstr(dir));
609     EC_ZERO(bcatcstr(d, "/._"));
610     EC_ZERO(bcatcstr(d, name));
611
612     if (copy_file(sfd, cfrombstr(s), cfrombstr(d), 0666) != 0) {
613         switch (errno) {
614         case ENOENT:
615             break;
616         default:
617             LOG(log_error, logtype_afpd, "[VFS] copyfile(\"%s\" -> \"%s\"): %s",
618                 cfrombstr(s), cfrombstr(d), strerror(errno));
619             EC_FAIL;
620                     
621         }
622     }
623
624 EC_CLEANUP:
625     bdestroy(s);
626     bdestroy(d);
627     free(dup1);
628     free(dup2);
629     free(dup3);
630     free(dup4);
631     EC_EXIT;
632 }
633
634 /* ---------------- */
635 static int RF_renamefile_ea(VFS_FUNC_ARGS_RENAMEFILE)
636 {
637 #ifndef HAVE_EAFD
638     char  adsrc[ MAXPATHLEN + 1];
639     int   err = 0;
640
641     strcpy( adsrc, vol->ad_path(src, 0 ));
642
643     if (unix_rename(dirfd, adsrc, -1, vol->ad_path(dst, 0 )) < 0) {
644         struct stat st;
645
646         err = errno;
647         if (errno == ENOENT && ostatat(dirfd, adsrc, &st, vol_syml_opt(vol))) /* source has no ressource fork, */
648             return 0;
649         errno = err;
650         return -1;
651     }
652     return 0;
653 #endif
654     return 0;
655 }
656
657 /********************************************************************************************
658  * VFS chaining
659  ********************************************************************************************/
660
661 /* 
662  * Up until we really start stacking many VFS modules on top of one another or use
663  * dynamic module loading like we do for UAMs, up until then we just stack VFS modules
664  * via an fixed size array.
665  * All VFS funcs must return AFP_ERR codes. When a func in the chain returns an error
666  * this error code will be returned to the caller, BUT the chain in followed and all
667  * following funcs are called in order to give them a chance.
668  */
669
670 /* 
671  * Define most VFS funcs with macros as they all do the same.
672  * Only "ad_path" and "validupath" will NOT do stacking and only
673  * call the func from the first module.
674  */
675
676 #define VFS_MFUNC(name, args, vars) \
677     static int vfs_ ## name(args) \
678     { \
679         int i = 0, ret = AFP_OK, err; \
680         while (vol->vfs_modules[i]) { \
681             if (vol->vfs_modules[i]->vfs_ ## name) { \
682                 err = vol->vfs_modules[i]->vfs_ ## name (vars); \
683                 if ((ret == AFP_OK) && (err != AFP_OK)) \
684                     ret = err; \
685             } \
686             i ++; \
687         } \
688         return ret; \
689     }
690
691 VFS_MFUNC(chown, VFS_FUNC_ARGS_CHOWN, VFS_FUNC_VARS_CHOWN)
692 VFS_MFUNC(renamedir, VFS_FUNC_ARGS_RENAMEDIR, VFS_FUNC_VARS_RENAMEDIR) 
693 VFS_MFUNC(deletecurdir, VFS_FUNC_ARGS_DELETECURDIR, VFS_FUNC_VARS_DELETECURDIR)
694 VFS_MFUNC(setfilmode, VFS_FUNC_ARGS_SETFILEMODE, VFS_FUNC_VARS_SETFILEMODE)
695 VFS_MFUNC(setdirmode, VFS_FUNC_ARGS_SETDIRMODE, VFS_FUNC_VARS_SETDIRMODE)
696 VFS_MFUNC(setdirunixmode, VFS_FUNC_ARGS_SETDIRUNIXMODE, VFS_FUNC_VARS_SETDIRUNIXMODE)
697 VFS_MFUNC(setdirowner, VFS_FUNC_ARGS_SETDIROWNER, VFS_FUNC_VARS_SETDIROWNER)
698 VFS_MFUNC(deletefile, VFS_FUNC_ARGS_DELETEFILE, VFS_FUNC_VARS_DELETEFILE)
699 VFS_MFUNC(renamefile, VFS_FUNC_ARGS_RENAMEFILE, VFS_FUNC_VARS_RENAMEFILE)
700 VFS_MFUNC(copyfile, VFS_FUNC_ARGS_COPYFILE, VFS_FUNC_VARS_COPYFILE)
701 #ifdef HAVE_ACLS
702 VFS_MFUNC(acl, VFS_FUNC_ARGS_ACL, VFS_FUNC_VARS_ACL)
703 VFS_MFUNC(remove_acl, VFS_FUNC_ARGS_REMOVE_ACL, VFS_FUNC_VARS_REMOVE_ACL)
704 #endif
705 VFS_MFUNC(ea_getsize, VFS_FUNC_ARGS_EA_GETSIZE, VFS_FUNC_VARS_EA_GETSIZE)
706 VFS_MFUNC(ea_getcontent, VFS_FUNC_ARGS_EA_GETCONTENT, VFS_FUNC_VARS_EA_GETCONTENT)
707 VFS_MFUNC(ea_list, VFS_FUNC_ARGS_EA_LIST, VFS_FUNC_VARS_EA_LIST)
708 VFS_MFUNC(ea_set, VFS_FUNC_ARGS_EA_SET, VFS_FUNC_VARS_EA_SET)
709 VFS_MFUNC(ea_remove, VFS_FUNC_ARGS_EA_REMOVE, VFS_FUNC_VARS_EA_REMOVE)
710
711 static int vfs_validupath(VFS_FUNC_ARGS_VALIDUPATH)
712 {
713     return vol->vfs_modules[0]->vfs_validupath(VFS_FUNC_VARS_VALIDUPATH);
714 }
715
716 /*
717  * These function pointers get called from the lib users via vol->vfs->func.
718  * These funcs are defined via the macros above.
719  */
720 static struct vfs_ops vfs_master_funcs = {
721     vfs_validupath,
722     vfs_chown,
723     vfs_renamedir,
724     vfs_deletecurdir,
725     vfs_setfilmode,
726     vfs_setdirmode,
727     vfs_setdirunixmode,
728     vfs_setdirowner,
729     vfs_deletefile,
730     vfs_renamefile,
731     vfs_copyfile,
732 #ifdef HAVE_ACLS
733     vfs_acl,
734     vfs_remove_acl,
735 #endif
736     vfs_ea_getsize,
737     vfs_ea_getcontent,
738     vfs_ea_list,
739     vfs_ea_set,
740     vfs_ea_remove
741 };
742
743 /* 
744  * Primary adouble modules: v2, ea
745  */
746
747 static struct vfs_ops netatalk_adouble_v2 = {
748     /* vfs_validupath:    */ validupath_adouble,
749     /* vfs_chown:         */ RF_chown_adouble,
750     /* vfs_renamedir:     */ RF_renamedir_adouble,
751     /* vfs_deletecurdir:  */ RF_deletecurdir_adouble,
752     /* vfs_setfilmode:    */ RF_setfilmode_adouble,
753     /* vfs_setdirmode:    */ RF_setdirmode_adouble,
754     /* vfs_setdirunixmode:*/ RF_setdirunixmode_adouble,
755     /* vfs_setdirowner:   */ RF_setdirowner_adouble,
756     /* vfs_deletefile:    */ RF_deletefile_adouble,
757     /* vfs_renamefile:    */ RF_renamefile_adouble,
758     /* vfs_copyfile:      */ RF_copyfile_adouble,
759     NULL
760 };
761
762 static struct vfs_ops netatalk_adouble_ea = {
763     /* vfs_validupath:    */ validupath_ea,
764     /* vfs_chown:         */ RF_chown_ea,
765     /* vfs_renamedir:     */ RF_renamedir_ea,
766     /* vfs_deletecurdir:  */ RF_deletecurdir_ea,
767     /* vfs_setfilmode:    */ RF_setfilmode_ea,
768     /* vfs_setdirmode:    */ RF_setdirmode_ea,
769     /* vfs_setdirunixmode:*/ RF_setdirunixmode_ea,
770     /* vfs_setdirowner:   */ RF_setdirowner_ea,
771     /* vfs_deletefile:    */ RF_deletefile_ea,
772     /* vfs_renamefile:    */ RF_renamefile_ea,
773     /* vfs_copyfile:      */ RF_copyfile_ea,
774     NULL
775 };
776
777 /* 
778  * Secondary vfs modules for Extended Attributes
779  */
780
781 static struct vfs_ops netatalk_ea_adouble = {
782     /* vfs_validupath:    */ NULL,
783     /* vfs_chown:         */ ea_chown,
784     /* vfs_renamedir:     */ NULL, /* ok */
785     /* vfs_deletecurdir:  */ NULL, /* ok */
786     /* vfs_setfilmode:    */ ea_chmod_file,
787     /* vfs_setdirmode:    */ NULL, /* ok */
788     /* vfs_setdirunixmode:*/ ea_chmod_dir,
789     /* vfs_setdirowner:   */ NULL, /* ok */
790     /* vfs_deletefile:    */ ea_deletefile,
791     /* vfs_renamefile:    */ ea_renamefile,
792     /* vfs_copyfile       */ ea_copyfile,
793 #ifdef HAVE_ACLS
794     /* vfs_acl:           */ NULL,
795     /* vfs_remove_acl     */ NULL,
796 #endif
797     /* vfs_getsize        */ get_easize,
798     /* vfs_getcontent     */ get_eacontent,
799     /* vfs_list           */ list_eas,
800     /* vfs_set            */ set_ea,
801     /* vfs_remove         */ remove_ea
802 };
803
804 static struct vfs_ops netatalk_ea_sys = {
805     /* validupath:        */ NULL,
806     /* rf_chown:          */ NULL,
807     /* rf_renamedir:      */ NULL,
808     /* rf_deletecurdir:   */ NULL,
809     /* rf_setfilmode:     */ NULL,
810     /* rf_setdirmode:     */ NULL,
811     /* rf_setdirunixmode: */ NULL,
812     /* rf_setdirowner:    */ NULL,
813     /* rf_deletefile:     */ NULL,
814     /* rf_renamefile:     */ NULL,
815     /* vfs_copyfile:      */ sys_ea_copyfile,
816 #ifdef HAVE_ACLS
817     /* rf_acl:            */ NULL,
818     /* rf_remove_acl      */ NULL,
819 #endif
820     /* ea_getsize         */ sys_get_easize,
821     /* ea_getcontent      */ sys_get_eacontent,
822     /* ea_list            */ sys_list_eas,
823     /* ea_set             */ sys_set_ea,
824     /* ea_remove          */ sys_remove_ea
825 };
826
827 /* 
828  * Tertiary VFS modules for ACLs
829  */
830
831 #ifdef HAVE_SOLARIS_ACLS
832 static struct vfs_ops netatalk_solaris_acl_adouble = {
833     /* validupath:        */ NULL,
834     /* rf_chown:          */ NULL,
835     /* rf_renamedir:      */ NULL,
836     /* rf_deletecurdir:   */ NULL,
837     /* rf_setfilmode:     */ NULL,
838     /* rf_setdirmode:     */ NULL,
839     /* rf_setdirunixmode: */ NULL,
840     /* rf_setdirowner:    */ NULL,
841     /* rf_deletefile:     */ NULL,
842     /* rf_renamefile:     */ NULL,
843     /* vfs_copyfile       */ NULL,
844     /* rf_acl:            */ RF_solaris_acl,
845     /* rf_remove_acl      */ RF_solaris_remove_acl,
846     NULL
847 };
848 #endif
849
850 #ifdef HAVE_POSIX_ACLS
851 static struct vfs_ops netatalk_posix_acl_adouble = {
852     /* validupath:        */ NULL,
853     /* rf_chown:          */ NULL,
854     /* rf_renamedir:      */ NULL,
855     /* rf_deletecurdir:   */ NULL,
856     /* rf_setfilmode:     */ NULL,
857     /* rf_setdirmode:     */ NULL,
858     /* rf_setdirunixmode: */ NULL,
859     /* rf_setdirowner:    */ NULL,
860     /* rf_deletefile:     */ NULL,
861     /* rf_renamefile:     */ NULL,
862     /* vfs_copyfile       */ NULL,
863     /* rf_acl:            */ RF_posix_acl,
864     /* rf_remove_acl      */ RF_posix_remove_acl,
865     NULL
866 };
867 #endif
868
869 /* ---------------- */
870 void initvol_vfs(struct vol *vol)
871 {
872     vol->vfs = &vfs_master_funcs;
873
874     /* Default adouble stuff */
875     if (vol->v_adouble == AD_VERSION2) {
876         vol->vfs_modules[0] = &netatalk_adouble_v2;
877         vol->ad_path = ad_path;
878     } else {
879         vol->vfs_modules[0] = &netatalk_adouble_ea;
880 #ifdef HAVE_EAFD
881         vol->ad_path = ad_path_ea;
882 #else
883         vol->ad_path = ad_path_osx;
884 #endif
885     }
886
887     /* Extended Attributes */
888     if (vol->v_vfs_ea == AFPVOL_EA_SYS) {
889         LOG(log_debug, logtype_afpd, "initvol_vfs: enabling EA support with native EAs");
890         vol->vfs_modules[1] = &netatalk_ea_sys;
891     } else if (vol->v_vfs_ea == AFPVOL_EA_AD) {
892         LOG(log_debug, logtype_afpd, "initvol_vfs: enabling EA support with adouble files");
893         vol->vfs_modules[1] = &netatalk_ea_adouble;
894     } else {
895         LOG(log_debug, logtype_afpd, "initvol_vfs: volume without EA support");
896     }
897
898     /* ACLs */
899 #ifdef HAVE_SOLARIS_ACLS
900     vol->vfs_modules[2] = &netatalk_solaris_acl_adouble;
901 #endif
902 #ifdef HAVE_POSIX_ACLS
903     vol->vfs_modules[2] = &netatalk_posix_acl_adouble;
904 #endif
905
906 }