]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/directory.c
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
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(const 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  */
911 int dir_modify(const struct vol *vol,
912                struct dir *dir,
913                cnid_t pdid,
914                cnid_t did,
915                const char *new_mname,
916                const char *new_uname,
917                bstring pdir_fullpath)
918 {
919     int ret = 0;
920
921     /* Remove it from the cache */
922     dircache_remove(vol, dir, DIRCACHE | DIDNAME_INDEX | QUEUE_INDEX);
923
924     if (pdid)
925         dir->d_pdid = pdid;
926     if (did)
927         dir->d_did = did;
928
929     if (new_mname) {
930         /* free uname if it's not the same as mname */
931         if (dir->d_m_name != dir->d_u_name)
932             bdestroy(dir->d_u_name);
933
934         if (new_uname == NULL)
935             new_uname = new_mname;
936
937         /* assign new name */
938         if ((bassigncstr(dir->d_m_name, new_mname)) != BSTR_OK) {
939             LOG(log_error, logtype_afpd, "dir_modify: bassigncstr: %s", strerror(errno) );
940             return -1;
941         }
942
943         if (new_mname == new_uname || (strcmp(new_mname, new_uname) == 0)) {
944             dir->d_u_name = dir->d_m_name;
945         } else {
946             if ((dir->d_u_name = bfromcstr(new_uname)) == NULL) {
947                 LOG(log_error, logtype_afpd, "renamedir: bassigncstr: %s", strerror(errno) );
948                 return -1;
949             }
950         }
951     }
952
953     if (pdir_fullpath) {
954         if (bassign(dir->d_fullpath, pdir_fullpath) != BSTR_OK)
955             return -1;
956         if (bcatcstr(dir->d_fullpath, "/") != BSTR_OK)
957             return -1;
958         if (bcatcstr(dir->d_fullpath, new_uname) != BSTR_OK)
959             return -1;
960     }
961
962     if (dir->d_m_name_ucs2)
963         free(dir->d_m_name_ucs2);
964     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))
965         dir->d_m_name_ucs2 = NULL;
966
967     /* Re-add it to the cache */
968     if ((dircache_add(dir)) != 0) {
969         dircache_dump();
970         AFP_PANIC("dir_modify");
971     }
972
973     return ret;
974 }
975
976 /*!
977  * @brief Resolve a catalog node name path
978  *
979  * 1. Evaluate path type
980  * 2. Move to start dir, if we cant, it might eg because of EACCES, build
981  *    path from dirname, so eg getdirparams has sth it can chew on. curdir
982  *    is dir parent then. All this is done in path_from_dir().
983  * 3. Parse next cnode name in path, cases:
984  * 4.   single "\0" -> do nothing
985  * 5.   two or more consecutive "\0" -> chdir("..") one or more times
986  * 6.   cnode name -> copy it to path.m_name
987  * 7. Get unix name from mac name
988  * 8. Special handling of request with did 1
989  * 9. stat the cnode name
990  * 10. If it's not there, it's probably an afp_createfile|dir,
991  *     return with curdir = dir parent, struct path = dirname
992  * 11. If it's there and it's a file, it must should be the last element of the requested
993  *     path. Return with curdir = cnode name parent dir, struct path = filename
994  * 12. Treat symlinks like files, dont follow them
995  * 13. If it's a dir:
996  * 14. Search the dircache for it
997  * 15. If it's not in the cache, create a struct dir for it and add it to the cache
998  * 16. chdir into the dir and
999  * 17. set m_name to the mac equivalent of "."
1000  * 18. goto 3
1001  */
1002 struct path *cname(struct vol *vol, struct dir *dir, char **cpath)
1003 {
1004     static char        path[ MAXPATHLEN + 1];
1005     static struct path ret;
1006
1007     struct dir  *cdir;
1008     char        *data, *p;
1009     int         len;
1010     u_int32_t   hint;
1011     u_int16_t   len16;
1012     int         size = 0;
1013     int         toUTF8 = 0;
1014
1015     LOG(log_maxdebug, logtype_afpd, "came('%s'): {start}", cfrombstring(dir->d_fullpath));
1016
1017     data = *cpath;
1018     afp_errno = AFPERR_NOOBJ;
1019     memset(&ret, 0, sizeof(ret));
1020
1021     switch (ret.m_type = *data) { /* 1 */
1022     case 2:
1023         data++;
1024         len = (unsigned char) *data++;
1025         size = 2;
1026         if (afp_version >= 30) {
1027             ret.m_type = 3;
1028             toUTF8 = 1;
1029         }
1030         break;
1031     case 3:
1032         if (afp_version >= 30) {
1033             data++;
1034             memcpy(&hint, data, sizeof(hint));
1035             hint = ntohl(hint);
1036             data += sizeof(hint);
1037
1038             memcpy(&len16, data, sizeof(len16));
1039             len = ntohs(len16);
1040             data += 2;
1041             size = 7;
1042             break;
1043         }
1044         /* else it's an error */
1045     default:
1046         afp_errno = AFPERR_PARAM;
1047         return( NULL );
1048     }
1049     *cpath += len + size;
1050
1051     path[0] = 0;
1052     ret.m_name = path;
1053
1054     if (movecwd(vol, dir) < 0 ) {
1055         LOG(log_debug, logtype_afpd, "cname(did:%u): failed to chdir to '%s'",
1056             ntohl(dir->d_did), cfrombstring(dir->d_fullpath));
1057         if (len == 0)
1058             return path_from_dir(vol, dir, &ret);
1059         else
1060             return NULL;
1061     }
1062
1063     while (len) {         /* 3 */
1064         if (*data == 0) { /* 4 or 5 */
1065             data++;
1066             len--;
1067             while (len > 0 && *data == 0) { /* 5 */
1068                 /* chdir to parrent dir */
1069                 if ((dir = dirlookup(vol, dir->d_pdid)) == NULL)
1070                     return NULL;
1071                 if (movecwd( vol, dir ) < 0 ) {
1072                     dir_remove(vol, dir);
1073                     return NULL;
1074                 }
1075                 data++;
1076                 len--;
1077             }
1078             continue;
1079         }
1080
1081         /* 6*/
1082         for ( p = path; *data != 0 && len > 0; len-- ) {
1083             *p++ = *data++;
1084             if (p > &path[ MAXPATHLEN]) {
1085                 afp_errno = AFPERR_PARAM;
1086                 return NULL;
1087             }
1088         }
1089         *p = 0;            /* Terminate string */
1090         ret.u_name = NULL;
1091
1092         if (cname_mtouname(vol, dir, &ret, toUTF8) != 0) { /* 7 */
1093             LOG(log_error, logtype_afpd, "cname('%s'): error from cname_mtouname", path);
1094             return NULL;
1095         }
1096
1097         LOG(log_maxdebug, logtype_afpd, "came('%s'): {node: '%s}", cfrombstring(dir->d_fullpath), ret.u_name);
1098
1099         /* Prevent access to our special folders like .AppleDouble */
1100         if (check_name(vol, ret.u_name)) {
1101             /* the name is illegal */
1102             LOG(log_info, logtype_afpd, "cname: illegal path: '%s'", ret.u_name);
1103             afp_errno = AFPERR_PARAM;
1104             return NULL;
1105         }
1106
1107         if (dir->d_did == DIRDID_ROOT_PARENT) { /* 8 */
1108             /*
1109              * Special case: CNID 1
1110              * root parent (did 1) has one child: the volume. Requests for did=1 with
1111              * some <name> must check against the volume name.
1112              */
1113             if ((strcmp(cfrombstring(vol->v_root->d_m_name), ret.m_name)) == 0)
1114                 cdir = vol->v_root;
1115             else
1116                 return NULL;
1117         } else {
1118             /*
1119              * CNID != 1, eg. most of the times we take this way.
1120              * Now check if current path-part is a file or dir:
1121              * o if it's dir we have to step into it
1122              * o if it's a file we expect it to be the last part of the requested path
1123              *   and thus call continue which should terminate the while loop because
1124              *   len = 0. Ok?
1125              */
1126             if (of_stat(&ret) != 0) { /* 9 */
1127                 /*
1128                  * ret.u_name doesn't exist, might be afp_createfile|dir
1129                  * that means it should have been the last part
1130                  */
1131                 if (len > 0) {
1132                     /* it wasn't the last part, so we have a bogus path request */
1133                     afp_errno = AFPERR_NOOBJ;
1134                     return NULL;
1135                 }
1136                 /*
1137                  * this will terminate clean in while (1) because len == 0,
1138                  * probably afp_createfile|dir
1139                  */
1140                 LOG(log_maxdebug, logtype_afpd, "came('%s'): {leave-cnode ENOENT (possile create request): '%s'}", cfrombstring(dir->d_fullpath), ret.u_name);
1141                 continue; /* 10 */
1142             }
1143
1144             switch (ret.st.st_mode & S_IFMT) {
1145             case S_IFREG: /* 11 */
1146                 LOG(log_debug, logtype_afpd, "came('%s'): {file: '%s'}", cfrombstring(dir->d_fullpath), ret.u_name);
1147                 if (len > 0) {
1148                     /* it wasn't the last part, so we have a bogus path request */
1149                     afp_errno = AFPERR_PARAM;
1150                     return NULL;
1151                 }
1152                 continue; /* continues while loop */
1153             case S_IFLNK: /* 12 */
1154                 LOG(log_debug, logtype_afpd, "came('%s'): {link: '%s'}", cfrombstring(dir->d_fullpath), ret.u_name);
1155                 if (len > 0) {
1156                     LOG(log_warning, logtype_afpd, "came('%s'): {symlinked dir: '%s'}", cfrombstring(dir->d_fullpath), ret.u_name);
1157                     afp_errno = AFPERR_PARAM;
1158                     return NULL;
1159                 }
1160                 continue; /* continues while loop */
1161             case S_IFDIR: /* 13 */
1162                 break;
1163             default:
1164                 LOG(log_info, logtype_afpd, "cname: special file: '%s'", ret.u_name);
1165                 afp_errno = AFPERR_NODIR;
1166                 return NULL;
1167             }
1168
1169             /* Search the cache */
1170             int unamelen = strlen(ret.u_name);
1171             cdir = dircache_search_by_name(vol, dir, ret.u_name, unamelen); /* 14 */
1172             if (cdir == NULL) {
1173                 /* Not in cache, create one */
1174                 if ((cdir = dir_add(vol, dir, &ret, unamelen)) == NULL) { /* 15 */
1175                     LOG(log_error, logtype_afpd, "cname(did:%u, name:'%s', cwd:'%s'): failed to add dir",
1176                         ntohl(dir->d_did), ret.u_name, getcwdpath());
1177                     return NULL;
1178                 }
1179             }
1180         } /* if/else cnid==1 */
1181
1182         /* Now chdir to the evaluated dir */
1183         if (movecwd( vol, cdir ) < 0 ) { /* 16 */
1184             LOG(log_debug, logtype_afpd, "cname(cwd:'%s'): failed to chdir to new subdir '%s': %s",
1185                 cfrombstring(curdir->d_fullpath), cfrombstring(cdir->d_fullpath), strerror(errno));
1186             if (len == 0)
1187                 return path_from_dir(vol, cdir, &ret);
1188             else
1189                 return NULL;
1190         }
1191         dir = cdir;
1192         ret.m_name[0] = 0;      /* 17, so we later know last token was a dir */
1193     } /* while (len) */
1194
1195     if (curdir->d_did == DIRDID_ROOT_PARENT) {
1196         afp_errno = AFPERR_DID1;
1197         return NULL;
1198     }
1199
1200     if (ret.m_name[0] == 0) {
1201         /* Last part was a dir */
1202         ret.u_name = mtoupath(vol, ret.m_name, 0, 1); /* Force "." into a useable static buffer */
1203         ret.d_dir = dir;
1204     }
1205
1206     LOG(log_debug, logtype_afpd, "came('%s') {end: curdir:'%s', path:'%s'}",
1207         cfrombstring(dir->d_fullpath),
1208         cfrombstring(curdir->d_fullpath),
1209         ret.u_name);
1210
1211     return &ret;
1212 }
1213
1214 /*
1215  * @brief chdir() to dir
1216  *
1217  * @param vol   (r) pointer to struct vol
1218  * @param dir   (r) pointer to struct dir
1219  *
1220  * @returns 0 on success, -1 on error with afp_errno set appropiately
1221  */
1222 int movecwd(const struct vol *vol, struct dir *dir)
1223 {
1224     int ret;
1225
1226     AFP_ASSERT(vol);
1227     AFP_ASSERT(dir);
1228
1229     LOG(log_maxdebug, logtype_afpd, "movecwd(curdir:'%s', cwd:'%s')",
1230         cfrombstring(curdir->d_fullpath), getcwdpath());
1231
1232     if ( dir == curdir)
1233         return( 0 );
1234     if (dir->d_did == DIRDID_ROOT_PARENT) {
1235         curdir = &rootParent;
1236         return 0;
1237     }
1238
1239     LOG(log_debug, logtype_afpd, "movecwd(did:%u, '%s')", ntohl(dir->d_did), cfrombstring(dir->d_fullpath));
1240
1241     if ((ret = lchdir(cfrombstring(dir->d_fullpath))) != 0 ) {
1242         LOG(log_debug, logtype_afpd, "movecwd('%s'): ret: %u, %s",
1243             cfrombstring(dir->d_fullpath), ret, strerror(errno));
1244         if (ret == 1) {
1245             /* p is a symlink or getcwd failed */
1246             afp_errno = AFPERR_BADTYPE;
1247
1248             if (chdir(vol->v_path ) < 0) {
1249                 LOG(log_error, logtype_afpd, "can't chdir back'%s': %s", vol->v_path, strerror(errno));
1250                 /* XXX what do we do here? */
1251             }
1252             curdir = vol->v_root;
1253             return -1;
1254         }
1255
1256         switch (errno) {
1257         case EACCES:
1258         case EPERM:
1259             afp_errno = AFPERR_ACCESS;
1260             break;
1261         default:
1262             afp_errno = AFPERR_NOOBJ;
1263         }
1264         return( -1 );
1265     }
1266
1267     curdir = dir;
1268     return( 0 );
1269 }
1270
1271 /*
1272  * We can't use unix file's perm to support Apple's inherited protection modes.
1273  * If we aren't the file's owner we can't change its perms when moving it and smb
1274  * nfs,... don't even try.
1275  */
1276 #define AFP_CHECK_ACCESS
1277
1278 int check_access(char *path, int mode)
1279 {
1280 #ifdef AFP_CHECK_ACCESS
1281     struct maccess ma;
1282     char *p;
1283
1284     p = ad_dir(path);
1285     if (!p)
1286         return -1;
1287
1288     accessmode(p, &ma, curdir, NULL);
1289     if ((mode & OPENACC_WR) && !(ma.ma_user & AR_UWRITE))
1290         return -1;
1291     if ((mode & OPENACC_RD) && !(ma.ma_user & AR_UREAD))
1292         return -1;
1293 #endif
1294     return 0;
1295 }
1296
1297 /* --------------------- */
1298 int file_access(struct path *path, int mode)
1299 {
1300     struct maccess ma;
1301
1302     accessmode(path->u_name, &ma, curdir, &path->st);
1303     if ((mode & OPENACC_WR) && !(ma.ma_user & AR_UWRITE))
1304         return -1;
1305     if ((mode & OPENACC_RD) && !(ma.ma_user & AR_UREAD))
1306         return -1;
1307     return 0;
1308
1309 }
1310
1311 /* --------------------- */
1312 void setdiroffcnt(struct dir *dir, struct stat *st,  u_int32_t count)
1313 {
1314     dir->offcnt = count;
1315     dir->ctime = st->st_ctime;
1316     dir->d_flags &= ~DIRF_CNID;
1317 }
1318
1319
1320 /* ---------------------
1321  * is our cached also for reenumerate id?
1322  */
1323 int dirreenumerate(struct dir *dir, struct stat *st)
1324 {
1325     return st->st_ctime == dir->ctime && (dir->d_flags & DIRF_CNID);
1326 }
1327
1328 /* ------------------------------
1329    (".", curdir)
1330    (name, dir) with curdir:name == dir, from afp_enumerate
1331 */
1332
1333 int getdirparams(const struct vol *vol,
1334                  u_int16_t bitmap, struct path *s_path,
1335                  struct dir *dir,
1336                  char *buf, size_t *buflen )
1337 {
1338     struct maccess  ma;
1339     struct adouble  ad;
1340     char        *data, *l_nameoff = NULL, *utf_nameoff = NULL;
1341     int         bit = 0, isad = 0;
1342     u_int32_t           aint;
1343     u_int16_t       ashort;
1344     int                 ret;
1345     u_int32_t           utf8 = 0;
1346     cnid_t              pdid;
1347     struct stat *st = &s_path->st;
1348     char *upath = s_path->u_name;
1349
1350     if ((bitmap & ((1 << DIRPBIT_ATTR)  |
1351                    (1 << DIRPBIT_CDATE) |
1352                    (1 << DIRPBIT_MDATE) |
1353                    (1 << DIRPBIT_BDATE) |
1354                    (1 << DIRPBIT_FINFO)))) {
1355
1356         ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1357         if ( !ad_metadata( upath, ADFLAGS_CREATE|ADFLAGS_DIR, &ad) ) {
1358             isad = 1;
1359             if (ad.ad_md->adf_flags & O_CREAT) {
1360                 /* We just created it */
1361                 ad_setname(&ad, s_path->m_name);
1362                 ad_setid( &ad,
1363                           s_path->st.st_dev,
1364                           s_path->st.st_ino,
1365                           dir->d_did,
1366                           dir->d_pdid,
1367                           vol->v_stamp);
1368                 ad_flush( &ad);
1369             }
1370         }
1371     }
1372
1373     pdid = dir->d_pdid;
1374
1375     data = buf;
1376     while ( bitmap != 0 ) {
1377         while (( bitmap & 1 ) == 0 ) {
1378             bitmap = bitmap>>1;
1379             bit++;
1380         }
1381
1382         switch ( bit ) {
1383         case DIRPBIT_ATTR :
1384             if ( isad ) {
1385                 ad_getattr(&ad, &ashort);
1386             } else if (invisible_dots(vol, cfrombstring(dir->d_u_name))) {
1387                 ashort = htons(ATTRBIT_INVISIBLE);
1388             } else
1389                 ashort = 0;
1390             ashort |= htons(ATTRBIT_SHARED);
1391             memcpy( data, &ashort, sizeof( ashort ));
1392             data += sizeof( ashort );
1393             break;
1394
1395         case DIRPBIT_PDID :
1396             memcpy( data, &pdid, sizeof( pdid ));
1397             data += sizeof( pdid );
1398             LOG(log_debug, logtype_afpd, "metadata('%s'):     Parent DID: %u",
1399                 s_path->u_name, ntohl(pdid));
1400             break;
1401
1402         case DIRPBIT_CDATE :
1403             if (!isad || (ad_getdate(&ad, AD_DATE_CREATE, &aint) < 0))
1404                 aint = AD_DATE_FROM_UNIX(st->st_mtime);
1405             memcpy( data, &aint, sizeof( aint ));
1406             data += sizeof( aint );
1407             break;
1408
1409         case DIRPBIT_MDATE :
1410             aint = AD_DATE_FROM_UNIX(st->st_mtime);
1411             memcpy( data, &aint, sizeof( aint ));
1412             data += sizeof( aint );
1413             break;
1414
1415         case DIRPBIT_BDATE :
1416             if (!isad || (ad_getdate(&ad, AD_DATE_BACKUP, &aint) < 0))
1417                 aint = AD_DATE_START;
1418             memcpy( data, &aint, sizeof( aint ));
1419             data += sizeof( aint );
1420             break;
1421
1422         case DIRPBIT_FINFO :
1423             if ( isad ) {
1424                 memcpy( data, ad_entry( &ad, ADEID_FINDERI ), 32 );
1425             } else { /* no appledouble */
1426                 memset( data, 0, 32 );
1427                 /* set default view -- this also gets done in ad_open() */
1428                 ashort = htons(FINDERINFO_CLOSEDVIEW);
1429                 memcpy(data + FINDERINFO_FRVIEWOFF, &ashort, sizeof(ashort));
1430
1431                 /* dot files are by default visible */
1432                 if (invisible_dots(vol, cfrombstring(dir->d_u_name))) {
1433                     ashort = htons(FINDERINFO_INVISIBLE);
1434                     memcpy(data + FINDERINFO_FRFLAGOFF, &ashort, sizeof(ashort));
1435                 }
1436             }
1437             data += 32;
1438             break;
1439
1440         case DIRPBIT_LNAME :
1441             if (dir->d_m_name) /* root of parent can have a null name */
1442                 l_nameoff = data;
1443             else
1444                 memset(data, 0, sizeof(u_int16_t));
1445             data += sizeof( u_int16_t );
1446             break;
1447
1448         case DIRPBIT_SNAME :
1449             memset(data, 0, sizeof(u_int16_t));
1450             data += sizeof( u_int16_t );
1451             break;
1452
1453         case DIRPBIT_DID :
1454             memcpy( data, &dir->d_did, sizeof( aint ));
1455             data += sizeof( aint );
1456             LOG(log_debug, logtype_afpd, "metadata('%s'):            DID: %u",
1457                 s_path->u_name, ntohl(dir->d_did));
1458             break;
1459
1460         case DIRPBIT_OFFCNT :
1461             ashort = 0;
1462             /* this needs to handle current directory access rights */
1463             if (diroffcnt(dir, st)) {
1464                 ashort = (dir->offcnt > 0xffff)?0xffff:dir->offcnt;
1465             }
1466             else if ((ret = for_each_dirent(vol, upath, NULL,NULL)) >= 0) {
1467                 setdiroffcnt(dir, st,  ret);
1468                 ashort = (dir->offcnt > 0xffff)?0xffff:dir->offcnt;
1469             }
1470             ashort = htons( ashort );
1471             memcpy( data, &ashort, sizeof( ashort ));
1472             data += sizeof( ashort );
1473             break;
1474
1475         case DIRPBIT_UID :
1476             aint = htonl(st->st_uid);
1477             memcpy( data, &aint, sizeof( aint ));
1478             data += sizeof( aint );
1479             break;
1480
1481         case DIRPBIT_GID :
1482             aint = htonl(st->st_gid);
1483             memcpy( data, &aint, sizeof( aint ));
1484             data += sizeof( aint );
1485             break;
1486
1487         case DIRPBIT_ACCESS :
1488             accessmode( upath, &ma, dir , st);
1489
1490             *data++ = ma.ma_user;
1491             *data++ = ma.ma_world;
1492             *data++ = ma.ma_group;
1493             *data++ = ma.ma_owner;
1494             break;
1495
1496             /* Client has requested the ProDOS information block.
1497                Just pass back the same basic block for all
1498                directories. <shirsch@ibm.net> */
1499         case DIRPBIT_PDINFO :
1500             if (afp_version >= 30) { /* UTF8 name */
1501                 utf8 = kTextEncodingUTF8;
1502                 if (dir->d_m_name) /* root of parent can have a null name */
1503                     utf_nameoff = data;
1504                 else
1505                     memset(data, 0, sizeof(u_int16_t));
1506                 data += sizeof( u_int16_t );
1507                 aint = 0;
1508                 memcpy(data, &aint, sizeof( aint ));
1509                 data += sizeof( aint );
1510             }
1511             else { /* ProDOS Info Block */
1512                 *data++ = 0x0f;
1513                 *data++ = 0;
1514                 ashort = htons( 0x0200 );
1515                 memcpy( data, &ashort, sizeof( ashort ));
1516                 data += sizeof( ashort );
1517                 memset( data, 0, sizeof( ashort ));
1518                 data += sizeof( ashort );
1519             }
1520             break;
1521
1522         case DIRPBIT_UNIXPR :
1523             aint = htonl(st->st_uid);
1524             memcpy( data, &aint, sizeof( aint ));
1525             data += sizeof( aint );
1526             aint = htonl(st->st_gid);
1527             memcpy( data, &aint, sizeof( aint ));
1528             data += sizeof( aint );
1529
1530             aint = st->st_mode;
1531             aint = htonl ( aint & ~S_ISGID );  /* Remove SGID, OSX doesn't like it ... */
1532             memcpy( data, &aint, sizeof( aint ));
1533             data += sizeof( aint );
1534
1535             accessmode( upath, &ma, dir , st);
1536
1537             *data++ = ma.ma_user;
1538             *data++ = ma.ma_world;
1539             *data++ = ma.ma_group;
1540             *data++ = ma.ma_owner;
1541             break;
1542
1543         default :
1544             if ( isad ) {
1545                 ad_close_metadata( &ad );
1546             }
1547             return( AFPERR_BITMAP );
1548         }
1549         bitmap = bitmap>>1;
1550         bit++;
1551     }
1552     if ( l_nameoff ) {
1553         ashort = htons( data - buf );
1554         memcpy( l_nameoff, &ashort, sizeof( ashort ));
1555         data = set_name(vol, data, pdid, cfrombstring(dir->d_m_name), dir->d_did, 0);
1556     }
1557     if ( utf_nameoff ) {
1558         ashort = htons( data - buf );
1559         memcpy( utf_nameoff, &ashort, sizeof( ashort ));
1560         data = set_name(vol, data, pdid, cfrombstring(dir->d_m_name), dir->d_did, utf8);
1561     }
1562     if ( isad ) {
1563         ad_close_metadata( &ad );
1564     }
1565     *buflen = data - buf;
1566     return( AFP_OK );
1567 }
1568
1569 /* ----------------------------- */
1570 int path_error(struct path *path, int error)
1571 {
1572 /* - a dir with access error
1573  * - no error it's a file
1574  * - file not found
1575  */
1576     if (path_isadir(path))
1577         return afp_errno;
1578     if (path->st_valid && path->st_errno)
1579         return error;
1580     return AFPERR_BADTYPE ;
1581 }
1582
1583 /* ----------------------------- */
1584 int afp_setdirparams(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
1585 {
1586     struct vol  *vol;
1587     struct dir  *dir;
1588     struct path *path;
1589     u_int16_t   vid, bitmap;
1590     u_int32_t   did;
1591     int     rc;
1592
1593     *rbuflen = 0;
1594     ibuf += 2;
1595     memcpy( &vid, ibuf, sizeof( vid ));
1596     ibuf += sizeof( vid );
1597
1598     if (NULL == ( vol = getvolbyvid( vid )) ) {
1599         return( AFPERR_PARAM );
1600     }
1601
1602     if (vol->v_flags & AFPVOL_RO)
1603         return AFPERR_VLOCK;
1604
1605     memcpy( &did, ibuf, sizeof( did ));
1606     ibuf += sizeof( int );
1607
1608     if (NULL == ( dir = dirlookup( vol, did )) ) {
1609         return afp_errno;
1610     }
1611
1612     memcpy( &bitmap, ibuf, sizeof( bitmap ));
1613     bitmap = ntohs( bitmap );
1614     ibuf += sizeof( bitmap );
1615
1616     if (NULL == ( path = cname( vol, dir, &ibuf )) ) {
1617         return get_afp_errno(AFPERR_NOOBJ);
1618     }
1619
1620     if ( *path->m_name != '\0' ) {
1621         rc = path_error(path, AFPERR_NOOBJ);
1622         /* maybe we are trying to set perms back */
1623         if (rc != AFPERR_ACCESS)
1624             return rc;
1625     }
1626
1627     /*
1628      * If ibuf is odd, make it even.
1629      */
1630     if ((u_long)ibuf & 1 ) {
1631         ibuf++;
1632     }
1633
1634     if (AFP_OK == ( rc = setdirparams(vol, path, bitmap, ibuf )) ) {
1635         setvoltime(obj, vol );
1636     }
1637     return( rc );
1638 }
1639
1640 /*
1641  * cf AFP3.0.pdf page 244 for change_mdate and change_parent_mdate logic
1642  *
1643  * assume path == '\0' eg. it's a directory in canonical form
1644  */
1645 int setdirparams(struct vol *vol, struct path *path, u_int16_t d_bitmap, char *buf )
1646 {
1647     struct maccess  ma;
1648     struct adouble  ad;
1649     struct utimbuf      ut;
1650     struct timeval      tv;
1651
1652     char                *upath;
1653     struct dir          *dir;
1654     int         bit, isad = 1;
1655     int                 cdate, bdate;
1656     int                 owner, group;
1657     u_int16_t       ashort, bshort, oshort;
1658     int                 err = AFP_OK;
1659     int                 change_mdate = 0;
1660     int                 change_parent_mdate = 0;
1661     int                 newdate = 0;
1662     u_int16_t           bitmap = d_bitmap;
1663     u_char              finder_buf[32];
1664     u_int32_t       upriv;
1665     mode_t              mpriv = 0;
1666     u_int16_t           upriv_bit = 0;
1667
1668     bit = 0;
1669     upath = path->u_name;
1670     dir   = path->d_dir;
1671     while ( bitmap != 0 ) {
1672         while (( bitmap & 1 ) == 0 ) {
1673             bitmap = bitmap>>1;
1674             bit++;
1675         }
1676
1677         switch( bit ) {
1678         case DIRPBIT_ATTR :
1679             change_mdate = 1;
1680             memcpy( &ashort, buf, sizeof( ashort ));
1681             buf += sizeof( ashort );
1682             break;
1683         case DIRPBIT_CDATE :
1684             change_mdate = 1;
1685             memcpy(&cdate, buf, sizeof(cdate));
1686             buf += sizeof( cdate );
1687             break;
1688         case DIRPBIT_MDATE :
1689             memcpy(&newdate, buf, sizeof(newdate));
1690             buf += sizeof( newdate );
1691             break;
1692         case DIRPBIT_BDATE :
1693             change_mdate = 1;
1694             memcpy(&bdate, buf, sizeof(bdate));
1695             buf += sizeof( bdate );
1696             break;
1697         case DIRPBIT_FINFO :
1698             change_mdate = 1;
1699             memcpy( finder_buf, buf, 32 );
1700             buf += 32;
1701             break;
1702         case DIRPBIT_UID :  /* What kind of loser mounts as root? */
1703             change_parent_mdate = 1;
1704             memcpy( &owner, buf, sizeof(owner));
1705             buf += sizeof( owner );
1706             break;
1707         case DIRPBIT_GID :
1708             change_parent_mdate = 1;
1709             memcpy( &group, buf, sizeof( group ));
1710             buf += sizeof( group );
1711             break;
1712         case DIRPBIT_ACCESS :
1713             change_mdate = 1;
1714             change_parent_mdate = 1;
1715             ma.ma_user = *buf++;
1716             ma.ma_world = *buf++;
1717             ma.ma_group = *buf++;
1718             ma.ma_owner = *buf++;
1719             mpriv = mtoumode( &ma ) | vol->v_dperm;
1720             if (dir_rx_set(mpriv) && setdirmode( vol, upath, mpriv) < 0 ) {
1721                 err = set_dir_errors(path, "setdirmode", errno);
1722                 bitmap = 0;
1723             }
1724             break;
1725             /* Ignore what the client thinks we should do to the
1726                ProDOS information block.  Skip over the data and
1727                report nothing amiss. <shirsch@ibm.net> */
1728         case DIRPBIT_PDINFO :
1729             if (afp_version < 30) {
1730                 buf += 6;
1731             }
1732             else {
1733                 err = AFPERR_BITMAP;
1734                 bitmap = 0;
1735             }
1736             break;
1737         case DIRPBIT_UNIXPR :
1738             if (vol_unix_priv(vol)) {
1739                 memcpy( &owner, buf, sizeof(owner)); /* FIXME need to change owner too? */
1740                 buf += sizeof( owner );
1741                 memcpy( &group, buf, sizeof( group ));
1742                 buf += sizeof( group );
1743
1744                 change_mdate = 1;
1745                 change_parent_mdate = 1;
1746                 memcpy( &upriv, buf, sizeof( upriv ));
1747                 buf += sizeof( upriv );
1748                 upriv = ntohl (upriv) | vol->v_dperm;
1749                 if (dir_rx_set(upriv)) {
1750                     /* maybe we are trying to set perms back */
1751                     if ( setdirunixmode(vol, upath, upriv) < 0 ) {
1752                         bitmap = 0;
1753                         err = set_dir_errors(path, "setdirunixmode", errno);
1754                     }
1755                 }
1756                 else {
1757                     /* do it later */
1758                     upriv_bit = 1;
1759                 }
1760                 break;
1761             }
1762             /* fall through */
1763         default :
1764             err = AFPERR_BITMAP;
1765             bitmap = 0;
1766             break;
1767         }
1768
1769         bitmap = bitmap>>1;
1770         bit++;
1771     }
1772     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1773
1774     if (ad_open_metadata( upath, ADFLAGS_DIR, O_CREAT, &ad) < 0) {
1775         /*
1776          * Check to see what we're trying to set.  If it's anything
1777          * but ACCESS, UID, or GID, give an error.  If it's any of those
1778          * three, we don't need the ad to be open, so just continue.
1779          *
1780          * note: we also don't need to worry about mdate. also, be quiet
1781          *       if we're using the noadouble option.
1782          */
1783         if (!vol_noadouble(vol) && (d_bitmap &
1784                                     ~((1<<DIRPBIT_ACCESS)|(1<<DIRPBIT_UNIXPR)|
1785                                       (1<<DIRPBIT_UID)|(1<<DIRPBIT_GID)|
1786                                       (1<<DIRPBIT_MDATE)|(1<<DIRPBIT_PDINFO)))) {
1787             return AFPERR_ACCESS;
1788         }
1789
1790         isad = 0;
1791     } else {
1792         /*
1793          * Check to see if a create was necessary. If it was, we'll want
1794          * to set our name, etc.
1795          */
1796         if ( (ad_get_HF_flags( &ad ) & O_CREAT)) {
1797             ad_setname(&ad, cfrombstring(curdir->d_m_name));
1798         }
1799     }
1800
1801     bit = 0;
1802     bitmap = d_bitmap;
1803     while ( bitmap != 0 ) {
1804         while (( bitmap & 1 ) == 0 ) {
1805             bitmap = bitmap>>1;
1806             bit++;
1807         }
1808
1809         switch( bit ) {
1810         case DIRPBIT_ATTR :
1811             if (isad) {
1812                 ad_getattr(&ad, &bshort);
1813                 oshort = bshort;
1814                 if ( ntohs( ashort ) & ATTRBIT_SETCLR ) {
1815                     bshort |= htons( ntohs( ashort ) & ~ATTRBIT_SETCLR );
1816                 } else {
1817                     bshort &= ~ashort;
1818                 }
1819                 if ((bshort & htons(ATTRBIT_INVISIBLE)) != (oshort & htons(ATTRBIT_INVISIBLE)))
1820                     change_parent_mdate = 1;
1821                 ad_setattr(&ad, bshort);
1822             }
1823             break;
1824         case DIRPBIT_CDATE :
1825             if (isad) {
1826                 ad_setdate(&ad, AD_DATE_CREATE, cdate);
1827             }
1828             break;
1829         case DIRPBIT_MDATE :
1830             break;
1831         case DIRPBIT_BDATE :
1832             if (isad) {
1833                 ad_setdate(&ad, AD_DATE_BACKUP, bdate);
1834             }
1835             break;
1836         case DIRPBIT_FINFO :
1837             if (isad) {
1838                 /* Fixes #2802236 */
1839                 u_int16_t *fflags = (u_int16_t *)(finder_buf + FINDERINFO_FRFLAGOFF);
1840                 *fflags &= htons(~FINDERINFO_ISHARED);
1841                 /* #2802236 end */
1842                 if (  dir->d_did == DIRDID_ROOT ) {
1843                     /*
1844                      * Alright, we admit it, this is *really* sick!
1845                      * The 4 bytes that we don't copy, when we're dealing
1846                      * with the root of a volume, are the directory's
1847                      * location information. This eliminates that annoying
1848                      * behavior one sees when mounting above another mount
1849                      * point.
1850                      */
1851                     memcpy( ad_entry( &ad, ADEID_FINDERI ), finder_buf, 10 );
1852                     memcpy( ad_entry( &ad, ADEID_FINDERI ) + 14, finder_buf + 14, 18 );
1853                 } else {
1854                     memcpy( ad_entry( &ad, ADEID_FINDERI ), finder_buf, 32 );
1855                 }
1856             }
1857             break;
1858         case DIRPBIT_UID :  /* What kind of loser mounts as root? */
1859             if ( (dir->d_did == DIRDID_ROOT) &&
1860                  (setdeskowner( ntohl(owner), -1 ) < 0)) {
1861                 err = set_dir_errors(path, "setdeskowner", errno);
1862                 if (isad && err == AFPERR_PARAM) {
1863                     err = AFP_OK; /* ???*/
1864                 }
1865                 else {
1866                     goto setdirparam_done;
1867                 }
1868             }
1869             if ( setdirowner(vol, upath, ntohl(owner), -1 ) < 0 ) {
1870                 err = set_dir_errors(path, "setdirowner", errno);
1871                 goto setdirparam_done;
1872             }
1873             break;
1874         case DIRPBIT_GID :
1875             if (dir->d_did == DIRDID_ROOT)
1876                 setdeskowner( -1, ntohl(group) );
1877             if ( setdirowner(vol, upath, -1, ntohl(group) ) < 0 ) {
1878                 err = set_dir_errors(path, "setdirowner", errno);
1879                 goto setdirparam_done;
1880             }
1881             break;
1882         case DIRPBIT_ACCESS :
1883             if (dir->d_did == DIRDID_ROOT) {
1884                 setdeskmode(mpriv);
1885                 if (!dir_rx_set(mpriv)) {
1886                     /* we can't remove read and search for owner on volume root */
1887                     err = AFPERR_ACCESS;
1888                     goto setdirparam_done;
1889                 }
1890             }
1891
1892             if (!dir_rx_set(mpriv) && setdirmode( vol, upath, mpriv) < 0 ) {
1893                 err = set_dir_errors(path, "setdirmode", errno);
1894                 goto setdirparam_done;
1895             }
1896             break;
1897         case DIRPBIT_PDINFO :
1898             if (afp_version >= 30) {
1899                 err = AFPERR_BITMAP;
1900                 goto setdirparam_done;
1901             }
1902             break;
1903         case DIRPBIT_UNIXPR :
1904             if (vol_unix_priv(vol)) {
1905                 if (dir->d_did == DIRDID_ROOT) {
1906                     if (!dir_rx_set(upriv)) {
1907                         /* we can't remove read and search for owner on volume root */
1908                         err = AFPERR_ACCESS;
1909                         goto setdirparam_done;
1910                     }
1911                     setdeskowner( -1, ntohl(group) );
1912                     setdeskmode( upriv );
1913                 }
1914                 if ( setdirowner(vol, upath, -1, ntohl(group) ) < 0 ) {
1915                     err = set_dir_errors(path, "setdirowner", errno);
1916                     goto setdirparam_done;
1917                 }
1918
1919                 if ( upriv_bit && setdirunixmode(vol, upath, upriv) < 0 ) {
1920                     err = set_dir_errors(path, "setdirunixmode", errno);
1921                     goto setdirparam_done;
1922                 }
1923             }
1924             else {
1925                 err = AFPERR_BITMAP;
1926                 goto setdirparam_done;
1927             }
1928             break;
1929         default :
1930             err = AFPERR_BITMAP;
1931             goto setdirparam_done;
1932             break;
1933         }
1934
1935         bitmap = bitmap>>1;
1936         bit++;
1937     }
1938
1939 setdirparam_done:
1940     if (change_mdate && newdate == 0 && gettimeofday(&tv, NULL) == 0) {
1941         newdate = AD_DATE_FROM_UNIX(tv.tv_sec);
1942     }
1943     if (newdate) {
1944         if (isad)
1945             ad_setdate(&ad, AD_DATE_MODIFY, newdate);
1946         ut.actime = ut.modtime = AD_DATE_TO_UNIX(newdate);
1947         utime(upath, &ut);
1948     }
1949
1950     if ( isad ) {
1951         if (path->st_valid && !path->st_errno) {
1952             struct stat *st = &path->st;
1953
1954             if (dir && dir->d_pdid) {
1955                 ad_setid(&ad, st->st_dev, st->st_ino,  dir->d_did, dir->d_pdid, vol->v_stamp);
1956             }
1957         }
1958         ad_flush( &ad);
1959         ad_close_metadata( &ad);
1960     }
1961
1962     if (change_parent_mdate && dir->d_did != DIRDID_ROOT
1963         && gettimeofday(&tv, NULL) == 0) {
1964         if (movecwd(vol, dirlookup(vol, dir->d_pdid)) == 0) {
1965             newdate = AD_DATE_FROM_UNIX(tv.tv_sec);
1966             /* be careful with bitmap because now dir is null */
1967             bitmap = 1<<DIRPBIT_MDATE;
1968             setdirparams(vol, &Cur_Path, bitmap, (char *)&newdate);
1969             /* should we reset curdir ?*/
1970         }
1971     }
1972
1973     return err;
1974 }
1975
1976 int afp_syncdir(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
1977 {
1978 #ifdef HAVE_DIRFD
1979     DIR                  *dp;
1980 #endif
1981     int                  dfd;
1982     struct vol           *vol;
1983     struct dir           *dir;
1984     u_int32_t            did;
1985     u_int16_t            vid;
1986
1987     *rbuflen = 0;
1988     ibuf += 2;
1989
1990     memcpy( &vid, ibuf, sizeof( vid ));
1991     ibuf += sizeof( vid );
1992     if (NULL == (vol = getvolbyvid( vid )) ) {
1993         return( AFPERR_PARAM );
1994     }
1995
1996     memcpy( &did, ibuf, sizeof( did ));
1997     ibuf += sizeof( did );
1998
1999     /*
2000      * Here's the deal:
2001      * if it's CNID 2 our only choice to meet the specs is call sync.
2002      * For any other CNID just sync that dir. To my knowledge the
2003      * intended use of FPSyncDir is to sync the volume so all we're
2004      * ever going to see here is probably CNID 2. Anyway, we' prepared.
2005      */
2006
2007     if ( ntohl(did) == 2 ) {
2008         sync();
2009     } else {
2010         if (NULL == ( dir = dirlookup( vol, did )) ) {
2011             return afp_errno; /* was AFPERR_NOOBJ */
2012         }
2013
2014         if (movecwd( vol, dir ) < 0 )
2015             return ( AFPERR_NOOBJ );
2016
2017         /*
2018          * Assuming only OSens that have dirfd also may require fsyncing directories
2019          * in order to flush metadata e.g. Linux.
2020          */
2021
2022 #ifdef HAVE_DIRFD
2023         if (NULL == ( dp = opendir( "." )) ) {
2024             switch( errno ) {
2025             case ENOENT :
2026                 return( AFPERR_NOOBJ );
2027             case EACCES :
2028                 return( AFPERR_ACCESS );
2029             default :
2030                 return( AFPERR_PARAM );
2031             }
2032         }
2033
2034         LOG(log_debug, logtype_afpd, "afp_syncdir: dir: '%s'", dir->d_u_name);
2035
2036         dfd = dirfd( dp );
2037         if ( fsync ( dfd ) < 0 )
2038             LOG(log_error, logtype_afpd, "afp_syncdir(%s):  %s",
2039                 dir->d_u_name, strerror(errno) );
2040         closedir(dp); /* closes dfd too */
2041 #endif
2042
2043         if ( -1 == (dfd = open(vol->ad_path(".", ADFLAGS_DIR), O_RDWR))) {
2044             switch( errno ) {
2045             case ENOENT:
2046                 return( AFPERR_NOOBJ );
2047             case EACCES:
2048                 return( AFPERR_ACCESS );
2049             default:
2050                 return( AFPERR_PARAM );
2051             }
2052         }
2053
2054         LOG(log_debug, logtype_afpd, "afp_syncdir: ad-file: '%s'",
2055             vol->ad_path(".", ADFLAGS_DIR) );
2056
2057         if ( fsync(dfd) < 0 )
2058             LOG(log_error, logtype_afpd, "afp_syncdir(%s): %s",
2059                 vol->ad_path(cfrombstring(dir->d_u_name), ADFLAGS_DIR), strerror(errno) );
2060         close(dfd);
2061     }
2062
2063     return ( AFP_OK );
2064 }
2065
2066 int afp_createdir(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
2067 {
2068     struct adouble  ad;
2069     struct vol      *vol;
2070     struct dir      *dir;
2071     char        *upath;
2072     struct path         *s_path;
2073     u_int32_t       did;
2074     u_int16_t       vid;
2075     int                 err;
2076
2077     *rbuflen = 0;
2078     ibuf += 2;
2079
2080     memcpy( &vid, ibuf, sizeof( vid ));
2081     ibuf += sizeof( vid );
2082     if (NULL == ( vol = getvolbyvid( vid )) ) {
2083         return( AFPERR_PARAM );
2084     }
2085
2086     if (vol->v_flags & AFPVOL_RO)
2087         return AFPERR_VLOCK;
2088
2089     memcpy( &did, ibuf, sizeof( did ));
2090     ibuf += sizeof( did );
2091     if (NULL == ( dir = dirlookup( vol, did )) ) {
2092         return afp_errno; /* was AFPERR_NOOBJ */
2093     }
2094     /* for concurrent access we need to be sure we are not in the
2095      * folder we want to create...
2096      */
2097     movecwd(vol, dir);
2098
2099     if (NULL == ( s_path = cname( vol, dir, &ibuf )) ) {
2100         return get_afp_errno(AFPERR_PARAM);
2101     }
2102     /* cname was able to move curdir to it! */
2103     if (*s_path->m_name == '\0')
2104         return AFPERR_EXIST;
2105
2106     upath = s_path->u_name;
2107
2108     if (AFP_OK != (err = netatalk_mkdir(vol, upath))) {
2109         return err;
2110     }
2111
2112     if (of_stat(s_path) < 0) {
2113         return AFPERR_MISC;
2114     }
2115
2116     curdir->offcnt++;
2117
2118     if ((dir = dir_add(vol, curdir, s_path, strlen(s_path->u_name))) == NULL) {
2119         return AFPERR_MISC;
2120     }
2121
2122     if ( movecwd( vol, dir ) < 0 ) {
2123         return( AFPERR_PARAM );
2124     }
2125
2126     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
2127     if (ad_open_metadata( ".", ADFLAGS_DIR, O_CREAT, &ad ) < 0)  {
2128         if (vol_noadouble(vol))
2129             goto createdir_done;
2130         return( AFPERR_ACCESS );
2131     }
2132     ad_setname(&ad, s_path->m_name);
2133     ad_setid( &ad, s_path->st.st_dev, s_path->st.st_ino, dir->d_did, did, vol->v_stamp);
2134
2135     ad_flush( &ad);
2136     ad_close_metadata( &ad);
2137
2138 createdir_done:
2139 #ifdef HAVE_ACLS
2140     /* FIXME: are we really inside the created dir? */
2141     addir_inherit_acl(vol);
2142 #endif /* HAVE_ACLS */
2143
2144     memcpy( rbuf, &dir->d_did, sizeof( u_int32_t ));
2145     *rbuflen = sizeof( u_int32_t );
2146     setvoltime(obj, vol );
2147     return( AFP_OK );
2148 }
2149
2150 /*
2151  * dst       new unix filename (not a pathname)
2152  * newname   new mac name
2153  * newparent curdir
2154  * dirfd     -1 means ignore dirfd (or use AT_FDCWD), otherwise src is relative to dirfd
2155  */
2156 int renamedir(const struct vol *vol,
2157               int dirfd,
2158               char *src,
2159               char *dst,
2160               struct dir *dir,
2161               struct dir *newparent,
2162               char *newname)
2163 {
2164     struct adouble  ad;
2165     int             err;
2166
2167     /* existence check moved to afp_moveandrename */
2168     if ( unix_rename(dirfd, src, -1, dst ) < 0 ) {
2169         switch ( errno ) {
2170         case ENOENT :
2171             return( AFPERR_NOOBJ );
2172         case EACCES :
2173             return( AFPERR_ACCESS );
2174         case EROFS:
2175             return AFPERR_VLOCK;
2176         case EINVAL:
2177             /* tried to move directory into a subdirectory of itself */
2178             return AFPERR_CANTMOVE;
2179         case EXDEV:
2180             /* this needs to copy and delete. bleah. that means we have
2181              * to deal with entire directory hierarchies. */
2182             if ((err = copydir(vol, dirfd, src, dst)) < 0) {
2183                 deletedir(-1, dst);
2184                 return err;
2185             }
2186             if ((err = deletedir(dirfd, src)) < 0)
2187                 return err;
2188             break;
2189         default :
2190             return( AFPERR_PARAM );
2191         }
2192     }
2193
2194     vol->vfs->vfs_renamedir(vol, dirfd, src, dst);
2195
2196     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
2197
2198     if (!ad_open_metadata( dst, ADFLAGS_DIR, 0, &ad)) {
2199         ad_setname(&ad, newname);
2200         ad_flush( &ad);
2201         ad_close_metadata( &ad);
2202     }
2203
2204     if (dir_modify(vol, dir, curdir->d_did, 0, newname, dst, curdir->d_fullpath) != 0) {
2205         LOG(log_error, logtype_afpd, "renamedir: fatal error from dir_modify: %s -> %s", src, dst);
2206         return AFPERR_MISC;
2207     }
2208
2209     return( AFP_OK );
2210 }
2211
2212 /* delete an empty directory */
2213 int deletecurdir(struct vol *vol)
2214 {
2215     struct dirent *de;
2216     struct stat st;
2217     struct dir  *fdir;
2218     DIR *dp;
2219     struct adouble  ad;
2220     u_int16_t       ashort;
2221     int err;
2222
2223     if ( dirlookup(vol, curdir->d_pdid) == NULL ) {
2224         return( AFPERR_ACCESS );
2225     }
2226
2227     fdir = curdir;
2228
2229     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
2230     /* we never want to create a resource fork here, we are going to delete it */
2231     if ( ad_metadata( ".", ADFLAGS_DIR, &ad) == 0 ) {
2232
2233         ad_getattr(&ad, &ashort);
2234         ad_close_metadata(&ad);
2235         if ((ashort & htons(ATTRBIT_NODELETE))) {
2236             return  AFPERR_OLOCK;
2237         }
2238     }
2239     err = vol->vfs->vfs_deletecurdir(vol);
2240     if (err) {
2241         return err;
2242     }
2243
2244     /* now get rid of dangling symlinks */
2245     if ((dp = opendir("."))) {
2246         while ((de = readdir(dp))) {
2247             /* skip this and previous directory */
2248             if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, ".."))
2249                 continue;
2250
2251             /* bail if it's not a symlink */
2252             if ((lstat(de->d_name, &st) == 0) && !S_ISLNK(st.st_mode)) {
2253                 closedir(dp);
2254                 return AFPERR_DIRNEMPT;
2255             }
2256
2257             if ((err = netatalk_unlink(de->d_name))) {
2258                 closedir(dp);
2259                 return err;
2260             }
2261         }
2262     }
2263
2264     if ( movecwd(vol, dirlookup(vol, curdir->d_pdid)) < 0 ) {
2265         err = afp_errno;
2266         goto delete_done;
2267     }
2268
2269     err = netatalk_rmdir_all_errors(-1, cfrombstring(fdir->d_u_name));
2270     if ( err ==  AFP_OK || err == AFPERR_NOOBJ) {
2271         cnid_delete(vol->v_cdb, fdir->d_did);
2272         dir_remove( vol, fdir );
2273     }
2274 delete_done:
2275     if (dp) {
2276         /* inode is used as key for cnid.
2277          * Close the descriptor only after cnid_delete
2278          * has been called.
2279          */
2280         closedir(dp);
2281     }
2282     return err;
2283 }
2284
2285 int afp_mapid(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
2286 {
2287     struct passwd   *pw;
2288     struct group    *gr;
2289     char        *name;
2290     u_int32_t           id;
2291     int         len, sfunc;
2292     int         utf8 = 0;
2293
2294     ibuf++;
2295     sfunc = (unsigned char) *ibuf++;
2296     *rbuflen = 0;
2297
2298     if (sfunc >= 3 && sfunc <= 6) {
2299         if (afp_version < 30) {
2300             return( AFPERR_PARAM );
2301         }
2302         utf8 = 1;
2303     }
2304
2305     switch ( sfunc ) {
2306     case 1 :
2307     case 3 :/* unicode */
2308         memcpy( &id, ibuf, sizeof( id ));
2309         id = ntohl(id);
2310         if ( id != 0 ) {
2311             if (( pw = getpwuid( id )) == NULL ) {
2312                 return( AFPERR_NOITEM );
2313             }
2314             len = convert_string_allocate( obj->options.unixcharset, ((!utf8)?obj->options.maccharset:CH_UTF8_MAC),
2315                                            pw->pw_name, -1, &name);
2316         } else {
2317             len = 0;
2318             name = NULL;
2319         }
2320         break;
2321     case 2 :
2322     case 4 : /* unicode */
2323         memcpy( &id, ibuf, sizeof( id ));
2324         id = ntohl(id);
2325         if ( id != 0 ) {
2326             if (NULL == ( gr = (struct group *)getgrgid( id ))) {
2327                 return( AFPERR_NOITEM );
2328             }
2329             len = convert_string_allocate( obj->options.unixcharset, (!utf8)?obj->options.maccharset:CH_UTF8_MAC,
2330                                            gr->gr_name, -1, &name);
2331         } else {
2332             len = 0;
2333             name = NULL;
2334         }
2335         break;
2336 #ifdef HAVE_ACLS
2337     case 5 : /* UUID -> username */
2338     case 6 : /* UUID -> groupname */
2339         if ((afp_version < 32) || !(obj->options.flags & OPTION_UUID ))
2340             return AFPERR_PARAM;
2341         LOG(log_debug, logtype_afpd, "afp_mapid: valid UUID request");
2342         uuidtype_t type;
2343         len = getnamefromuuid( ibuf, &name, &type);
2344         if (len != 0)       /* its a error code, not len */
2345             return AFPERR_NOITEM;
2346         if (type == UUID_USER) {
2347             if (( pw = getpwnam( name )) == NULL )
2348                 return( AFPERR_NOITEM );
2349             LOG(log_debug, logtype_afpd, "afp_mapid: name:%s -> uid:%d", name, pw->pw_uid);
2350             id = htonl(UUID_USER);
2351             memcpy( rbuf, &id, sizeof( id ));
2352             id = htonl( pw->pw_uid);
2353             rbuf += sizeof( id );
2354             memcpy( rbuf, &id, sizeof( id ));
2355             rbuf += sizeof( id );
2356             *rbuflen = 2 * sizeof( id );
2357         } else {        /* type == UUID_GROUP */
2358             if (( gr = getgrnam( name )) == NULL )
2359                 return( AFPERR_NOITEM );
2360             LOG(log_debug, logtype_afpd, "afp_mapid: group:%s -> gid:%d", name, gr->gr_gid);
2361             id = htonl(UUID_GROUP);
2362             memcpy( rbuf, &id, sizeof( id ));
2363             rbuf += sizeof( id );
2364             id = htonl( gr->gr_gid);
2365             memcpy( rbuf, &id, sizeof( id ));
2366             rbuf += sizeof( id );
2367             *rbuflen = 2 * sizeof( id );
2368         }
2369         break;
2370 #endif /* HAVE_ACLS */
2371     default :
2372         return( AFPERR_PARAM );
2373     }
2374
2375     if (name)
2376         len = strlen( name );
2377
2378     if (utf8) {
2379         u_int16_t tp = htons(len);
2380         memcpy(rbuf, &tp, sizeof(tp));
2381         rbuf += sizeof(tp);
2382         *rbuflen += 2;
2383     }
2384     else {
2385         *rbuf++ = len;
2386         *rbuflen += 1;
2387     }
2388     if ( len > 0 ) {
2389         memcpy( rbuf, name, len );
2390     }
2391     *rbuflen += len;
2392     if (name)
2393         free(name);
2394     return( AFP_OK );
2395 }
2396
2397 int afp_mapname(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
2398 {
2399     struct passwd   *pw;
2400     struct group    *gr;
2401     int             len, sfunc;
2402     u_int32_t       id;
2403     u_int16_t       ulen;
2404
2405     ibuf++;
2406     sfunc = (unsigned char) *ibuf++;
2407     *rbuflen = 0;
2408     LOG(log_debug, logtype_afpd, "afp_mapname: sfunc: %d, afp_version: %d", sfunc, afp_version);
2409     switch ( sfunc ) {
2410     case 1 :
2411     case 2 : /* unicode */
2412         if (afp_version < 30) {
2413             return( AFPERR_PARAM );
2414         }
2415         memcpy(&ulen, ibuf, sizeof(ulen));
2416         len = ntohs(ulen);
2417         ibuf += 2;
2418         LOG(log_debug, logtype_afpd, "afp_mapname: alive");
2419         break;
2420     case 3 :
2421     case 4 :
2422         len = (unsigned char) *ibuf++;
2423         break;
2424 #ifdef HAVE_ACLS
2425     case 5 : /* username -> UUID  */
2426     case 6 : /* groupname -> UUID */
2427         if ((afp_version < 32) || !(obj->options.flags & OPTION_UUID ))
2428             return AFPERR_PARAM;
2429         memcpy(&ulen, ibuf, sizeof(ulen));
2430         len = ntohs(ulen);
2431         ibuf += 2;
2432         break;
2433 #endif /* HAVE_ACLS */
2434     default :
2435         return( AFPERR_PARAM );
2436     }
2437
2438     ibuf[ len ] = '\0';
2439
2440     if ( len == 0 )
2441         return AFPERR_PARAM;
2442     else {
2443         switch ( sfunc ) {
2444         case 1 : /* unicode */
2445         case 3 :
2446             if (NULL == ( pw = (struct passwd *)getpwnam( ibuf )) ) {
2447                 return( AFPERR_NOITEM );
2448             }
2449             id = pw->pw_uid;
2450             id = htonl(id);
2451             memcpy( rbuf, &id, sizeof( id ));
2452             *rbuflen = sizeof( id );
2453             break;
2454
2455         case 2 : /* unicode */
2456         case 4 :
2457             LOG(log_debug, logtype_afpd, "afp_mapname: gettgrnam for name: %s",ibuf);
2458             if (NULL == ( gr = (struct group *)getgrnam( ibuf ))) {
2459                 return( AFPERR_NOITEM );
2460             }
2461             id = gr->gr_gid;
2462             LOG(log_debug, logtype_afpd, "afp_mapname: gettgrnam for name: %s -> id: %d",ibuf, id);
2463             id = htonl(id);
2464             memcpy( rbuf, &id, sizeof( id ));
2465             *rbuflen = sizeof( id );
2466             break;
2467 #ifdef HAVE_ACLS
2468         case 5 :        /* username -> UUID */
2469             LOG(log_debug, logtype_afpd, "afp_mapname: name: %s",ibuf);
2470             if (0 != getuuidfromname(ibuf, UUID_USER, rbuf))
2471                 return AFPERR_NOITEM;
2472             *rbuflen = UUID_BINSIZE;
2473             break;
2474         case 6 :        /* groupname -> UUID */
2475             LOG(log_debug, logtype_afpd, "afp_mapname: name: %s",ibuf);
2476             if (0 != getuuidfromname(ibuf, UUID_GROUP, rbuf))
2477                 return AFPERR_NOITEM;
2478             *rbuflen = UUID_BINSIZE;
2479             break;
2480 #endif /* HAVE_ACLS */
2481         }
2482     }
2483     return( AFP_OK );
2484 }
2485
2486 /* ------------------------------------
2487    variable DID support
2488 */
2489 int afp_closedir(AFPObj *obj _U_, char *ibuf _U_, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
2490 {
2491 #if 0
2492     struct vol   *vol;
2493     struct dir   *dir;
2494     u_int16_t    vid;
2495     u_int32_t    did;
2496 #endif /* 0 */
2497
2498     *rbuflen = 0;
2499
2500     /* do nothing as dids are static for the life of the process. */
2501 #if 0
2502     ibuf += 2;
2503
2504     memcpy(&vid,  ibuf, sizeof( vid ));
2505     ibuf += sizeof( vid );
2506     if (( vol = getvolbyvid( vid )) == NULL ) {
2507         return( AFPERR_PARAM );
2508     }
2509
2510     memcpy( &did, ibuf, sizeof( did ));
2511     ibuf += sizeof( did );
2512     if (( dir = dirlookup( vol, did )) == NULL ) {
2513         return( AFPERR_PARAM );
2514     }
2515
2516     /* dir_remove -- deletedid */
2517 #endif /* 0 */
2518
2519     return AFP_OK;
2520 }
2521
2522 /* did creation gets done automatically
2523  * there's a pb again with case but move it to cname
2524  */
2525 int afp_opendir(AFPObj *obj _U_, char *ibuf, size_t ibuflen  _U_, char *rbuf, size_t *rbuflen)
2526 {
2527     struct vol      *vol;
2528     struct dir      *parentdir;
2529     struct path     *path;
2530     u_int32_t       did;
2531     u_int16_t       vid;
2532
2533     *rbuflen = 0;
2534     ibuf += 2;
2535
2536     memcpy(&vid, ibuf, sizeof(vid));
2537     ibuf += sizeof( vid );
2538
2539     if (NULL == ( vol = getvolbyvid( vid )) ) {
2540         return( AFPERR_PARAM );
2541     }
2542
2543     memcpy(&did, ibuf, sizeof(did));
2544     ibuf += sizeof(did);
2545
2546     if (NULL == ( parentdir = dirlookup( vol, did )) ) {
2547         return afp_errno;
2548     }
2549
2550     if (NULL == ( path = cname( vol, parentdir, &ibuf )) ) {
2551         return get_afp_errno(AFPERR_PARAM);
2552     }
2553
2554     if ( *path->m_name != '\0' ) {
2555         return path_error(path, AFPERR_NOOBJ);
2556     }
2557
2558     if ( !path->st_valid && of_stat(path ) < 0 ) {
2559         return( AFPERR_NOOBJ );
2560     }
2561     if ( path->st_errno ) {
2562         return( AFPERR_NOOBJ );
2563     }
2564
2565     memcpy(rbuf, &curdir->d_did, sizeof(curdir->d_did));
2566     *rbuflen = sizeof(curdir->d_did);
2567     return AFP_OK;
2568 }