]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/directory.c
Adjust dircache for renamed files and minor fixes
[netatalk.git] / etc / afpd / directory.c
1 /*
2  * Copyright (c) 1990,1993 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif /* HAVE_CONFIG_H */
9
10 #include <string.h>
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <grp.h>
14 #include <pwd.h>
15 #include <sys/param.h>
16 #include <sys/stat.h>
17 #include <errno.h>
18 #include <utime.h>
19 #include <assert.h>
20
21 #include <atalk/adouble.h>
22 #include <atalk/vfs.h>
23 #include <atalk/afp.h>
24 #include <atalk/util.h>
25 #include <atalk/cnid.h>
26 #include <atalk/logger.h>
27 #include <atalk/uuid.h>
28 #include <atalk/unix.h>
29 #include <atalk/bstrlib.h>
30 #include <atalk/bstradd.h>
31
32 #include "directory.h"
33 #include "dircache.h"
34 #include "desktop.h"
35 #include "volume.h"
36 #include "fork.h"
37 #include "file.h"
38 #include "filedir.h"
39 #include "globals.h"
40 #include "unix.h"
41 #include "mangle.h"
42 #include "hash.h"
43
44 #ifdef HAVE_ACLS
45 extern void addir_inherit_acl(const struct vol *vol);
46 #endif
47
48 /*
49  * FIXMEs, loose ends after the dircache rewrite:
50  * o merge dircache_search_by_name and dir_add ??
51  * o case-insensitivity is gone from cname
52  */
53
54
55 /*******************************************************************************************
56  * Globals
57  ******************************************************************************************/
58
59 int         afp_errno;
60 /* As long as directory.c hasn't got its own init call, this get initialized in dircache_init */
61 struct dir rootParent  = {
62     NULL, NULL, NULL, NULL,          /* path, d_m_name, d_u_name, d_m_name_ucs2 */
63     NULL, NULL, 0, 0,                /* qidx_node, d_ofork, ctime, d_flags */
64     0, 0, 0, 0                       /* pdid, did, offcnt, d_vid */
65 };
66 struct dir  *curdir = &rootParent;
67 struct path Cur_Path = {
68     0,
69     "",  /* mac name */
70     ".", /* unix name */
71     0,   /* id */
72     NULL,/* struct dir * */
73     0,   /* stat is not set */
74     0,   /* errno */
75     {0} /* struct stat */
76 };
77
78
79 /*******************************************************************************************
80  * Locals
81  ******************************************************************************************/
82
83
84 /* -------------------------
85    appledouble mkdir afp error code.
86 */
87 static int netatalk_mkdir(const struct vol *vol, const char *name)
88 {
89     int ret;
90     struct stat st;
91
92     if (vol->v_flags & AFPVOL_UNIX_PRIV) {
93         if (lstat(".", &st) < 0)
94             return AFPERR_MISC;
95         int mode = (DIRBITS & (~S_ISGID & st.st_mode)) | (0777 & ~vol->v_umask);
96         LOG(log_maxdebug, logtype_afpd, "netatalk_mkdir(\"%s\") {parent mode: %04o, vol umask: %04o}",
97             name, st.st_mode, vol->v_umask);
98
99         ret = mkdir(name, mode);
100     } else {
101         ret = ad_mkdir(name, DIRBITS | 0777);
102     }
103
104     if (ret < 0) {
105         switch ( errno ) {
106         case ENOENT :
107             return( AFPERR_NOOBJ );
108         case EROFS :
109             return( AFPERR_VLOCK );
110         case EPERM:
111         case EACCES :
112             return( AFPERR_ACCESS );
113         case EEXIST :
114             return( AFPERR_EXIST );
115         case ENOSPC :
116         case EDQUOT :
117             return( AFPERR_DFULL );
118         default :
119             return( AFPERR_PARAM );
120         }
121     }
122     return AFP_OK;
123 }
124
125 /* ------------------- */
126 static int deletedir(int dirfd, char *dir)
127 {
128     char path[MAXPATHLEN + 1];
129     DIR *dp;
130     struct dirent   *de;
131     struct stat st;
132     size_t len;
133     int err = AFP_OK;
134     size_t remain;
135
136     if ((len = strlen(dir)) +2 > sizeof(path))
137         return AFPERR_PARAM;
138
139     /* already gone */
140     if ((dp = opendirat(dirfd, dir)) == NULL)
141         return AFP_OK;
142
143     strcpy(path, dir);
144     strcat(path, "/");
145     len++;
146     remain = sizeof(path) -len -1;
147     while ((de = readdir(dp)) && err == AFP_OK) {
148         /* skip this and previous directory */
149         if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, ".."))
150             continue;
151
152         if (strlen(de->d_name) > remain) {
153             err = AFPERR_PARAM;
154             break;
155         }
156         strcpy(path + len, de->d_name);
157         if (lstatat(dirfd, path, &st)) {
158             continue;
159         }
160         if (S_ISDIR(st.st_mode)) {
161             err = deletedir(dirfd, path);
162         } else {
163             err = netatalk_unlinkat(dirfd, path);
164         }
165     }
166     closedir(dp);
167
168     /* okay. the directory is empty. delete it. note: we already got rid
169        of .AppleDouble.  */
170     if (err == AFP_OK) {
171         err = netatalk_rmdir(dirfd, dir);
172     }
173     return err;
174 }
175
176 /* do a recursive copy. */
177 static int copydir(const struct vol *vol, int dirfd, char *src, char *dst)
178 {
179     char spath[MAXPATHLEN + 1], dpath[MAXPATHLEN + 1];
180     DIR *dp;
181     struct dirent   *de;
182     struct stat st;
183     struct utimbuf      ut;
184     size_t slen, dlen;
185     size_t srem, drem;
186     int err;
187
188     /* doesn't exist or the path is too long. */
189     if (((slen = strlen(src)) > sizeof(spath) - 2) ||
190         ((dlen = strlen(dst)) > sizeof(dpath) - 2) ||
191         ((dp = opendirat(dirfd, src)) == NULL))
192         return AFPERR_PARAM;
193
194     /* try to create the destination directory */
195     if (AFP_OK != (err = netatalk_mkdir(vol, dst)) ) {
196         closedir(dp);
197         return err;
198     }
199
200     /* set things up to copy */
201     strcpy(spath, src);
202     strcat(spath, "/");
203     slen++;
204     srem = sizeof(spath) - slen -1;
205
206     strcpy(dpath, dst);
207     strcat(dpath, "/");
208     dlen++;
209     drem = sizeof(dpath) - dlen -1;
210
211     err = AFP_OK;
212     while ((de = readdir(dp))) {
213         /* skip this and previous directory */
214         if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, ".."))
215             continue;
216
217         if (strlen(de->d_name) > srem) {
218             err = AFPERR_PARAM;
219             break;
220         }
221         strcpy(spath + slen, de->d_name);
222
223         if (lstatat(dirfd, spath, &st) == 0) {
224             if (strlen(de->d_name) > drem) {
225                 err = AFPERR_PARAM;
226                 break;
227             }
228             strcpy(dpath + dlen, de->d_name);
229
230             if (S_ISDIR(st.st_mode)) {
231                 if (AFP_OK != (err = copydir(vol, dirfd, spath, dpath)))
232                     goto copydir_done;
233             } else if (AFP_OK != (err = copyfile(vol, vol, dirfd, spath, dpath, NULL, NULL))) {
234                 goto copydir_done;
235
236             } else {
237                 /* keep the same time stamp. */
238                 ut.actime = ut.modtime = st.st_mtime;
239                 utime(dpath, &ut);
240             }
241         }
242     }
243
244     /* keep the same time stamp. */
245     if (lstatat(dirfd, src, &st) == 0) {
246         ut.actime = ut.modtime = st.st_mtime;
247         utime(dst, &ut);
248     }
249
250 copydir_done:
251     closedir(dp);
252     return err;
253 }
254
255 /* ---------------------
256  * is our cached offspring count valid?
257  */
258 static int diroffcnt(struct dir *dir, struct stat *st)
259 {
260     return st->st_ctime == dir->ctime;
261 }
262
263 /* --------------------- */
264 static int invisible_dots(const struct vol *vol, const char *name)
265 {
266     return vol_inv_dots(vol) && *name  == '.' && strcmp(name, ".") && strcmp(name, "..");
267 }
268
269 /* ------------------ */
270 static int set_dir_errors(struct path *path, const char *where, int err)
271 {
272     switch ( err ) {
273     case EPERM :
274     case EACCES :
275         return AFPERR_ACCESS;
276     case EROFS :
277         return AFPERR_VLOCK;
278     }
279     LOG(log_error, logtype_afpd, "setdirparam(%s): %s: %s", fullpathname(path->u_name), where, strerror(err) );
280     return AFPERR_PARAM;
281 }
282
283 /*!
284  * @brief Convert name in client encoding to server encoding
285  *
286  * Convert ret->m_name to ret->u_name from client encoding to server encoding.
287  * This only gets called from cname().
288  *
289  * @returns 0 on success, -1 on error
290  *
291  * @note If the passed ret->m_name is mangled, we'll demangle it
292  */
293 static int cname_mtouname(const struct vol *vol, const struct dir *dir, struct path *ret, int toUTF8)
294 {
295     static char temp[ MAXPATHLEN + 1];
296     char *t;
297     cnid_t fileid;
298
299     if (afp_version >= 30) {
300         if (toUTF8) {
301             if (dir->d_did == DIRDID_ROOT_PARENT) {
302                 /*
303                  * With uft8 volume name is utf8-mac, but requested path may be a mangled longname. See #2611981.
304                  * So we compare it with the longname from the current volume and if they match
305                  * we overwrite the requested path with the utf8 volume name so that the following
306                  * strcmp can match.
307                  */
308                 ucs2_to_charset(vol->v_maccharset, vol->v_macname, temp, AFPVOL_MACNAMELEN + 1);
309                 if (strcasecmp(ret->m_name, temp) == 0)
310                     ucs2_to_charset(CH_UTF8_MAC, vol->v_u8mname, ret->m_name, AFPVOL_U8MNAMELEN);
311             } else {
312                 /* toUTF8 */
313                 if (mtoUTF8(vol, ret->m_name, strlen(ret->m_name), temp, MAXPATHLEN) == (size_t)-1) {
314                     afp_errno = AFPERR_PARAM;
315                     return -1;
316                 }
317                 strcpy(ret->m_name, temp);
318             }
319         }
320
321         /* check for OS X mangled filename :( */
322         t = demangle_osx(vol, ret->m_name, dir->d_did, &fileid);
323         LOG(log_maxdebug, logtype_afpd, "cname_mtouname('%s',did:%u) {demangled:'%s', fileid:%u}",
324             ret->m_name, ntohl(dir->d_did), t, ntohl(fileid));
325
326         if (t != ret->m_name) {
327             ret->u_name = t;
328             /* duplicate work but we can't reuse all convert_char we did in demangle_osx
329              * flags weren't the same
330              */
331             if ( (t = utompath(vol, ret->u_name, fileid, utf8_encoding())) ) {
332                 /* at last got our view of mac name */
333                 strcpy(ret->m_name, t);
334             }
335         }
336     } /* afp_version >= 30 */
337
338     /* If we haven't got it by now, get it */
339     if (ret->u_name == NULL) {
340         if ((ret->u_name = mtoupath(vol, ret->m_name, dir->d_did, utf8_encoding())) == NULL) {
341             afp_errno = AFPERR_PARAM;
342             return -1;
343         }
344     }
345
346     return 0;
347 }
348
349 /*!
350  * @brief Build struct path from struct dir
351  *
352  * The final movecwd in cname failed, possibly with EPERM or ENOENT. We:
353  * 1. move cwd into parent dir (we're often already there, but not always)
354  * 2. set struct path to the dirname
355  * 3. in case of
356  *    AFPERR_ACCESS: the dir is there, we just cant chdir into it
357  *    AFPERR_NOOBJ: the dir was there when we stated it in cname, so we have a race
358  *                  4. indicate there's no dir for this path
359  *                  5. remove the dir
360  */
361 static struct path *path_from_dir(struct vol *vol, struct dir *dir, struct path *ret)
362 {
363     if (dir->d_did == DIRDID_ROOT_PARENT || dir->d_did == DIRDID_ROOT)
364         return NULL;
365
366     switch (afp_errno) {
367
368     case AFPERR_ACCESS:
369         if (movecwd( vol, dirlookup(vol, dir->d_pdid)) < 0 ) /* 1 */
370             return NULL;
371
372         memcpy(ret->m_name, cfrombstring(dir->d_m_name), blength(dir->d_m_name) + 1); /* 3 */
373         if (dir->d_m_name == dir->d_u_name) {
374             ret->u_name = ret->m_name;
375         } else {
376             ret->u_name =  ret->m_name + blength(dir->d_m_name) + 1;
377             memcpy(ret->u_name, cfrombstring(dir->d_u_name), blength(dir->d_u_name) + 1);
378         }
379
380         ret->d_dir = dir;
381
382         LOG(log_debug, logtype_afpd, "cname('%s') {path-from-dir: AFPERR_ACCESS. curdir:'%s', path:'%s'}",
383             cfrombstring(dir->d_fullpath),
384             cfrombstring(curdir->d_fullpath),
385             ret->u_name);
386
387         return ret;
388
389     case AFPERR_NOOBJ:
390         if (movecwd(vol, dirlookup(vol, dir->d_pdid)) < 0 ) /* 1 */
391             return NULL;
392
393         memcpy(ret->m_name, cfrombstring(dir->d_m_name), blength(dir->d_m_name) + 1);
394         if (dir->d_m_name == dir->d_u_name) {
395             ret->u_name = ret->m_name;
396         } else {
397             ret->u_name =  ret->m_name + blength(dir->d_m_name) + 1;
398             memcpy(ret->u_name, cfrombstring(dir->d_u_name), blength(dir->d_u_name) + 1);
399         }
400
401         ret->d_dir = NULL;      /* 4 */
402         dir_remove(vol, dir);   /* 5 */
403         return ret;
404
405     default:
406         return NULL;
407     }
408
409     /* DEADC0DE: never get here */
410     return NULL;
411 }
412
413
414 /*********************************************************************************************
415  * Interface
416  ********************************************************************************************/
417
418 int get_afp_errno(const int param)
419 {
420     if (afp_errno != AFPERR_DID1)
421         return afp_errno;
422     return param;
423 }
424
425 /*!
426  * @brief Resolve a DID
427  *
428  * Resolve a DID, allocate a struct dir for it
429  * 1. Check for special CNIDs 0 (invalid), 1 and 2.
430  * 2a. Check if the DID is in the cache.
431  * 2b. Check if it's really a dir (d_fullpath != NULL) because we cache files too.
432  * 3. If it's not in the cache resolve it via the database.
433  * 4. Build complete server-side path to the dir.
434  * 5. Check if it exists and is a directory.
435  * 6. Create the struct dir and populate it.
436  * 7. Add it to the cache.
437  *
438  * @param vol   (r) pointer to struct vol
439  * @param did   (r) DID to resolve
440  *
441  * @returns pointer to struct dir
442  *
443  * @note FIXME: OSX calls it with bogus id, ie file ID not folder ID,
444  *       and we are really bad in this case.
445  */
446 struct dir *dirlookup(const struct vol *vol, cnid_t did)
447 {
448     static char  buffer[12 + MAXPATHLEN + 1];
449     struct stat  st;
450     struct dir   *ret = NULL, *pdir;
451     bstring      fullpath = NULL;
452     char         *upath = NULL, *mpath;
453     cnid_t       cnid, pdid;
454     size_t       maxpath;
455     int          buflen = 12 + MAXPATHLEN + 1;
456     int          utf8;
457     int          err = 0;
458
459     LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {start}", ntohl(did));
460
461     /* check for did 0, 1 and 2 */
462     if (did == 0 || vol == NULL) { /* 1 */
463         afp_errno = AFPERR_PARAM;
464         return NULL;
465     } else if (did == DIRDID_ROOT_PARENT) {
466         rootParent.d_vid = vol->v_vid;
467         return (&rootParent);
468     } else if (did == DIRDID_ROOT) {
469         return vol->v_root;
470     }
471
472     /* Search the cache */
473     if ((ret = dircache_search_by_did(vol, did)) != NULL) { /* 2a */
474         if (ret->d_fullpath == NULL) {                      /* 2b */
475             afp_errno = AFPERR_BADTYPE;
476             return NULL;
477         }
478         if (lstat(cfrombstring(ret->d_fullpath), &st) != 0) {
479             LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {lstat: %s}", ntohl(did), strerror(errno));
480             switch (errno) {
481             case ENOENT:
482             case ENOTDIR:
483                 /* It's not there anymore, so remove it */
484                 LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {calling dir_remove()}", ntohl(did));
485                 dir_remove(vol, ret);
486                 afp_errno = AFPERR_NOOBJ;
487                 return NULL;
488             default:
489                 return ret;
490             }
491             /* DEADC0DE */
492             return NULL;
493         }
494         return ret;
495     }
496
497     utf8 = utf8_encoding();
498     maxpath = (utf8) ? MAXPATHLEN - 7 : 255;
499
500     /* Get it from the database */
501     cnid = did;
502     if ( (upath = cnid_resolve(vol->v_cdb, &cnid, buffer, buflen)) == NULL 
503          || (upath = strdup(upath)) == NULL) { /* 3 */
504         afp_errno = AFPERR_NOOBJ;
505         err = 1;
506         goto exit;
507     }
508     pdid = cnid;
509
510     /*
511      * Recurse up the tree, terminates in dirlookup when either
512      * - DIRDID_ROOT is hit
513      * - a cached entry is found
514      */
515     if ((pdir = dirlookup(vol, pdid)) == NULL) {
516         err = 1;
517         goto exit;
518     }
519
520     /* build the fullpath */
521     if ((fullpath = bstrcpy(pdir->d_fullpath)) == NULL
522         || bconchar(fullpath, '/') != BSTR_OK
523         || bcatcstr(fullpath, upath) != BSTR_OK) {
524         err = 1;
525         goto exit;
526     }
527
528     /* stat it and check if it's a dir */
529     LOG(log_debug, logtype_afpd, "dirlookup: {stating %s}", cfrombstring(fullpath));
530
531     if (stat(cfrombstring(fullpath), &st) != 0) { /* 5a */
532         switch (errno) {
533         case ENOENT:
534             afp_errno = AFPERR_NOOBJ;
535             err = 1;
536             goto exit;
537         case EPERM:
538             afp_errno = AFPERR_ACCESS;
539             err = 1;
540             goto exit;
541         default:
542             afp_errno = AFPERR_MISC;
543             err = 1;
544             goto exit;
545         }
546     } else {
547         if ( ! S_ISDIR(st.st_mode)) { /* 5b */
548             afp_errno = AFPERR_BADTYPE;
549             err = 1;
550             goto exit;
551         }
552     }
553
554     /* Get macname from unix name */
555     if ( (mpath = utompath(vol, upath, did, utf8)) == NULL ) {
556         afp_errno = AFPERR_NOOBJ;
557         err = 1;
558         goto exit;
559     }
560
561     /* Create struct dir */
562     if ((ret = dir_new(mpath, upath, vol, pdid, did, fullpath)) == NULL) { /* 6 */
563         LOG(log_error, logtype_afpd, "dirlookup(did: %u) {%s, %s}: %s", ntohl(did), mpath, upath, strerror(errno));
564         err = 1;
565         goto exit;
566     }
567
568     /* Add it to the cache only if it's a dir */
569     if (dircache_add(ret) != 0) { /* 7 */
570         err = 1;
571         goto exit;
572     }
573
574     LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {end: did:%u, path:'%s'}",
575         ntohl(did), ntohl(pdid), cfrombstring(ret->d_fullpath));
576
577 exit:
578     if (err) {
579         LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {exit_error: %s}",
580             ntohl(did), AfpErr2name(afp_errno));
581         free(upath);
582         if (fullpath)
583             bdestroy(fullpath);
584         if (ret) {
585             dir_free(ret);
586             ret = NULL;
587         }
588     }
589     return ret;
590 }
591
592 #define ENUMVETO "./../Network Trash Folder/TheVolumeSettingsFolder/TheFindByContentFolder/:2eDS_Store/Contents/Desktop Folder/Trash/Benutzer/"
593
594 int caseenumerate(const struct vol *vol, struct path *path, struct dir *dir)
595 {
596     DIR               *dp;
597     struct dirent     *de;
598     int               ret;
599     static u_int32_t  did = 0;
600     static char       cname[MAXPATHLEN];
601     static char       lname[MAXPATHLEN];
602     ucs2_t        u2_path[MAXPATHLEN];
603     ucs2_t        u2_dename[MAXPATHLEN];
604     char          *tmp, *savepath;
605
606     if (!(vol->v_flags & AFPVOL_CASEINSEN))
607         return -1;
608
609     if (veto_file(ENUMVETO, path->u_name))
610         return -1;
611
612     savepath = path->u_name;
613
614     /* very simple cache */
615     if ( dir->d_did == did && strcmp(lname, path->u_name) == 0) {
616         path->u_name = cname;
617         path->d_dir = NULL;
618         if (of_stat( path ) == 0 ) {
619             return 0;
620         }
621         /* something changed, we cannot stat ... */
622         did = 0;
623     }
624
625     if (NULL == ( dp = opendir( "." )) ) {
626         LOG(log_debug, logtype_afpd, "caseenumerate: opendir failed: %s", dir->d_u_name);
627         return -1;
628     }
629
630
631     /* LOG(log_debug, logtype_afpd, "caseenumerate: for %s", path->u_name); */
632     if ((size_t) -1 == convert_string(vol->v_volcharset, CH_UCS2, path->u_name, -1, u2_path, sizeof(u2_path)) )
633         LOG(log_debug, logtype_afpd, "caseenumerate: conversion failed for %s", path->u_name);
634
635     /*LOG(log_debug, logtype_afpd, "caseenumerate: dir: %s, path: %s", dir->d_u_name, path->u_name); */
636     ret = -1;
637     for ( de = readdir( dp ); de != NULL; de = readdir( dp )) {
638         if (NULL == check_dirent(vol, de->d_name))
639             continue;
640
641         if ((size_t) -1 == convert_string(vol->v_volcharset, CH_UCS2, de->d_name, -1, u2_dename, sizeof(u2_dename)) )
642             continue;
643
644         if (strcasecmp_w( u2_path, u2_dename) == 0) {
645             tmp = path->u_name;
646             strlcpy(cname, de->d_name, sizeof(cname));
647             path->u_name = cname;
648             path->d_dir = NULL;
649             if (of_stat( path ) == 0 ) {
650                 LOG(log_debug, logtype_afpd, "caseenumerate: using dir: %s, path: %s", de->d_name, path->u_name);
651                 strlcpy(lname, tmp, sizeof(lname));
652                 did = dir->d_did;
653                 ret = 0;
654                 break;
655             }
656             else
657                 path->u_name = tmp;
658         }
659
660     }
661     closedir(dp);
662
663     if (ret) {
664         /* invalidate cache */
665         cname[0] = 0;
666         did = 0;
667         path->u_name = savepath;
668     }
669     /* LOG(log_debug, logtype_afpd, "caseenumerate: path on ret: %s", path->u_name); */
670     return ret;
671 }
672
673
674 /*!
675  * @brief Construct struct dir
676  *
677  * Construct struct dir from parameters.
678  *
679  * @param m_name   (r) directory name in UTF8-dec
680  * @param u_name   (r) directory name in server side encoding
681  * @param vol      (r) pointer to struct vol
682  * @param pdid     (r) Parent CNID
683  * @param did      (r) CNID
684  * @param fullpath (r) Full unix path to dir or NULL for files
685  *
686  * @returns pointer to new struct dir or NULL on error
687  *
688  * @note Most of the time mac name and unix name are the same.
689  */
690 struct dir *dir_new(const char *m_name,
691                     const char *u_name,
692                     const struct vol *vol,
693                     cnid_t pdid,
694                     cnid_t did,
695                     bstring path)
696 {
697     struct dir *dir;
698
699     dir = (struct dir *) calloc(1, sizeof( struct dir ));
700     if (!dir)
701         return NULL;
702
703     if ((dir->d_m_name = bfromcstr(m_name)) == NULL) {
704         free(dir);
705         return NULL;
706     }
707
708     if (convert_string_allocate( (utf8_encoding()) ? CH_UTF8_MAC : vol->v_maccharset,
709                                  CH_UCS2,
710                                  m_name,
711                                  -1, (char **)&dir->d_m_name_ucs2) == (size_t)-1 ) {
712         LOG(log_error, logtype_afpd, "dir_new(did: %u) {%s, %s}: couldn't set UCS2 name", ntohl(did), m_name, u_name);
713         dir->d_m_name_ucs2 = NULL;
714     }
715
716     if (m_name == u_name || !strcmp(m_name, u_name)) {
717         dir->d_u_name = dir->d_m_name;
718     }
719     else if ((dir->d_u_name = bfromcstr(u_name)) == NULL) {
720         bdestroy(dir->d_m_name);
721         free(dir);
722         return NULL;
723     }
724
725     dir->d_did = did;
726     dir->d_pdid = pdid;
727     dir->d_vid = vol->v_vid;
728     dir->d_fullpath = path;
729     return dir;
730 }
731
732 /*!
733  * @brief Free a struct dir and all its members
734  *
735  * @param (rw) pointer to struct dir
736  */
737 void dir_free(struct dir *dir)
738 {
739     if (dir->d_u_name != dir->d_m_name) {
740         bdestroy(dir->d_u_name);
741     }
742     if (dir->d_m_name_ucs2)
743         free(dir->d_m_name_ucs2);
744     bdestroy(dir->d_m_name);
745     bdestroy(dir->d_fullpath);
746     free(dir);
747 }
748
749 /*!
750  * @brief Create struct dir from struct path
751  *
752  * Create a new struct dir from struct path. Then add it to the cache.
753  * The caller must have assured that the dir is not already in the cache,
754  * cf theAFP_ASSERTion.
755  * 1. Open adouble file, get CNID from it.
756  * 2. Search the database, hinting with the CNID from (1).
757  * 3. Build fullpath and create struct dir.
758  * 4. Add it to the cache.
759  *
760  * @param vol   (r) pointer to struct vol, possibly modified in callee
761  * @param dir   (r) pointer to parrent directory
762  * @param path  (rw) pointer to struct path with valid path->u_name
763  * @param len   (r) strlen of path->u_name
764  *
765  * @returns Pointer to new struct dir or NULL on error.
766  *
767  * @note Function also assigns path->m_name from path->u_name.
768  */
769 struct dir *dir_add(struct vol *vol, const struct dir *dir, struct path *path, int len)
770 {
771     int err = 0;
772     struct dir  *cdir = NULL;
773     cnid_t      id;
774     struct adouble  ad;
775     struct adouble *adp = NULL;
776     bstring fullpath;
777
778     AFP_ASSERT(vol);
779     AFP_ASSERT(dir);
780     AFP_ASSERT(path);
781     AFP_ASSERT(len > 0);
782
783     if ((cdir = dircache_search_by_name(vol, dir, path->u_name, strlen(path->u_name))) != NULL) {
784         /* there's a stray entry in the dircache */
785         LOG(log_debug, logtype_afpd, "dir_add(did:%u,'%s/%s'): {stray cache entry: did:%u,'%s', removing}",
786             ntohl(dir->d_did), cfrombstring(dir->d_fullpath), path->u_name,
787             ntohl(cdir->d_did), cfrombstring(dir->d_fullpath));
788         if (dir_remove(vol, cdir) != 0) {
789             dircache_dump();
790             AFP_PANIC("dir_add");
791         }
792     }
793
794     /* get_id needs adp for reading CNID from adouble file */
795     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
796     if ((ad_open_metadata(path->u_name, ADFLAGS_DIR, 0, &ad)) == 0) /* 1 */
797         adp = &ad;
798
799     /* Get CNID */
800     if ((id = get_id(vol, adp, &path->st, dir->d_did, path->u_name, len)) == 0) { /* 2 */
801         err = 1;
802         goto exit;
803     }
804
805     if (adp)
806         ad_close_metadata(adp);
807
808     /* Get macname from unixname */
809     if (path->m_name == NULL) {
810         if ((path->m_name = utompath(vol, path->u_name, id, utf8_encoding())) == NULL) {
811             err = 2;
812             goto exit;
813         }
814     }
815
816     /* Build fullpath */
817     if ( ((fullpath = bstrcpy(dir->d_fullpath)) == NULL) /* 3 */
818          || (bconchar(fullpath, '/') != BSTR_OK)
819          || (bcatcstr(fullpath, path->u_name)) != BSTR_OK) {
820         LOG(log_error, logtype_afpd, "dir_add: fullpath: %s", strerror(errno) );
821         err = 3;
822         goto exit;
823     }
824
825     /* Allocate and initialize struct dir */
826     if ((cdir = dir_new( path->m_name, path->u_name, vol, dir->d_did, id, fullpath)) == NULL) { /* 3 */
827         err = 4;
828         goto exit;
829     }
830
831     if ((dircache_add(cdir)) != 0) { /* 4 */
832         LOG(log_error, logtype_afpd, "dir_add: fatal dircache error: %s", cfrombstring(fullpath));
833         exit(EXITERR_SYS);
834     }
835
836 exit:
837     if (err != 0) {
838         LOG(log_debug, logtype_afpd, "dir_add('%s/%s'): error: %u",
839             cfrombstring(dir->d_u_name), path->u_name, err);
840
841         if (adp)
842             ad_close_metadata(adp);
843         if (!cdir && fullpath)
844             bdestroy(fullpath);
845         if (cdir)
846             dir_free(cdir);
847         cdir = NULL;
848     } else {
849         /* no error */
850         LOG(log_debug, logtype_afpd, "dir_add(did:%u,'%s/%s'): {cached: %u,'%s'}",
851             ntohl(dir->d_did), cfrombstring(dir->d_fullpath), path->u_name,
852             ntohl(cdir->d_did), cfrombstring(cdir->d_fullpath));
853     }
854
855     return(cdir);
856 }
857
858 /*!
859  * @brief Remove a dir from a cache and free it and any ressources with it
860  *
861  * 1. Check if the dir is locked or has opened forks
862  * 2. If it's a request to remove curdir, just chdir to volume root
863  * 3. Remove it from the cache
864  * 4. Remove the dir plus any allocated resources it references
865  *
866  * @param (r) pointer to struct vol
867  * @param (rw) pointer to struct dir
868  */
869 int dir_remove(const struct vol *vol, struct dir *dir)
870 {
871     AFP_ASSERT(vol);
872     AFP_ASSERT(dir);
873
874     if (dir->d_did == DIRDID_ROOT_PARENT || dir->d_did == DIRDID_ROOT)
875         return 0;
876
877     if (dir->d_flags & DIRF_CACHELOCK || dir->d_ofork) { /* 1 */
878         LOG(log_warning, logtype_afpd, "dir_remove(did:%u,'%s'): dir is locked or has opened forks",
879             ntohl(dir->d_did), cfrombstring(dir->d_fullpath));
880         return 0;
881     }
882
883     if (curdir == dir) {        /* 2 */
884         if (movecwd(vol, vol->v_root) < 0) {
885             LOG(log_error, logtype_afpd, "dir_remove: can't chdir to : %s", vol->v_root);
886         }
887     }
888
889     LOG(log_debug, logtype_afpd, "dir_remove(did:%u,'%s'): {removing}",
890         ntohl(dir->d_did), cfrombstring(dir->d_fullpath));
891
892     dircache_remove(vol, dir, DIRCACHE | DIDNAME_INDEX | QUEUE_INDEX); /* 3 */
893     dir_free(dir);              /* 4 */
894
895     return 0;
896 }
897
898 /*!
899  * @brief Modify a struct dir, adjust cache
900  *
901  * Any value that is 0 or NULL is not changed. If new_uname is NULL it is set to new_mname.
902  * If given new_uname == new_mname, new_uname will point to new_mname.
903  *
904  * @param vol       (r) pointer to struct vol
905  * @param dir       (rw) pointer to struct dir
906  * @param pdid      (r) new parent DID
907  * @param did       (r) new DID
908  * @param new_mname (r) new mac-name
909  * @param new_uname (r) new unix-name
910  * @param pdir_fullpath (r) new fullpath of parent dir
911  */
912 int dir_modify(const struct vol *vol,
913                struct dir *dir,
914                cnid_t pdid,
915                cnid_t did,
916                const char *new_mname,
917                const char *new_uname,
918                bstring pdir_fullpath)
919 {
920     int ret = 0;
921
922     /* Remove it from the cache */
923     dircache_remove(vol, dir, DIRCACHE | DIDNAME_INDEX | QUEUE_INDEX);
924
925     if (pdid)
926         dir->d_pdid = pdid;
927     if (did)
928         dir->d_did = did;
929
930     if (new_mname) {
931         /* free uname if it's not the same as mname */
932         if (dir->d_m_name != dir->d_u_name)
933             bdestroy(dir->d_u_name);
934
935         if (new_uname == NULL)
936             new_uname = new_mname;
937
938         /* assign new name */
939         if ((bassigncstr(dir->d_m_name, new_mname)) != BSTR_OK) {
940             LOG(log_error, logtype_afpd, "dir_modify: bassigncstr: %s", strerror(errno) );
941             return -1;
942         }
943
944         if (new_mname == new_uname || (strcmp(new_mname, new_uname) == 0)) {
945             dir->d_u_name = dir->d_m_name;
946         } else {
947             if ((dir->d_u_name = bfromcstr(new_uname)) == NULL) {
948                 LOG(log_error, logtype_afpd, "dir_modify: bassigncstr: %s", strerror(errno) );
949                 return -1;
950             }
951         }
952     }
953
954     if (pdir_fullpath) {
955         if (bassign(dir->d_fullpath, pdir_fullpath) != BSTR_OK)
956             return -1;
957         if (bcatcstr(dir->d_fullpath, "/") != BSTR_OK)
958             return -1;
959         if (bcatcstr(dir->d_fullpath, new_uname) != BSTR_OK)
960             return -1;
961     }
962
963     if (dir->d_m_name_ucs2)
964         free(dir->d_m_name_ucs2);
965     if ((size_t)-1 == convert_string_allocate((utf8_encoding())?CH_UTF8_MAC:vol->v_maccharset, CH_UCS2, dir->d_m_name, -1, (char**)&dir->d_m_name_ucs2))
966         dir->d_m_name_ucs2 = NULL;
967
968     /* Re-add it to the cache */
969     if ((dircache_add(dir)) != 0) {
970         dircache_dump();
971         AFP_PANIC("dir_modify");
972     }
973
974     return ret;
975 }
976
977 /*!
978  * @brief Resolve a catalog node name path
979  *
980  * 1. Evaluate path type
981  * 2. Move to start dir, if we cant, it might eg because of EACCES, build
982  *    path from dirname, so eg getdirparams has sth it can chew on. curdir
983  *    is dir parent then. All this is done in path_from_dir().
984  * 3. Parse next cnode name in path, cases:
985  * 4.   single "\0" -> do nothing
986  * 5.   two or more consecutive "\0" -> chdir("..") one or more times
987  * 6.   cnode name -> copy it to path.m_name
988  * 7. Get unix name from mac name
989  * 8. Special handling of request with did 1
990  * 9. stat the cnode name
991  * 10. If it's not there, it's probably an afp_createfile|dir,
992  *     return with curdir = dir parent, struct path = dirname
993  * 11. If it's there and it's a file, it must should be the last element of the requested
994  *     path. Return with curdir = cnode name parent dir, struct path = filename
995  * 12. Treat symlinks like files, dont follow them
996  * 13. If it's a dir:
997  * 14. Search the dircache for it
998  * 15. If it's not in the cache, create a struct dir for it and add it to the cache
999  * 16. chdir into the dir and
1000  * 17. set m_name to the mac equivalent of "."
1001  * 18. goto 3
1002  */
1003 struct path *cname(struct vol *vol, struct dir *dir, char **cpath)
1004 {
1005     static char        path[ MAXPATHLEN + 1];
1006     static struct path ret;
1007
1008     struct dir  *cdir;
1009     char        *data, *p;
1010     int         len;
1011     u_int32_t   hint;
1012     u_int16_t   len16;
1013     int         size = 0;
1014     int         toUTF8 = 0;
1015
1016     LOG(log_maxdebug, logtype_afpd, "came('%s'): {start}", cfrombstring(dir->d_fullpath));
1017
1018     data = *cpath;
1019     afp_errno = AFPERR_NOOBJ;
1020     memset(&ret, 0, sizeof(ret));
1021
1022     switch (ret.m_type = *data) { /* 1 */
1023     case 2:
1024         data++;
1025         len = (unsigned char) *data++;
1026         size = 2;
1027         if (afp_version >= 30) {
1028             ret.m_type = 3;
1029             toUTF8 = 1;
1030         }
1031         break;
1032     case 3:
1033         if (afp_version >= 30) {
1034             data++;
1035             memcpy(&hint, data, sizeof(hint));
1036             hint = ntohl(hint);
1037             data += sizeof(hint);
1038
1039             memcpy(&len16, data, sizeof(len16));
1040             len = ntohs(len16);
1041             data += 2;
1042             size = 7;
1043             break;
1044         }
1045         /* else it's an error */
1046     default:
1047         afp_errno = AFPERR_PARAM;
1048         return( NULL );
1049     }
1050     *cpath += len + size;
1051
1052     path[0] = 0;
1053     ret.m_name = path;
1054
1055     if (movecwd(vol, dir) < 0 ) {
1056         LOG(log_debug, logtype_afpd, "cname(did:%u): failed to chdir to '%s'",
1057             ntohl(dir->d_did), cfrombstring(dir->d_fullpath));
1058         if (len == 0)
1059             return path_from_dir(vol, dir, &ret);
1060         else
1061             return NULL;
1062     }
1063
1064     while (len) {         /* 3 */
1065         if (*data == 0) { /* 4 or 5 */
1066             data++;
1067             len--;
1068             while (len > 0 && *data == 0) { /* 5 */
1069                 /* chdir to parrent dir */
1070                 if ((dir = dirlookup(vol, dir->d_pdid)) == NULL)
1071                     return NULL;
1072                 if (movecwd( vol, dir ) < 0 ) {
1073                     dir_remove(vol, dir);
1074                     return NULL;
1075                 }
1076                 data++;
1077                 len--;
1078             }
1079             continue;
1080         }
1081
1082         /* 6*/
1083         for ( p = path; *data != 0 && len > 0; len-- ) {
1084             *p++ = *data++;
1085             if (p > &path[ MAXPATHLEN]) {
1086                 afp_errno = AFPERR_PARAM;
1087                 return NULL;
1088             }
1089         }
1090         *p = 0;            /* Terminate string */
1091         ret.u_name = NULL;
1092
1093         if (cname_mtouname(vol, dir, &ret, toUTF8) != 0) { /* 7 */
1094             LOG(log_error, logtype_afpd, "cname('%s'): error from cname_mtouname", path);
1095             return NULL;
1096         }
1097
1098         LOG(log_maxdebug, logtype_afpd, "came('%s'): {node: '%s}", cfrombstring(dir->d_fullpath), ret.u_name);
1099
1100         /* Prevent access to our special folders like .AppleDouble */
1101         if (check_name(vol, ret.u_name)) {
1102             /* the name is illegal */
1103             LOG(log_info, logtype_afpd, "cname: illegal path: '%s'", ret.u_name);
1104             afp_errno = AFPERR_PARAM;
1105             return NULL;
1106         }
1107
1108         if (dir->d_did == DIRDID_ROOT_PARENT) { /* 8 */
1109             /*
1110              * Special case: CNID 1
1111              * root parent (did 1) has one child: the volume. Requests for did=1 with
1112              * some <name> must check against the volume name.
1113              */
1114             if ((strcmp(cfrombstring(vol->v_root->d_m_name), ret.m_name)) == 0)
1115                 cdir = vol->v_root;
1116             else
1117                 return NULL;
1118         } else {
1119             /*
1120              * CNID != 1, eg. most of the times we take this way.
1121              * Now check if current path-part is a file or dir:
1122              * o if it's dir we have to step into it
1123              * o if it's a file we expect it to be the last part of the requested path
1124              *   and thus call continue which should terminate the while loop because
1125              *   len = 0. Ok?
1126              */
1127             if (of_stat(&ret) != 0) { /* 9 */
1128                 /*
1129                  * ret.u_name doesn't exist, might be afp_createfile|dir
1130                  * that means it should have been the last part
1131                  */
1132                 if (len > 0) {
1133                     /* it wasn't the last part, so we have a bogus path request */
1134                     afp_errno = AFPERR_NOOBJ;
1135                     return NULL;
1136                 }
1137                 /*
1138                  * this will terminate clean in while (1) because len == 0,
1139                  * probably afp_createfile|dir
1140                  */
1141                 LOG(log_maxdebug, logtype_afpd, "came('%s'): {leave-cnode ENOENT (possile create request): '%s'}", cfrombstring(dir->d_fullpath), ret.u_name);
1142                 continue; /* 10 */
1143             }
1144
1145             switch (ret.st.st_mode & S_IFMT) {
1146             case S_IFREG: /* 11 */
1147                 LOG(log_debug, logtype_afpd, "came('%s'): {file: '%s'}", cfrombstring(dir->d_fullpath), ret.u_name);
1148                 if (len > 0) {
1149                     /* it wasn't the last part, so we have a bogus path request */
1150                     afp_errno = AFPERR_PARAM;
1151                     return NULL;
1152                 }
1153                 continue; /* continues while loop */
1154             case S_IFLNK: /* 12 */
1155                 LOG(log_debug, logtype_afpd, "came('%s'): {link: '%s'}", cfrombstring(dir->d_fullpath), ret.u_name);
1156                 if (len > 0) {
1157                     LOG(log_warning, logtype_afpd, "came('%s'): {symlinked dir: '%s'}", cfrombstring(dir->d_fullpath), ret.u_name);
1158                     afp_errno = AFPERR_PARAM;
1159                     return NULL;
1160                 }
1161                 continue; /* continues while loop */
1162             case S_IFDIR: /* 13 */
1163                 break;
1164             default:
1165                 LOG(log_info, logtype_afpd, "cname: special file: '%s'", ret.u_name);
1166                 afp_errno = AFPERR_NODIR;
1167                 return NULL;
1168             }
1169
1170             /* Search the cache */
1171             int unamelen = strlen(ret.u_name);
1172             cdir = dircache_search_by_name(vol, dir, ret.u_name, unamelen); /* 14 */
1173             if (cdir == NULL) {
1174                 /* Not in cache, create one */
1175                 if ((cdir = dir_add(vol, dir, &ret, unamelen)) == NULL) { /* 15 */
1176                     LOG(log_error, logtype_afpd, "cname(did:%u, name:'%s', cwd:'%s'): failed to add dir",
1177                         ntohl(dir->d_did), ret.u_name, getcwdpath());
1178                     return NULL;
1179                 }
1180             }
1181         } /* if/else cnid==1 */
1182
1183         /* Now chdir to the evaluated dir */
1184         if (movecwd( vol, cdir ) < 0 ) { /* 16 */
1185             LOG(log_debug, logtype_afpd, "cname(cwd:'%s'): failed to chdir to new subdir '%s': %s",
1186                 cfrombstring(curdir->d_fullpath), cfrombstring(cdir->d_fullpath), strerror(errno));
1187             if (len == 0)
1188                 return path_from_dir(vol, cdir, &ret);
1189             else
1190                 return NULL;
1191         }
1192         dir = cdir;
1193         ret.m_name[0] = 0;      /* 17, so we later know last token was a dir */
1194     } /* while (len) */
1195
1196     if (curdir->d_did == DIRDID_ROOT_PARENT) {
1197         afp_errno = AFPERR_DID1;
1198         return NULL;
1199     }
1200
1201     if (ret.m_name[0] == 0) {
1202         /* Last part was a dir */
1203         ret.u_name = mtoupath(vol, ret.m_name, 0, 1); /* Force "." into a useable static buffer */
1204         ret.d_dir = dir;
1205     }
1206
1207     LOG(log_debug, logtype_afpd, "came('%s') {end: curdir:'%s', path:'%s'}",
1208         cfrombstring(dir->d_fullpath),
1209         cfrombstring(curdir->d_fullpath),
1210         ret.u_name);
1211
1212     return &ret;
1213 }
1214
1215 /*
1216  * @brief chdir() to dir
1217  *
1218  * @param vol   (r) pointer to struct vol
1219  * @param dir   (r) pointer to struct dir
1220  *
1221  * @returns 0 on success, -1 on error with afp_errno set appropiately
1222  */
1223 int movecwd(const struct vol *vol, struct dir *dir)
1224 {
1225     int ret;
1226
1227     AFP_ASSERT(vol);
1228     AFP_ASSERT(dir);
1229
1230     LOG(log_maxdebug, logtype_afpd, "movecwd(curdir:'%s', cwd:'%s')",
1231         cfrombstring(curdir->d_fullpath), getcwdpath());
1232
1233     if ( dir == curdir)
1234         return( 0 );
1235     if (dir->d_did == DIRDID_ROOT_PARENT) {
1236         curdir = &rootParent;
1237         return 0;
1238     }
1239
1240     LOG(log_debug, logtype_afpd, "movecwd(did:%u, '%s')", ntohl(dir->d_did), cfrombstring(dir->d_fullpath));
1241
1242     if ((ret = lchdir(cfrombstring(dir->d_fullpath))) != 0 ) {
1243         LOG(log_debug, logtype_afpd, "movecwd('%s'): ret: %u, %s",
1244             cfrombstring(dir->d_fullpath), ret, strerror(errno));
1245         if (ret == 1) {
1246             /* p is a symlink or getcwd failed */
1247             afp_errno = AFPERR_BADTYPE;
1248
1249             if (chdir(vol->v_path ) < 0) {
1250                 LOG(log_error, logtype_afpd, "can't chdir back'%s': %s", vol->v_path, strerror(errno));
1251                 /* XXX what do we do here? */
1252             }
1253             curdir = vol->v_root;
1254             return -1;
1255         }
1256
1257         switch (errno) {
1258         case EACCES:
1259         case EPERM:
1260             afp_errno = AFPERR_ACCESS;
1261             break;
1262         default:
1263             afp_errno = AFPERR_NOOBJ;
1264         }
1265         return( -1 );
1266     }
1267
1268     curdir = dir;
1269     return( 0 );
1270 }
1271
1272 /*
1273  * We can't use unix file's perm to support Apple's inherited protection modes.
1274  * If we aren't the file's owner we can't change its perms when moving it and smb
1275  * nfs,... don't even try.
1276  */
1277 #define AFP_CHECK_ACCESS
1278
1279 int check_access(char *path, int mode)
1280 {
1281 #ifdef AFP_CHECK_ACCESS
1282     struct maccess ma;
1283     char *p;
1284
1285     p = ad_dir(path);
1286     if (!p)
1287         return -1;
1288
1289     accessmode(p, &ma, curdir, NULL);
1290     if ((mode & OPENACC_WR) && !(ma.ma_user & AR_UWRITE))
1291         return -1;
1292     if ((mode & OPENACC_RD) && !(ma.ma_user & AR_UREAD))
1293         return -1;
1294 #endif
1295     return 0;
1296 }
1297
1298 /* --------------------- */
1299 int file_access(struct path *path, int mode)
1300 {
1301     struct maccess ma;
1302
1303     accessmode(path->u_name, &ma, curdir, &path->st);
1304     if ((mode & OPENACC_WR) && !(ma.ma_user & AR_UWRITE))
1305         return -1;
1306     if ((mode & OPENACC_RD) && !(ma.ma_user & AR_UREAD))
1307         return -1;
1308     return 0;
1309
1310 }
1311
1312 /* --------------------- */
1313 void setdiroffcnt(struct dir *dir, struct stat *st,  u_int32_t count)
1314 {
1315     dir->offcnt = count;
1316     dir->ctime = st->st_ctime;
1317     dir->d_flags &= ~DIRF_CNID;
1318 }
1319
1320
1321 /* ---------------------
1322  * is our cached also for reenumerate id?
1323  */
1324 int dirreenumerate(struct dir *dir, struct stat *st)
1325 {
1326     return st->st_ctime == dir->ctime && (dir->d_flags & DIRF_CNID);
1327 }
1328
1329 /* ------------------------------
1330    (".", curdir)
1331    (name, dir) with curdir:name == dir, from afp_enumerate
1332 */
1333
1334 int getdirparams(const struct vol *vol,
1335                  u_int16_t bitmap, struct path *s_path,
1336                  struct dir *dir,
1337                  char *buf, size_t *buflen )
1338 {
1339     struct maccess  ma;
1340     struct adouble  ad;
1341     char        *data, *l_nameoff = NULL, *utf_nameoff = NULL;
1342     int         bit = 0, isad = 0;
1343     u_int32_t           aint;
1344     u_int16_t       ashort;
1345     int                 ret;
1346     u_int32_t           utf8 = 0;
1347     cnid_t              pdid;
1348     struct stat *st = &s_path->st;
1349     char *upath = s_path->u_name;
1350
1351     if ((bitmap & ((1 << DIRPBIT_ATTR)  |
1352                    (1 << DIRPBIT_CDATE) |
1353                    (1 << DIRPBIT_MDATE) |
1354                    (1 << DIRPBIT_BDATE) |
1355                    (1 << DIRPBIT_FINFO)))) {
1356
1357         ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1358         if ( !ad_metadata( upath, ADFLAGS_CREATE|ADFLAGS_DIR, &ad) ) {
1359             isad = 1;
1360             if (ad.ad_md->adf_flags & O_CREAT) {
1361                 /* We just created it */
1362                 ad_setname(&ad, s_path->m_name);
1363                 ad_setid( &ad,
1364                           s_path->st.st_dev,
1365                           s_path->st.st_ino,
1366                           dir->d_did,
1367                           dir->d_pdid,
1368                           vol->v_stamp);
1369                 ad_flush( &ad);
1370             }
1371         }
1372     }
1373
1374     pdid = dir->d_pdid;
1375
1376     data = buf;
1377     while ( bitmap != 0 ) {
1378         while (( bitmap & 1 ) == 0 ) {
1379             bitmap = bitmap>>1;
1380             bit++;
1381         }
1382
1383         switch ( bit ) {
1384         case DIRPBIT_ATTR :
1385             if ( isad ) {
1386                 ad_getattr(&ad, &ashort);
1387             } else if (invisible_dots(vol, cfrombstring(dir->d_u_name))) {
1388                 ashort = htons(ATTRBIT_INVISIBLE);
1389             } else
1390                 ashort = 0;
1391             ashort |= htons(ATTRBIT_SHARED);
1392             memcpy( data, &ashort, sizeof( ashort ));
1393             data += sizeof( ashort );
1394             break;
1395
1396         case DIRPBIT_PDID :
1397             memcpy( data, &pdid, sizeof( pdid ));
1398             data += sizeof( pdid );
1399             LOG(log_debug, logtype_afpd, "metadata('%s'):     Parent DID: %u",
1400                 s_path->u_name, ntohl(pdid));
1401             break;
1402
1403         case DIRPBIT_CDATE :
1404             if (!isad || (ad_getdate(&ad, AD_DATE_CREATE, &aint) < 0))
1405                 aint = AD_DATE_FROM_UNIX(st->st_mtime);
1406             memcpy( data, &aint, sizeof( aint ));
1407             data += sizeof( aint );
1408             break;
1409
1410         case DIRPBIT_MDATE :
1411             aint = AD_DATE_FROM_UNIX(st->st_mtime);
1412             memcpy( data, &aint, sizeof( aint ));
1413             data += sizeof( aint );
1414             break;
1415
1416         case DIRPBIT_BDATE :
1417             if (!isad || (ad_getdate(&ad, AD_DATE_BACKUP, &aint) < 0))
1418                 aint = AD_DATE_START;
1419             memcpy( data, &aint, sizeof( aint ));
1420             data += sizeof( aint );
1421             break;
1422
1423         case DIRPBIT_FINFO :
1424             if ( isad ) {
1425                 memcpy( data, ad_entry( &ad, ADEID_FINDERI ), 32 );
1426             } else { /* no appledouble */
1427                 memset( data, 0, 32 );
1428                 /* set default view -- this also gets done in ad_open() */
1429                 ashort = htons(FINDERINFO_CLOSEDVIEW);
1430                 memcpy(data + FINDERINFO_FRVIEWOFF, &ashort, sizeof(ashort));
1431
1432                 /* dot files are by default visible */
1433                 if (invisible_dots(vol, cfrombstring(dir->d_u_name))) {
1434                     ashort = htons(FINDERINFO_INVISIBLE);
1435                     memcpy(data + FINDERINFO_FRFLAGOFF, &ashort, sizeof(ashort));
1436                 }
1437             }
1438             data += 32;
1439             break;
1440
1441         case DIRPBIT_LNAME :
1442             if (dir->d_m_name) /* root of parent can have a null name */
1443                 l_nameoff = data;
1444             else
1445                 memset(data, 0, sizeof(u_int16_t));
1446             data += sizeof( u_int16_t );
1447             break;
1448
1449         case DIRPBIT_SNAME :
1450             memset(data, 0, sizeof(u_int16_t));
1451             data += sizeof( u_int16_t );
1452             break;
1453
1454         case DIRPBIT_DID :
1455             memcpy( data, &dir->d_did, sizeof( aint ));
1456             data += sizeof( aint );
1457             LOG(log_debug, logtype_afpd, "metadata('%s'):            DID: %u",
1458                 s_path->u_name, ntohl(dir->d_did));
1459             break;
1460
1461         case DIRPBIT_OFFCNT :
1462             ashort = 0;
1463             /* this needs to handle current directory access rights */
1464             if (diroffcnt(dir, st)) {
1465                 ashort = (dir->offcnt > 0xffff)?0xffff:dir->offcnt;
1466             }
1467             else if ((ret = for_each_dirent(vol, upath, NULL,NULL)) >= 0) {
1468                 setdiroffcnt(dir, st,  ret);
1469                 ashort = (dir->offcnt > 0xffff)?0xffff:dir->offcnt;
1470             }
1471             ashort = htons( ashort );
1472             memcpy( data, &ashort, sizeof( ashort ));
1473             data += sizeof( ashort );
1474             break;
1475
1476         case DIRPBIT_UID :
1477             aint = htonl(st->st_uid);
1478             memcpy( data, &aint, sizeof( aint ));
1479             data += sizeof( aint );
1480             break;
1481
1482         case DIRPBIT_GID :
1483             aint = htonl(st->st_gid);
1484             memcpy( data, &aint, sizeof( aint ));
1485             data += sizeof( aint );
1486             break;
1487
1488         case DIRPBIT_ACCESS :
1489             accessmode( upath, &ma, dir , st);
1490
1491             *data++ = ma.ma_user;
1492             *data++ = ma.ma_world;
1493             *data++ = ma.ma_group;
1494             *data++ = ma.ma_owner;
1495             break;
1496
1497             /* Client has requested the ProDOS information block.
1498                Just pass back the same basic block for all
1499                directories. <shirsch@ibm.net> */
1500         case DIRPBIT_PDINFO :
1501             if (afp_version >= 30) { /* UTF8 name */
1502                 utf8 = kTextEncodingUTF8;
1503                 if (dir->d_m_name) /* root of parent can have a null name */
1504                     utf_nameoff = data;
1505                 else
1506                     memset(data, 0, sizeof(u_int16_t));
1507                 data += sizeof( u_int16_t );
1508                 aint = 0;
1509                 memcpy(data, &aint, sizeof( aint ));
1510                 data += sizeof( aint );
1511             }
1512             else { /* ProDOS Info Block */
1513                 *data++ = 0x0f;
1514                 *data++ = 0;
1515                 ashort = htons( 0x0200 );
1516                 memcpy( data, &ashort, sizeof( ashort ));
1517                 data += sizeof( ashort );
1518                 memset( data, 0, sizeof( ashort ));
1519                 data += sizeof( ashort );
1520             }
1521             break;
1522
1523         case DIRPBIT_UNIXPR :
1524             aint = htonl(st->st_uid);
1525             memcpy( data, &aint, sizeof( aint ));
1526             data += sizeof( aint );
1527             aint = htonl(st->st_gid);
1528             memcpy( data, &aint, sizeof( aint ));
1529             data += sizeof( aint );
1530
1531             aint = st->st_mode;
1532             aint = htonl ( aint & ~S_ISGID );  /* Remove SGID, OSX doesn't like it ... */
1533             memcpy( data, &aint, sizeof( aint ));
1534             data += sizeof( aint );
1535
1536             accessmode( upath, &ma, dir , st);
1537
1538             *data++ = ma.ma_user;
1539             *data++ = ma.ma_world;
1540             *data++ = ma.ma_group;
1541             *data++ = ma.ma_owner;
1542             break;
1543
1544         default :
1545             if ( isad ) {
1546                 ad_close_metadata( &ad );
1547             }
1548             return( AFPERR_BITMAP );
1549         }
1550         bitmap = bitmap>>1;
1551         bit++;
1552     }
1553     if ( l_nameoff ) {
1554         ashort = htons( data - buf );
1555         memcpy( l_nameoff, &ashort, sizeof( ashort ));
1556         data = set_name(vol, data, pdid, cfrombstring(dir->d_m_name), dir->d_did, 0);
1557     }
1558     if ( utf_nameoff ) {
1559         ashort = htons( data - buf );
1560         memcpy( utf_nameoff, &ashort, sizeof( ashort ));
1561         data = set_name(vol, data, pdid, cfrombstring(dir->d_m_name), dir->d_did, utf8);
1562     }
1563     if ( isad ) {
1564         ad_close_metadata( &ad );
1565     }
1566     *buflen = data - buf;
1567     return( AFP_OK );
1568 }
1569
1570 /* ----------------------------- */
1571 int path_error(struct path *path, int error)
1572 {
1573 /* - a dir with access error
1574  * - no error it's a file
1575  * - file not found
1576  */
1577     if (path_isadir(path))
1578         return afp_errno;
1579     if (path->st_valid && path->st_errno)
1580         return error;
1581     return AFPERR_BADTYPE ;
1582 }
1583
1584 /* ----------------------------- */
1585 int afp_setdirparams(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
1586 {
1587     struct vol  *vol;
1588     struct dir  *dir;
1589     struct path *path;
1590     u_int16_t   vid, bitmap;
1591     u_int32_t   did;
1592     int     rc;
1593
1594     *rbuflen = 0;
1595     ibuf += 2;
1596     memcpy( &vid, ibuf, sizeof( vid ));
1597     ibuf += sizeof( vid );
1598
1599     if (NULL == ( vol = getvolbyvid( vid )) ) {
1600         return( AFPERR_PARAM );
1601     }
1602
1603     if (vol->v_flags & AFPVOL_RO)
1604         return AFPERR_VLOCK;
1605
1606     memcpy( &did, ibuf, sizeof( did ));
1607     ibuf += sizeof( int );
1608
1609     if (NULL == ( dir = dirlookup( vol, did )) ) {
1610         return afp_errno;
1611     }
1612
1613     memcpy( &bitmap, ibuf, sizeof( bitmap ));
1614     bitmap = ntohs( bitmap );
1615     ibuf += sizeof( bitmap );
1616
1617     if (NULL == ( path = cname( vol, dir, &ibuf )) ) {
1618         return get_afp_errno(AFPERR_NOOBJ);
1619     }
1620
1621     if ( *path->m_name != '\0' ) {
1622         rc = path_error(path, AFPERR_NOOBJ);
1623         /* maybe we are trying to set perms back */
1624         if (rc != AFPERR_ACCESS)
1625             return rc;
1626     }
1627
1628     /*
1629      * If ibuf is odd, make it even.
1630      */
1631     if ((u_long)ibuf & 1 ) {
1632         ibuf++;
1633     }
1634
1635     if (AFP_OK == ( rc = setdirparams(vol, path, bitmap, ibuf )) ) {
1636         setvoltime(obj, vol );
1637     }
1638     return( rc );
1639 }
1640
1641 /*
1642  * cf AFP3.0.pdf page 244 for change_mdate and change_parent_mdate logic
1643  *
1644  * assume path == '\0' eg. it's a directory in canonical form
1645  */
1646 int setdirparams(struct vol *vol, struct path *path, u_int16_t d_bitmap, char *buf )
1647 {
1648     struct maccess  ma;
1649     struct adouble  ad;
1650     struct utimbuf      ut;
1651     struct timeval      tv;
1652
1653     char                *upath;
1654     struct dir          *dir;
1655     int         bit, isad = 1;
1656     int                 cdate, bdate;
1657     int                 owner, group;
1658     u_int16_t       ashort, bshort, oshort;
1659     int                 err = AFP_OK;
1660     int                 change_mdate = 0;
1661     int                 change_parent_mdate = 0;
1662     int                 newdate = 0;
1663     u_int16_t           bitmap = d_bitmap;
1664     u_char              finder_buf[32];
1665     u_int32_t       upriv;
1666     mode_t              mpriv = 0;
1667     u_int16_t           upriv_bit = 0;
1668
1669     bit = 0;
1670     upath = path->u_name;
1671     dir   = path->d_dir;
1672     while ( bitmap != 0 ) {
1673         while (( bitmap & 1 ) == 0 ) {
1674             bitmap = bitmap>>1;
1675             bit++;
1676         }
1677
1678         switch( bit ) {
1679         case DIRPBIT_ATTR :
1680             change_mdate = 1;
1681             memcpy( &ashort, buf, sizeof( ashort ));
1682             buf += sizeof( ashort );
1683             break;
1684         case DIRPBIT_CDATE :
1685             change_mdate = 1;
1686             memcpy(&cdate, buf, sizeof(cdate));
1687             buf += sizeof( cdate );
1688             break;
1689         case DIRPBIT_MDATE :
1690             memcpy(&newdate, buf, sizeof(newdate));
1691             buf += sizeof( newdate );
1692             break;
1693         case DIRPBIT_BDATE :
1694             change_mdate = 1;
1695             memcpy(&bdate, buf, sizeof(bdate));
1696             buf += sizeof( bdate );
1697             break;
1698         case DIRPBIT_FINFO :
1699             change_mdate = 1;
1700             memcpy( finder_buf, buf, 32 );
1701             buf += 32;
1702             break;
1703         case DIRPBIT_UID :  /* What kind of loser mounts as root? */
1704             change_parent_mdate = 1;
1705             memcpy( &owner, buf, sizeof(owner));
1706             buf += sizeof( owner );
1707             break;
1708         case DIRPBIT_GID :
1709             change_parent_mdate = 1;
1710             memcpy( &group, buf, sizeof( group ));
1711             buf += sizeof( group );
1712             break;
1713         case DIRPBIT_ACCESS :
1714             change_mdate = 1;
1715             change_parent_mdate = 1;
1716             ma.ma_user = *buf++;
1717             ma.ma_world = *buf++;
1718             ma.ma_group = *buf++;
1719             ma.ma_owner = *buf++;
1720             mpriv = mtoumode( &ma ) | vol->v_dperm;
1721             if (dir_rx_set(mpriv) && setdirmode( vol, upath, mpriv) < 0 ) {
1722                 err = set_dir_errors(path, "setdirmode", errno);
1723                 bitmap = 0;
1724             }
1725             break;
1726             /* Ignore what the client thinks we should do to the
1727                ProDOS information block.  Skip over the data and
1728                report nothing amiss. <shirsch@ibm.net> */
1729         case DIRPBIT_PDINFO :
1730             if (afp_version < 30) {
1731                 buf += 6;
1732             }
1733             else {
1734                 err = AFPERR_BITMAP;
1735                 bitmap = 0;
1736             }
1737             break;
1738         case DIRPBIT_UNIXPR :
1739             if (vol_unix_priv(vol)) {
1740                 memcpy( &owner, buf, sizeof(owner)); /* FIXME need to change owner too? */
1741                 buf += sizeof( owner );
1742                 memcpy( &group, buf, sizeof( group ));
1743                 buf += sizeof( group );
1744
1745                 change_mdate = 1;
1746                 change_parent_mdate = 1;
1747                 memcpy( &upriv, buf, sizeof( upriv ));
1748                 buf += sizeof( upriv );
1749                 upriv = ntohl (upriv) | vol->v_dperm;
1750                 if (dir_rx_set(upriv)) {
1751                     /* maybe we are trying to set perms back */
1752                     if ( setdirunixmode(vol, upath, upriv) < 0 ) {
1753                         bitmap = 0;
1754                         err = set_dir_errors(path, "setdirunixmode", errno);
1755                     }
1756                 }
1757                 else {
1758                     /* do it later */
1759                     upriv_bit = 1;
1760                 }
1761                 break;
1762             }
1763             /* fall through */
1764         default :
1765             err = AFPERR_BITMAP;
1766             bitmap = 0;
1767             break;
1768         }
1769
1770         bitmap = bitmap>>1;
1771         bit++;
1772     }
1773     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1774
1775     if (ad_open_metadata( upath, ADFLAGS_DIR, O_CREAT, &ad) < 0) {
1776         /*
1777          * Check to see what we're trying to set.  If it's anything
1778          * but ACCESS, UID, or GID, give an error.  If it's any of those
1779          * three, we don't need the ad to be open, so just continue.
1780          *
1781          * note: we also don't need to worry about mdate. also, be quiet
1782          *       if we're using the noadouble option.
1783          */
1784         if (!vol_noadouble(vol) && (d_bitmap &
1785                                     ~((1<<DIRPBIT_ACCESS)|(1<<DIRPBIT_UNIXPR)|
1786                                       (1<<DIRPBIT_UID)|(1<<DIRPBIT_GID)|
1787                                       (1<<DIRPBIT_MDATE)|(1<<DIRPBIT_PDINFO)))) {
1788             return AFPERR_ACCESS;
1789         }
1790
1791         isad = 0;
1792     } else {
1793         /*
1794          * Check to see if a create was necessary. If it was, we'll want
1795          * to set our name, etc.
1796          */
1797         if ( (ad_get_HF_flags( &ad ) & O_CREAT)) {
1798             ad_setname(&ad, cfrombstring(curdir->d_m_name));
1799         }
1800     }
1801
1802     bit = 0;
1803     bitmap = d_bitmap;
1804     while ( bitmap != 0 ) {
1805         while (( bitmap & 1 ) == 0 ) {
1806             bitmap = bitmap>>1;
1807             bit++;
1808         }
1809
1810         switch( bit ) {
1811         case DIRPBIT_ATTR :
1812             if (isad) {
1813                 ad_getattr(&ad, &bshort);
1814                 oshort = bshort;
1815                 if ( ntohs( ashort ) & ATTRBIT_SETCLR ) {
1816                     bshort |= htons( ntohs( ashort ) & ~ATTRBIT_SETCLR );
1817                 } else {
1818                     bshort &= ~ashort;
1819                 }
1820                 if ((bshort & htons(ATTRBIT_INVISIBLE)) != (oshort & htons(ATTRBIT_INVISIBLE)))
1821                     change_parent_mdate = 1;
1822                 ad_setattr(&ad, bshort);
1823             }
1824             break;
1825         case DIRPBIT_CDATE :
1826             if (isad) {
1827                 ad_setdate(&ad, AD_DATE_CREATE, cdate);
1828             }
1829             break;
1830         case DIRPBIT_MDATE :
1831             break;
1832         case DIRPBIT_BDATE :
1833             if (isad) {
1834                 ad_setdate(&ad, AD_DATE_BACKUP, bdate);
1835             }
1836             break;
1837         case DIRPBIT_FINFO :
1838             if (isad) {
1839                 /* Fixes #2802236 */
1840                 u_int16_t *fflags = (u_int16_t *)(finder_buf + FINDERINFO_FRFLAGOFF);
1841                 *fflags &= htons(~FINDERINFO_ISHARED);
1842                 /* #2802236 end */
1843                 if (  dir->d_did == DIRDID_ROOT ) {
1844                     /*
1845                      * Alright, we admit it, this is *really* sick!
1846                      * The 4 bytes that we don't copy, when we're dealing
1847                      * with the root of a volume, are the directory's
1848                      * location information. This eliminates that annoying
1849                      * behavior one sees when mounting above another mount
1850                      * point.
1851                      */
1852                     memcpy( ad_entry( &ad, ADEID_FINDERI ), finder_buf, 10 );
1853                     memcpy( ad_entry( &ad, ADEID_FINDERI ) + 14, finder_buf + 14, 18 );
1854                 } else {
1855                     memcpy( ad_entry( &ad, ADEID_FINDERI ), finder_buf, 32 );
1856                 }
1857             }
1858             break;
1859         case DIRPBIT_UID :  /* What kind of loser mounts as root? */
1860             if ( (dir->d_did == DIRDID_ROOT) &&
1861                  (setdeskowner( ntohl(owner), -1 ) < 0)) {
1862                 err = set_dir_errors(path, "setdeskowner", errno);
1863                 if (isad && err == AFPERR_PARAM) {
1864                     err = AFP_OK; /* ???*/
1865                 }
1866                 else {
1867                     goto setdirparam_done;
1868                 }
1869             }
1870             if ( setdirowner(vol, upath, ntohl(owner), -1 ) < 0 ) {
1871                 err = set_dir_errors(path, "setdirowner", errno);
1872                 goto setdirparam_done;
1873             }
1874             break;
1875         case DIRPBIT_GID :
1876             if (dir->d_did == DIRDID_ROOT)
1877                 setdeskowner( -1, ntohl(group) );
1878             if ( setdirowner(vol, upath, -1, ntohl(group) ) < 0 ) {
1879                 err = set_dir_errors(path, "setdirowner", errno);
1880                 goto setdirparam_done;
1881             }
1882             break;
1883         case DIRPBIT_ACCESS :
1884             if (dir->d_did == DIRDID_ROOT) {
1885                 setdeskmode(mpriv);
1886                 if (!dir_rx_set(mpriv)) {
1887                     /* we can't remove read and search for owner on volume root */
1888                     err = AFPERR_ACCESS;
1889                     goto setdirparam_done;
1890                 }
1891             }
1892
1893             if (!dir_rx_set(mpriv) && setdirmode( vol, upath, mpriv) < 0 ) {
1894                 err = set_dir_errors(path, "setdirmode", errno);
1895                 goto setdirparam_done;
1896             }
1897             break;
1898         case DIRPBIT_PDINFO :
1899             if (afp_version >= 30) {
1900                 err = AFPERR_BITMAP;
1901                 goto setdirparam_done;
1902             }
1903             break;
1904         case DIRPBIT_UNIXPR :
1905             if (vol_unix_priv(vol)) {
1906                 if (dir->d_did == DIRDID_ROOT) {
1907                     if (!dir_rx_set(upriv)) {
1908                         /* we can't remove read and search for owner on volume root */
1909                         err = AFPERR_ACCESS;
1910                         goto setdirparam_done;
1911                     }
1912                     setdeskowner( -1, ntohl(group) );
1913                     setdeskmode( upriv );
1914                 }
1915                 if ( setdirowner(vol, upath, -1, ntohl(group) ) < 0 ) {
1916                     err = set_dir_errors(path, "setdirowner", errno);
1917                     goto setdirparam_done;
1918                 }
1919
1920                 if ( upriv_bit && setdirunixmode(vol, upath, upriv) < 0 ) {
1921                     err = set_dir_errors(path, "setdirunixmode", errno);
1922                     goto setdirparam_done;
1923                 }
1924             }
1925             else {
1926                 err = AFPERR_BITMAP;
1927                 goto setdirparam_done;
1928             }
1929             break;
1930         default :
1931             err = AFPERR_BITMAP;
1932             goto setdirparam_done;
1933             break;
1934         }
1935
1936         bitmap = bitmap>>1;
1937         bit++;
1938     }
1939
1940 setdirparam_done:
1941     if (change_mdate && newdate == 0 && gettimeofday(&tv, NULL) == 0) {
1942         newdate = AD_DATE_FROM_UNIX(tv.tv_sec);
1943     }
1944     if (newdate) {
1945         if (isad)
1946             ad_setdate(&ad, AD_DATE_MODIFY, newdate);
1947         ut.actime = ut.modtime = AD_DATE_TO_UNIX(newdate);
1948         utime(upath, &ut);
1949     }
1950
1951     if ( isad ) {
1952         if (path->st_valid && !path->st_errno) {
1953             struct stat *st = &path->st;
1954
1955             if (dir && dir->d_pdid) {
1956                 ad_setid(&ad, st->st_dev, st->st_ino,  dir->d_did, dir->d_pdid, vol->v_stamp);
1957             }
1958         }
1959         ad_flush( &ad);
1960         ad_close_metadata( &ad);
1961     }
1962
1963     if (change_parent_mdate && dir->d_did != DIRDID_ROOT
1964         && gettimeofday(&tv, NULL) == 0) {
1965         if (movecwd(vol, dirlookup(vol, dir->d_pdid)) == 0) {
1966             newdate = AD_DATE_FROM_UNIX(tv.tv_sec);
1967             /* be careful with bitmap because now dir is null */
1968             bitmap = 1<<DIRPBIT_MDATE;
1969             setdirparams(vol, &Cur_Path, bitmap, (char *)&newdate);
1970             /* should we reset curdir ?*/
1971         }
1972     }
1973
1974     return err;
1975 }
1976
1977 int afp_syncdir(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
1978 {
1979 #ifdef HAVE_DIRFD
1980     DIR                  *dp;
1981 #endif
1982     int                  dfd;
1983     struct vol           *vol;
1984     struct dir           *dir;
1985     u_int32_t            did;
1986     u_int16_t            vid;
1987
1988     *rbuflen = 0;
1989     ibuf += 2;
1990
1991     memcpy( &vid, ibuf, sizeof( vid ));
1992     ibuf += sizeof( vid );
1993     if (NULL == (vol = getvolbyvid( vid )) ) {
1994         return( AFPERR_PARAM );
1995     }
1996
1997     memcpy( &did, ibuf, sizeof( did ));
1998     ibuf += sizeof( did );
1999
2000     /*
2001      * Here's the deal:
2002      * if it's CNID 2 our only choice to meet the specs is call sync.
2003      * For any other CNID just sync that dir. To my knowledge the
2004      * intended use of FPSyncDir is to sync the volume so all we're
2005      * ever going to see here is probably CNID 2. Anyway, we' prepared.
2006      */
2007
2008     if ( ntohl(did) == 2 ) {
2009         sync();
2010     } else {
2011         if (NULL == ( dir = dirlookup( vol, did )) ) {
2012             return afp_errno; /* was AFPERR_NOOBJ */
2013         }
2014
2015         if (movecwd( vol, dir ) < 0 )
2016             return ( AFPERR_NOOBJ );
2017
2018         /*
2019          * Assuming only OSens that have dirfd also may require fsyncing directories
2020          * in order to flush metadata e.g. Linux.
2021          */
2022
2023 #ifdef HAVE_DIRFD
2024         if (NULL == ( dp = opendir( "." )) ) {
2025             switch( errno ) {
2026             case ENOENT :
2027                 return( AFPERR_NOOBJ );
2028             case EACCES :
2029                 return( AFPERR_ACCESS );
2030             default :
2031                 return( AFPERR_PARAM );
2032             }
2033         }
2034
2035         LOG(log_debug, logtype_afpd, "afp_syncdir: dir: '%s'", dir->d_u_name);
2036
2037         dfd = dirfd( dp );
2038         if ( fsync ( dfd ) < 0 )
2039             LOG(log_error, logtype_afpd, "afp_syncdir(%s):  %s",
2040                 dir->d_u_name, strerror(errno) );
2041         closedir(dp); /* closes dfd too */
2042 #endif
2043
2044         if ( -1 == (dfd = open(vol->ad_path(".", ADFLAGS_DIR), O_RDWR))) {
2045             switch( errno ) {
2046             case ENOENT:
2047                 return( AFPERR_NOOBJ );
2048             case EACCES:
2049                 return( AFPERR_ACCESS );
2050             default:
2051                 return( AFPERR_PARAM );
2052             }
2053         }
2054
2055         LOG(log_debug, logtype_afpd, "afp_syncdir: ad-file: '%s'",
2056             vol->ad_path(".", ADFLAGS_DIR) );
2057
2058         if ( fsync(dfd) < 0 )
2059             LOG(log_error, logtype_afpd, "afp_syncdir(%s): %s",
2060                 vol->ad_path(cfrombstring(dir->d_u_name), ADFLAGS_DIR), strerror(errno) );
2061         close(dfd);
2062     }
2063
2064     return ( AFP_OK );
2065 }
2066
2067 int afp_createdir(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
2068 {
2069     struct adouble  ad;
2070     struct vol      *vol;
2071     struct dir      *dir;
2072     char        *upath;
2073     struct path         *s_path;
2074     u_int32_t       did;
2075     u_int16_t       vid;
2076     int                 err;
2077
2078     *rbuflen = 0;
2079     ibuf += 2;
2080
2081     memcpy( &vid, ibuf, sizeof( vid ));
2082     ibuf += sizeof( vid );
2083     if (NULL == ( vol = getvolbyvid( vid )) ) {
2084         return( AFPERR_PARAM );
2085     }
2086
2087     if (vol->v_flags & AFPVOL_RO)
2088         return AFPERR_VLOCK;
2089
2090     memcpy( &did, ibuf, sizeof( did ));
2091     ibuf += sizeof( did );
2092     if (NULL == ( dir = dirlookup( vol, did )) ) {
2093         return afp_errno; /* was AFPERR_NOOBJ */
2094     }
2095     /* for concurrent access we need to be sure we are not in the
2096      * folder we want to create...
2097      */
2098     movecwd(vol, dir);
2099
2100     if (NULL == ( s_path = cname( vol, dir, &ibuf )) ) {
2101         return get_afp_errno(AFPERR_PARAM);
2102     }
2103     /* cname was able to move curdir to it! */
2104     if (*s_path->m_name == '\0')
2105         return AFPERR_EXIST;
2106
2107     upath = s_path->u_name;
2108
2109     if (AFP_OK != (err = netatalk_mkdir(vol, upath))) {
2110         return err;
2111     }
2112
2113     if (of_stat(s_path) < 0) {
2114         return AFPERR_MISC;
2115     }
2116
2117     curdir->offcnt++;
2118
2119     if ((dir = dir_add(vol, curdir, s_path, strlen(s_path->u_name))) == NULL) {
2120         return AFPERR_MISC;
2121     }
2122
2123     if ( movecwd( vol, dir ) < 0 ) {
2124         return( AFPERR_PARAM );
2125     }
2126
2127     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
2128     if (ad_open_metadata( ".", ADFLAGS_DIR, O_CREAT, &ad ) < 0)  {
2129         if (vol_noadouble(vol))
2130             goto createdir_done;
2131         return( AFPERR_ACCESS );
2132     }
2133     ad_setname(&ad, s_path->m_name);
2134     ad_setid( &ad, s_path->st.st_dev, s_path->st.st_ino, dir->d_did, did, vol->v_stamp);
2135
2136     ad_flush( &ad);
2137     ad_close_metadata( &ad);
2138
2139 createdir_done:
2140 #ifdef HAVE_ACLS
2141     /* FIXME: are we really inside the created dir? */
2142     addir_inherit_acl(vol);
2143 #endif /* HAVE_ACLS */
2144
2145     memcpy( rbuf, &dir->d_did, sizeof( u_int32_t ));
2146     *rbuflen = sizeof( u_int32_t );
2147     setvoltime(obj, vol );
2148     return( AFP_OK );
2149 }
2150
2151 /*
2152  * dst       new unix filename (not a pathname)
2153  * newname   new mac name
2154  * newparent curdir
2155  * dirfd     -1 means ignore dirfd (or use AT_FDCWD), otherwise src is relative to dirfd
2156  */
2157 int renamedir(const struct vol *vol,
2158               int dirfd,
2159               char *src,
2160               char *dst,
2161               struct dir *dir,
2162               struct dir *newparent,
2163               char *newname)
2164 {
2165     struct adouble  ad;
2166     int             err;
2167
2168     /* existence check moved to afp_moveandrename */
2169     if ( unix_rename(dirfd, src, -1, dst ) < 0 ) {
2170         switch ( errno ) {
2171         case ENOENT :
2172             return( AFPERR_NOOBJ );
2173         case EACCES :
2174             return( AFPERR_ACCESS );
2175         case EROFS:
2176             return AFPERR_VLOCK;
2177         case EINVAL:
2178             /* tried to move directory into a subdirectory of itself */
2179             return AFPERR_CANTMOVE;
2180         case EXDEV:
2181             /* this needs to copy and delete. bleah. that means we have
2182              * to deal with entire directory hierarchies. */
2183             if ((err = copydir(vol, dirfd, src, dst)) < 0) {
2184                 deletedir(-1, dst);
2185                 return err;
2186             }
2187             if ((err = deletedir(dirfd, src)) < 0)
2188                 return err;
2189             break;
2190         default :
2191             return( AFPERR_PARAM );
2192         }
2193     }
2194
2195     vol->vfs->vfs_renamedir(vol, dirfd, src, dst);
2196
2197     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
2198
2199     if (!ad_open_metadata( dst, ADFLAGS_DIR, 0, &ad)) {
2200         ad_setname(&ad, newname);
2201         ad_flush( &ad);
2202         ad_close_metadata( &ad);
2203     }
2204
2205     return( AFP_OK );
2206 }
2207
2208 /* delete an empty directory */
2209 int deletecurdir(struct vol *vol)
2210 {
2211     struct dirent *de;
2212     struct stat st;
2213     struct dir  *fdir;
2214     DIR *dp;
2215     struct adouble  ad;
2216     u_int16_t       ashort;
2217     int err;
2218
2219     if ( dirlookup(vol, curdir->d_pdid) == NULL ) {
2220         return( AFPERR_ACCESS );
2221     }
2222
2223     fdir = curdir;
2224
2225     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
2226     /* we never want to create a resource fork here, we are going to delete it */
2227     if ( ad_metadata( ".", ADFLAGS_DIR, &ad) == 0 ) {
2228
2229         ad_getattr(&ad, &ashort);
2230         ad_close_metadata(&ad);
2231         if ((ashort & htons(ATTRBIT_NODELETE))) {
2232             return  AFPERR_OLOCK;
2233         }
2234     }
2235     err = vol->vfs->vfs_deletecurdir(vol);
2236     if (err) {
2237         return err;
2238     }
2239
2240     /* now get rid of dangling symlinks */
2241     if ((dp = opendir("."))) {
2242         while ((de = readdir(dp))) {
2243             /* skip this and previous directory */
2244             if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, ".."))
2245                 continue;
2246
2247             /* bail if it's not a symlink */
2248             if ((lstat(de->d_name, &st) == 0) && !S_ISLNK(st.st_mode)) {
2249                 closedir(dp);
2250                 return AFPERR_DIRNEMPT;
2251             }
2252
2253             if ((err = netatalk_unlink(de->d_name))) {
2254                 closedir(dp);
2255                 return err;
2256             }
2257         }
2258     }
2259
2260     if ( movecwd(vol, dirlookup(vol, curdir->d_pdid)) < 0 ) {
2261         err = afp_errno;
2262         goto delete_done;
2263     }
2264
2265     err = netatalk_rmdir_all_errors(-1, cfrombstring(fdir->d_u_name));
2266     if ( err ==  AFP_OK || err == AFPERR_NOOBJ) {
2267         cnid_delete(vol->v_cdb, fdir->d_did);
2268         dir_remove( vol, fdir );
2269     }
2270 delete_done:
2271     if (dp) {
2272         /* inode is used as key for cnid.
2273          * Close the descriptor only after cnid_delete
2274          * has been called.
2275          */
2276         closedir(dp);
2277     }
2278     return err;
2279 }
2280
2281 int afp_mapid(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
2282 {
2283     struct passwd   *pw;
2284     struct group    *gr;
2285     char        *name;
2286     u_int32_t           id;
2287     int         len, sfunc;
2288     int         utf8 = 0;
2289
2290     ibuf++;
2291     sfunc = (unsigned char) *ibuf++;
2292     *rbuflen = 0;
2293
2294     if (sfunc >= 3 && sfunc <= 6) {
2295         if (afp_version < 30) {
2296             return( AFPERR_PARAM );
2297         }
2298         utf8 = 1;
2299     }
2300
2301     switch ( sfunc ) {
2302     case 1 :
2303     case 3 :/* unicode */
2304         memcpy( &id, ibuf, sizeof( id ));
2305         id = ntohl(id);
2306         if ( id != 0 ) {
2307             if (( pw = getpwuid( id )) == NULL ) {
2308                 return( AFPERR_NOITEM );
2309             }
2310             len = convert_string_allocate( obj->options.unixcharset, ((!utf8)?obj->options.maccharset:CH_UTF8_MAC),
2311                                            pw->pw_name, -1, &name);
2312         } else {
2313             len = 0;
2314             name = NULL;
2315         }
2316         break;
2317     case 2 :
2318     case 4 : /* unicode */
2319         memcpy( &id, ibuf, sizeof( id ));
2320         id = ntohl(id);
2321         if ( id != 0 ) {
2322             if (NULL == ( gr = (struct group *)getgrgid( id ))) {
2323                 return( AFPERR_NOITEM );
2324             }
2325             len = convert_string_allocate( obj->options.unixcharset, (!utf8)?obj->options.maccharset:CH_UTF8_MAC,
2326                                            gr->gr_name, -1, &name);
2327         } else {
2328             len = 0;
2329             name = NULL;
2330         }
2331         break;
2332 #ifdef HAVE_ACLS
2333     case 5 : /* UUID -> username */
2334     case 6 : /* UUID -> groupname */
2335         if ((afp_version < 32) || !(obj->options.flags & OPTION_UUID ))
2336             return AFPERR_PARAM;
2337         LOG(log_debug, logtype_afpd, "afp_mapid: valid UUID request");
2338         uuidtype_t type;
2339         len = getnamefromuuid( ibuf, &name, &type);
2340         if (len != 0)       /* its a error code, not len */
2341             return AFPERR_NOITEM;
2342         if (type == UUID_USER) {
2343             if (( pw = getpwnam( name )) == NULL )
2344                 return( AFPERR_NOITEM );
2345             LOG(log_debug, logtype_afpd, "afp_mapid: name:%s -> uid:%d", name, pw->pw_uid);
2346             id = htonl(UUID_USER);
2347             memcpy( rbuf, &id, sizeof( id ));
2348             id = htonl( pw->pw_uid);
2349             rbuf += sizeof( id );
2350             memcpy( rbuf, &id, sizeof( id ));
2351             rbuf += sizeof( id );
2352             *rbuflen = 2 * sizeof( id );
2353         } else {        /* type == UUID_GROUP */
2354             if (( gr = getgrnam( name )) == NULL )
2355                 return( AFPERR_NOITEM );
2356             LOG(log_debug, logtype_afpd, "afp_mapid: group:%s -> gid:%d", name, gr->gr_gid);
2357             id = htonl(UUID_GROUP);
2358             memcpy( rbuf, &id, sizeof( id ));
2359             rbuf += sizeof( id );
2360             id = htonl( gr->gr_gid);
2361             memcpy( rbuf, &id, sizeof( id ));
2362             rbuf += sizeof( id );
2363             *rbuflen = 2 * sizeof( id );
2364         }
2365         break;
2366 #endif /* HAVE_ACLS */
2367     default :
2368         return( AFPERR_PARAM );
2369     }
2370
2371     if (name)
2372         len = strlen( name );
2373
2374     if (utf8) {
2375         u_int16_t tp = htons(len);
2376         memcpy(rbuf, &tp, sizeof(tp));
2377         rbuf += sizeof(tp);
2378         *rbuflen += 2;
2379     }
2380     else {
2381         *rbuf++ = len;
2382         *rbuflen += 1;
2383     }
2384     if ( len > 0 ) {
2385         memcpy( rbuf, name, len );
2386     }
2387     *rbuflen += len;
2388     if (name)
2389         free(name);
2390     return( AFP_OK );
2391 }
2392
2393 int afp_mapname(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
2394 {
2395     struct passwd   *pw;
2396     struct group    *gr;
2397     int             len, sfunc;
2398     u_int32_t       id;
2399     u_int16_t       ulen;
2400
2401     ibuf++;
2402     sfunc = (unsigned char) *ibuf++;
2403     *rbuflen = 0;
2404     LOG(log_debug, logtype_afpd, "afp_mapname: sfunc: %d, afp_version: %d", sfunc, afp_version);
2405     switch ( sfunc ) {
2406     case 1 :
2407     case 2 : /* unicode */
2408         if (afp_version < 30) {
2409             return( AFPERR_PARAM );
2410         }
2411         memcpy(&ulen, ibuf, sizeof(ulen));
2412         len = ntohs(ulen);
2413         ibuf += 2;
2414         LOG(log_debug, logtype_afpd, "afp_mapname: alive");
2415         break;
2416     case 3 :
2417     case 4 :
2418         len = (unsigned char) *ibuf++;
2419         break;
2420 #ifdef HAVE_ACLS
2421     case 5 : /* username -> UUID  */
2422     case 6 : /* groupname -> UUID */
2423         if ((afp_version < 32) || !(obj->options.flags & OPTION_UUID ))
2424             return AFPERR_PARAM;
2425         memcpy(&ulen, ibuf, sizeof(ulen));
2426         len = ntohs(ulen);
2427         ibuf += 2;
2428         break;
2429 #endif /* HAVE_ACLS */
2430     default :
2431         return( AFPERR_PARAM );
2432     }
2433
2434     ibuf[ len ] = '\0';
2435
2436     if ( len == 0 )
2437         return AFPERR_PARAM;
2438     else {
2439         switch ( sfunc ) {
2440         case 1 : /* unicode */
2441         case 3 :
2442             if (NULL == ( pw = (struct passwd *)getpwnam( ibuf )) ) {
2443                 return( AFPERR_NOITEM );
2444             }
2445             id = pw->pw_uid;
2446             id = htonl(id);
2447             memcpy( rbuf, &id, sizeof( id ));
2448             *rbuflen = sizeof( id );
2449             break;
2450
2451         case 2 : /* unicode */
2452         case 4 :
2453             LOG(log_debug, logtype_afpd, "afp_mapname: gettgrnam for name: %s",ibuf);
2454             if (NULL == ( gr = (struct group *)getgrnam( ibuf ))) {
2455                 return( AFPERR_NOITEM );
2456             }
2457             id = gr->gr_gid;
2458             LOG(log_debug, logtype_afpd, "afp_mapname: gettgrnam for name: %s -> id: %d",ibuf, id);
2459             id = htonl(id);
2460             memcpy( rbuf, &id, sizeof( id ));
2461             *rbuflen = sizeof( id );
2462             break;
2463 #ifdef HAVE_ACLS
2464         case 5 :        /* username -> UUID */
2465             LOG(log_debug, logtype_afpd, "afp_mapname: name: %s",ibuf);
2466             if (0 != getuuidfromname(ibuf, UUID_USER, rbuf))
2467                 return AFPERR_NOITEM;
2468             *rbuflen = UUID_BINSIZE;
2469             break;
2470         case 6 :        /* groupname -> UUID */
2471             LOG(log_debug, logtype_afpd, "afp_mapname: name: %s",ibuf);
2472             if (0 != getuuidfromname(ibuf, UUID_GROUP, rbuf))
2473                 return AFPERR_NOITEM;
2474             *rbuflen = UUID_BINSIZE;
2475             break;
2476 #endif /* HAVE_ACLS */
2477         }
2478     }
2479     return( AFP_OK );
2480 }
2481
2482 /* ------------------------------------
2483    variable DID support
2484 */
2485 int afp_closedir(AFPObj *obj _U_, char *ibuf _U_, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
2486 {
2487 #if 0
2488     struct vol   *vol;
2489     struct dir   *dir;
2490     u_int16_t    vid;
2491     u_int32_t    did;
2492 #endif /* 0 */
2493
2494     *rbuflen = 0;
2495
2496     /* do nothing as dids are static for the life of the process. */
2497 #if 0
2498     ibuf += 2;
2499
2500     memcpy(&vid,  ibuf, sizeof( vid ));
2501     ibuf += sizeof( vid );
2502     if (( vol = getvolbyvid( vid )) == NULL ) {
2503         return( AFPERR_PARAM );
2504     }
2505
2506     memcpy( &did, ibuf, sizeof( did ));
2507     ibuf += sizeof( did );
2508     if (( dir = dirlookup( vol, did )) == NULL ) {
2509         return( AFPERR_PARAM );
2510     }
2511
2512     /* dir_remove -- deletedid */
2513 #endif /* 0 */
2514
2515     return AFP_OK;
2516 }
2517
2518 /* did creation gets done automatically
2519  * there's a pb again with case but move it to cname
2520  */
2521 int afp_opendir(AFPObj *obj _U_, char *ibuf, size_t ibuflen  _U_, char *rbuf, size_t *rbuflen)
2522 {
2523     struct vol      *vol;
2524     struct dir      *parentdir;
2525     struct path     *path;
2526     u_int32_t       did;
2527     u_int16_t       vid;
2528
2529     *rbuflen = 0;
2530     ibuf += 2;
2531
2532     memcpy(&vid, ibuf, sizeof(vid));
2533     ibuf += sizeof( vid );
2534
2535     if (NULL == ( vol = getvolbyvid( vid )) ) {
2536         return( AFPERR_PARAM );
2537     }
2538
2539     memcpy(&did, ibuf, sizeof(did));
2540     ibuf += sizeof(did);
2541
2542     if (NULL == ( parentdir = dirlookup( vol, did )) ) {
2543         return afp_errno;
2544     }
2545
2546     if (NULL == ( path = cname( vol, parentdir, &ibuf )) ) {
2547         return get_afp_errno(AFPERR_PARAM);
2548     }
2549
2550     if ( *path->m_name != '\0' ) {
2551         return path_error(path, AFPERR_NOOBJ);
2552     }
2553
2554     if ( !path->st_valid && of_stat(path ) < 0 ) {
2555         return( AFPERR_NOOBJ );
2556     }
2557     if ( path->st_errno ) {
2558         return( AFPERR_NOOBJ );
2559     }
2560
2561     memcpy(rbuf, &curdir->d_did, sizeof(curdir->d_did));
2562     *rbuflen = sizeof(curdir->d_did);
2563     return AFP_OK;
2564 }