]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/directory.c
Merge branch findercache
[netatalk.git] / etc / afpd / directory.c
1 /*
2  * $Id: directory.c,v 1.140 2010/03/12 15:16:49 franklahm Exp $
3  *
4  * Copyright (c) 1990,1993 Regents of The University of Michigan.
5  * All Rights Reserved.  See COPYRIGHT.
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif /* HAVE_CONFIG_H */
11
12 #include <string.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <grp.h>
16 #include <pwd.h>
17 #include <sys/param.h>
18 #include <sys/stat.h>
19 #include <errno.h>
20 #include <utime.h>
21 #include <assert.h>
22
23 #include <atalk/adouble.h>
24 #include <atalk/vfs.h>
25 #include <atalk/afp.h>
26 #include <atalk/util.h>
27 #include <atalk/cnid.h>
28 #include <atalk/logger.h>
29 #include <atalk/uuid.h>
30 #include <atalk/unix.h>
31 #include <atalk/bstrlib.h>
32 #include <atalk/bstradd.h>
33
34 #include "directory.h"
35 #include "dircache.h"
36 #include "desktop.h"
37 #include "volume.h"
38 #include "fork.h"
39 #include "file.h"
40 #include "filedir.h"
41 #include "globals.h"
42 #include "unix.h"
43 #include "mangle.h"
44 #include "hash.h"
45
46 #ifdef HAVE_ACLS
47 extern void addir_inherit_acl(const struct vol *vol);
48 #endif
49
50 /*
51  * FIXMEs, loose ends after the dircache rewrite:
52  * o merge dircache_search_by_name and dir_add ??
53  * o case-insensitivity is gone from cname
54  */
55
56
57 /*******************************************************************************************
58  * Globals
59  ******************************************************************************************/
60
61 int         afp_errno;
62 struct dir rootParent  = {
63     NULL, NULL, NULL, NULL,          /* path, d_m_name, d_u_name, d_m_name_ucs2 */
64     NULL, NULL, 0, 0,                /* qidx_node, d_ofork, ctime, d_flags */
65     0, 0, 0, 0                       /* pdid, did, offcnt, d_vid */
66 };
67 struct dir  *curdir = &rootParent;
68 struct path Cur_Path = {
69     0,
70     "",  /* mac name */
71     ".", /* unix name */
72     0,   /* id */
73     NULL,/* struct dir * */
74     0,   /* stat is not set */
75     0,   /* errno */
76     {0} /* struct stat */
77 };
78
79
80 /*******************************************************************************************
81  * Locals
82  ******************************************************************************************/
83
84
85 /* -------------------------
86    appledouble mkdir afp error code.
87 */
88 static int netatalk_mkdir(const struct vol *vol, const char *name)
89 {
90     int ret;
91     struct stat st;
92
93     if (vol->v_flags & AFPVOL_UNIX_PRIV) {
94         if (lstat(".", &st) < 0)
95             return AFPERR_MISC;
96         int mode = (DIRBITS & (~S_ISGID & st.st_mode)) | (0777 & ~vol->v_umask);
97         LOG(log_maxdebug, logtype_afpd, "netatalk_mkdir(\"%s\") {parent mode: %04o, vol umask: %04o}",
98             name, st.st_mode, vol->v_umask);
99
100         ret = mkdir(name, mode);
101     } else {
102         ret = ad_mkdir(name, DIRBITS | 0777);
103     }
104
105     if (ret < 0) {
106         switch ( errno ) {
107         case ENOENT :
108             return( AFPERR_NOOBJ );
109         case EROFS :
110             return( AFPERR_VLOCK );
111         case EPERM:
112         case EACCES :
113             return( AFPERR_ACCESS );
114         case EEXIST :
115             return( AFPERR_EXIST );
116         case ENOSPC :
117         case EDQUOT :
118             return( AFPERR_DFULL );
119         default :
120             return( AFPERR_PARAM );
121         }
122     }
123     return AFP_OK;
124 }
125
126 /* ------------------- */
127 static int deletedir(int dirfd, char *dir)
128 {
129     char path[MAXPATHLEN + 1];
130     DIR *dp;
131     struct dirent   *de;
132     struct stat st;
133     size_t len;
134     int err = AFP_OK;
135     size_t remain;
136
137     if ((len = strlen(dir)) +2 > sizeof(path))
138         return AFPERR_PARAM;
139
140     /* already gone */
141     if ((dp = opendirat(dirfd, dir)) == NULL)
142         return AFP_OK;
143
144     strcpy(path, dir);
145     strcat(path, "/");
146     len++;
147     remain = sizeof(path) -len -1;
148     while ((de = readdir(dp)) && err == AFP_OK) {
149         /* skip this and previous directory */
150         if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, ".."))
151             continue;
152
153         if (strlen(de->d_name) > remain) {
154             err = AFPERR_PARAM;
155             break;
156         }
157         strcpy(path + len, de->d_name);
158         if (lstatat(dirfd, path, &st)) {
159             continue;
160         }
161         if (S_ISDIR(st.st_mode)) {
162             err = deletedir(dirfd, path);
163         } else {
164             err = netatalk_unlinkat(dirfd, path);
165         }
166     }
167     closedir(dp);
168
169     /* okay. the directory is empty. delete it. note: we already got rid
170        of .AppleDouble.  */
171     if (err == AFP_OK) {
172         err = netatalk_rmdir(dirfd, dir);
173     }
174     return err;
175 }
176
177 /* do a recursive copy. */
178 static int copydir(const struct vol *vol, int dirfd, char *src, char *dst)
179 {
180     char spath[MAXPATHLEN + 1], dpath[MAXPATHLEN + 1];
181     DIR *dp;
182     struct dirent   *de;
183     struct stat st;
184     struct utimbuf      ut;
185     size_t slen, dlen;
186     size_t srem, drem;
187     int err;
188
189     /* doesn't exist or the path is too long. */
190     if (((slen = strlen(src)) > sizeof(spath) - 2) ||
191         ((dlen = strlen(dst)) > sizeof(dpath) - 2) ||
192         ((dp = opendirat(dirfd, src)) == NULL))
193         return AFPERR_PARAM;
194
195     /* try to create the destination directory */
196     if (AFP_OK != (err = netatalk_mkdir(vol, dst)) ) {
197         closedir(dp);
198         return err;
199     }
200
201     /* set things up to copy */
202     strcpy(spath, src);
203     strcat(spath, "/");
204     slen++;
205     srem = sizeof(spath) - slen -1;
206
207     strcpy(dpath, dst);
208     strcat(dpath, "/");
209     dlen++;
210     drem = sizeof(dpath) - dlen -1;
211
212     err = AFP_OK;
213     while ((de = readdir(dp))) {
214         /* skip this and previous directory */
215         if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, ".."))
216             continue;
217
218         if (strlen(de->d_name) > srem) {
219             err = AFPERR_PARAM;
220             break;
221         }
222         strcpy(spath + slen, de->d_name);
223
224         if (lstatat(dirfd, spath, &st) == 0) {
225             if (strlen(de->d_name) > drem) {
226                 err = AFPERR_PARAM;
227                 break;
228             }
229             strcpy(dpath + dlen, de->d_name);
230
231             if (S_ISDIR(st.st_mode)) {
232                 if (AFP_OK != (err = copydir(vol, dirfd, spath, dpath)))
233                     goto copydir_done;
234             } else if (AFP_OK != (err = copyfile(vol, vol, dirfd, spath, dpath, NULL, NULL))) {
235                 goto copydir_done;
236
237             } else {
238                 /* keep the same time stamp. */
239                 ut.actime = ut.modtime = st.st_mtime;
240                 utime(dpath, &ut);
241             }
242         }
243     }
244
245     /* keep the same time stamp. */
246     if (lstatat(dirfd, src, &st) == 0) {
247         ut.actime = ut.modtime = st.st_mtime;
248         utime(dst, &ut);
249     }
250
251 copydir_done:
252     closedir(dp);
253     return err;
254 }
255
256 /* ---------------------
257  * is our cached offspring count valid?
258  */
259 static int diroffcnt(struct dir *dir, struct stat *st)
260 {
261     return st->st_ctime == dir->ctime;
262 }
263
264 /* --------------------- */
265 static int invisible_dots(const struct vol *vol, const char *name)
266 {
267     return vol_inv_dots(vol) && *name  == '.' && strcmp(name, ".") && strcmp(name, "..");
268 }
269
270 /* ------------------ */
271 static int set_dir_errors(struct path *path, const char *where, int err)
272 {
273     switch ( err ) {
274     case EPERM :
275     case EACCES :
276         return AFPERR_ACCESS;
277     case EROFS :
278         return AFPERR_VLOCK;
279     }
280     LOG(log_error, logtype_afpd, "setdirparam(%s): %s: %s", fullpathname(path->u_name), where, strerror(err) );
281     return AFPERR_PARAM;
282 }
283
284 /*!
285  * @brief Convert name in client encoding to server encoding
286  *
287  * Convert ret->m_name to ret->u_name from client encoding to server encoding.
288  * This only gets called from cname().
289  *
290  * @returns 0 on success, -1 on error
291  *
292  * @note If the passed ret->m_name is mangled, we'll demangle it
293  */
294 static int cname_mtouname(const struct vol *vol, const struct dir *dir, struct path *ret, int toUTF8)
295 {
296     static char temp[ MAXPATHLEN + 1];
297     char *t;
298     cnid_t fileid;
299
300     if (afp_version >= 30) {
301         if (toUTF8) {
302             if (dir->d_did == DIRDID_ROOT_PARENT) {
303                 /*
304                  * With uft8 volume name is utf8-mac, but requested path may be a mangled longname. See #2611981.
305                  * So we compare it with the longname from the current volume and if they match
306                  * we overwrite the requested path with the utf8 volume name so that the following
307                  * strcmp can match.
308                  */
309                 ucs2_to_charset(vol->v_maccharset, vol->v_macname, temp, AFPVOL_MACNAMELEN + 1);
310                 if (strcasecmp(ret->m_name, temp) == 0)
311                     ucs2_to_charset(CH_UTF8_MAC, vol->v_u8mname, ret->m_name, AFPVOL_U8MNAMELEN);
312             } else {
313                 /* toUTF8 */
314                 if (mtoUTF8(vol, ret->m_name, strlen(ret->m_name), temp, MAXPATHLEN) == (size_t)-1) {
315                     afp_errno = AFPERR_PARAM;
316                     return -1;
317                 }
318                 strcpy(ret->m_name, temp);
319             }
320         }
321
322         /* check for OS X mangled filename :( */
323         t = demangle_osx(vol, ret->m_name, dir->d_did, &fileid);
324         LOG(log_maxdebug, logtype_afpd, "cname_mtouname('%s',did:%u) {demangled:'%s', fileid:%u}",
325             ret->m_name, ntohl(dir->d_did), t, ntohl(fileid));
326
327         if (t != ret->m_name) {
328             ret->u_name = t;
329             /* duplicate work but we can't reuse all convert_char we did in demangle_osx
330              * flags weren't the same
331              */
332             if ( (t = utompath(vol, ret->u_name, fileid, utf8_encoding())) ) {
333                 /* at last got our view of mac name */
334                 strcpy(ret->m_name, t);
335             }
336         }
337     } /* afp_version >= 30 */
338
339     /* If we haven't got it by now, get it */
340     if (ret->u_name == NULL) {
341         if ((ret->u_name = mtoupath(vol, ret->m_name, dir->d_did, utf8_encoding())) == NULL) {
342             afp_errno = AFPERR_PARAM;
343             return -1;
344         }
345     }
346
347     return 0;
348 }
349
350 /*!
351  * @brief Build struct path from struct dir
352  *
353  * The final movecwd in cname failed, possibly with EPERM or ENOENT. We:
354  * 1. move cwd into parent dir (we're often already there, but not always)
355  * 2. set struct path to the dirname
356  * 3. in case of
357  *    AFPERR_ACCESS: the dir is there, we just cant chdir into it
358  *    AFPERR_NOOBJ: the dir was there when we stated it in cname, so we have a race
359  *                  4. indicate there's no dir for this path
360  *                  5. remove the dir
361  */
362 static struct path *path_from_dir(struct vol *vol, struct dir *dir, struct path *ret)
363 {
364     if (dir->d_did == DIRDID_ROOT_PARENT || dir->d_did == DIRDID_ROOT)
365         return NULL;
366
367     switch (afp_errno) {
368
369     case AFPERR_ACCESS:
370         if (movecwd( vol, dirlookup(vol, dir->d_pdid)) < 0 ) /* 1 */
371             return NULL;
372
373         memcpy(ret->m_name, cfrombstring(dir->d_m_name), blength(dir->d_m_name) + 1); /* 3 */
374         if (dir->d_m_name == dir->d_u_name) {
375             ret->u_name = ret->m_name;
376         } else {
377             ret->u_name =  ret->m_name + blength(dir->d_m_name) + 1;
378             memcpy(ret->u_name, cfrombstring(dir->d_u_name), blength(dir->d_u_name) + 1);
379         }
380
381         ret->d_dir = dir;
382
383         LOG(log_debug, logtype_afpd, "cname('%s') {path-from-dir: AFPERR_ACCESS. curdir:'%s', path:'%s'}",
384             cfrombstring(dir->d_fullpath),
385             cfrombstring(curdir->d_fullpath),
386             ret->u_name);
387
388         return ret;
389
390     case AFPERR_NOOBJ:
391         if (movecwd(vol, dirlookup(vol, dir->d_pdid)) < 0 ) /* 1 */
392             return NULL;
393
394         memcpy(ret->m_name, cfrombstring(dir->d_m_name), blength(dir->d_m_name) + 1);
395         if (dir->d_m_name == dir->d_u_name) {
396             ret->u_name = ret->m_name;
397         } else {
398             ret->u_name =  ret->m_name + blength(dir->d_m_name) + 1;
399             memcpy(ret->u_name, cfrombstring(dir->d_u_name), blength(dir->d_u_name) + 1);
400         }
401
402         ret->d_dir = NULL;      /* 4 */
403         dir_remove(vol, dir);   /* 5 */
404         return ret;
405
406     default:
407         return NULL;
408     }
409
410     /* DEADC0DE: never get here */
411     return NULL;
412 }
413
414
415 /*********************************************************************************************
416  * Interface
417  ********************************************************************************************/
418
419 int get_afp_errno(const int param)
420 {
421     if (afp_errno != AFPERR_DID1)
422         return afp_errno;
423     return param;
424 }
425
426 /*!
427  * @brief Resolve a DID
428  *
429  * Resolve a DID, allocate a struct dir for it
430  * 1. Check for special CNIDs 0 (invalid), 1 and 2.
431  * 2a. Check if the DID is in the cache.
432  * 2b. Check if it's really a dir (d_fullpath != NULL) because we cache files too.
433  * 3. If it's not in the cache resolve it via the database.
434  * 4. Build complete server-side path to the dir.
435  * 5. Check if it exists and is a directory.
436  * 6. Create the struct dir and populate it.
437  * 7. Add it to the cache.
438  *
439  * @param vol   (r) pointer to struct vol
440  * @param did   (r) DID to resolve
441  *
442  * @returns pointer to struct dir
443  *
444  * @note FIXME: OSX calls it with bogus id, ie file ID not folder ID,
445  *       and we are really bad in this case.
446  */
447 struct dir *dirlookup(const struct vol *vol, cnid_t did)
448 {
449     static char  buffer[12 + MAXPATHLEN + 1];
450     struct stat  st;
451     struct dir   *ret = NULL, *pdir;
452     bstring      fullpath = NULL;
453     char         *upath = NULL, *mpath;
454     cnid_t       cnid, pdid;
455     size_t       maxpath;
456     int          buflen = 12 + MAXPATHLEN + 1;
457     int          utf8;
458     int          err = 0;
459
460     LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {start}", ntohl(did));
461
462     /* check for did 0, 1 and 2 */
463     if (did == 0 || vol == NULL) { /* 1 */
464         afp_errno = AFPERR_PARAM;
465         return NULL;
466     } else if (did == DIRDID_ROOT_PARENT) {
467         rootParent.d_vid = vol->v_vid;
468         return (&rootParent);
469     } else if (did == DIRDID_ROOT) {
470         return vol->v_root;
471     }
472
473     /* Search the cache */
474     if ((ret = dircache_search_by_did(vol, did)) != NULL) { /* 2a */
475         if (ret->d_fullpath == NULL) {                      /* 2b */
476             afp_errno = AFPERR_BADTYPE;
477             return NULL;
478         }
479         if (lstat(cfrombstring(ret->d_fullpath), &st) != 0) {
480             LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {lstat: %s}", ntohl(did), strerror(errno));
481             switch (errno) {
482             case ENOENT:
483             case ENOTDIR:
484                 /* It's not there anymore, so remove it */
485                 LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {calling dir_remove()}", ntohl(did));
486                 dir_remove(vol, ret);
487                 afp_errno = AFPERR_NOOBJ;
488                 return NULL;
489             default:
490                 return ret;
491             }
492             /* DEADC0DE */
493             return NULL;
494         }
495         return ret;
496     }
497
498     utf8 = utf8_encoding();
499     maxpath = (utf8) ? MAXPATHLEN - 7 : 255;
500
501     /* Get it from the database */
502     cnid = did;
503     if ( (upath = cnid_resolve(vol->v_cdb, &cnid, buffer, buflen)) == NULL 
504          || (upath = strdup(upath)) == NULL) { /* 3 */
505         afp_errno = AFPERR_NOOBJ;
506         err = 1;
507         goto exit;
508     }
509     pdid = cnid;
510
511     /*
512      * Recurse up the tree, terminates in dirlookup when either
513      * - DIRDID_ROOT is hit
514      * - a cached entry is found
515      */
516     if ((pdir = dirlookup(vol, pdid)) == NULL) {
517         err = 1;
518         goto exit;
519     }
520
521     /* build the fullpath */
522     if ((fullpath = bstrcpy(pdir->d_fullpath)) == NULL
523         || bconchar(fullpath, '/') != BSTR_OK
524         || bcatcstr(fullpath, upath) != BSTR_OK) {
525         err = 1;
526         goto exit;
527     }
528
529     /* stat it and check if it's a dir */
530     LOG(log_debug, logtype_afpd, "dirlookup: {stating %s}", cfrombstring(fullpath));
531
532     if (stat(cfrombstring(fullpath), &st) != 0) { /* 5a */
533         switch (errno) {
534         case ENOENT:
535             afp_errno = AFPERR_NOOBJ;
536             err = 1;
537             goto exit;
538         case EPERM:
539             afp_errno = AFPERR_ACCESS;
540             err = 1;
541             goto exit;
542         default:
543             afp_errno = AFPERR_MISC;
544             err = 1;
545             goto exit;
546         }
547     } else {
548         if ( ! S_ISDIR(st.st_mode)) { /* 5b */
549             afp_errno = AFPERR_BADTYPE;
550             err = 1;
551             goto exit;
552         }
553     }
554
555     /* Get macname from unix name */
556     if ( (mpath = utompath(vol, upath, did, utf8)) == NULL ) {
557         afp_errno = AFPERR_NOOBJ;
558         err = 1;
559         goto exit;
560     }
561
562     /* Create struct dir */
563     if ((ret = dir_new(mpath, upath, vol, pdid, did, fullpath)) == NULL) { /* 6 */
564         LOG(log_error, logtype_afpd, "dirlookup(did: %u) {%s, %s}: %s", ntohl(did), mpath, upath, strerror(errno));
565         err = 1;
566         goto exit;
567     }
568
569     /* Add it to the cache only if it's a dir */
570     if (dircache_add(ret) != 0) { /* 7 */
571         err = 1;
572         goto exit;
573     }
574
575     LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {end: did:%u, path:'%s'}",
576         ntohl(did), ntohl(pdid), cfrombstring(ret->d_fullpath));
577
578 exit:
579     if (err) {
580         LOG(log_debug, logtype_afpd, "dirlookup(did: %u) {exit_error: %s}",
581             ntohl(did), AfpErr2name(afp_errno));
582         free(upath);
583         if (fullpath)
584             bdestroy(fullpath);
585         if (ret) {
586             dir_free(ret);
587             ret = NULL;
588         }
589     }
590     return ret;
591 }
592
593 #define ENUMVETO "./../Network Trash Folder/TheVolumeSettingsFolder/TheFindByContentFolder/:2eDS_Store/Contents/Desktop Folder/Trash/Benutzer/"
594
595 int caseenumerate(const struct vol *vol, struct path *path, struct dir *dir)
596 {
597     DIR               *dp;
598     struct dirent     *de;
599     int               ret;
600     static u_int32_t  did = 0;
601     static char       cname[MAXPATHLEN];
602     static char       lname[MAXPATHLEN];
603     ucs2_t        u2_path[MAXPATHLEN];
604     ucs2_t        u2_dename[MAXPATHLEN];
605     char          *tmp, *savepath;
606
607     if (!(vol->v_flags & AFPVOL_CASEINSEN))
608         return -1;
609
610     if (veto_file(ENUMVETO, path->u_name))
611         return -1;
612
613     savepath = path->u_name;
614
615     /* very simple cache */
616     if ( dir->d_did == did && strcmp(lname, path->u_name) == 0) {
617         path->u_name = cname;
618         path->d_dir = NULL;
619         if (of_stat( path ) == 0 ) {
620             return 0;
621         }
622         /* something changed, we cannot stat ... */
623         did = 0;
624     }
625
626     if (NULL == ( dp = opendir( "." )) ) {
627         LOG(log_debug, logtype_afpd, "caseenumerate: opendir failed: %s", dir->d_u_name);
628         return -1;
629     }
630
631
632     /* LOG(log_debug, logtype_afpd, "caseenumerate: for %s", path->u_name); */
633     if ((size_t) -1 == convert_string(vol->v_volcharset, CH_UCS2, path->u_name, -1, u2_path, sizeof(u2_path)) )
634         LOG(log_debug, logtype_afpd, "caseenumerate: conversion failed for %s", path->u_name);
635
636     /*LOG(log_debug, logtype_afpd, "caseenumerate: dir: %s, path: %s", dir->d_u_name, path->u_name); */
637     ret = -1;
638     for ( de = readdir( dp ); de != NULL; de = readdir( dp )) {
639         if (NULL == check_dirent(vol, de->d_name))
640             continue;
641
642         if ((size_t) -1 == convert_string(vol->v_volcharset, CH_UCS2, de->d_name, -1, u2_dename, sizeof(u2_dename)) )
643             continue;
644
645         if (strcasecmp_w( u2_path, u2_dename) == 0) {
646             tmp = path->u_name;
647             strlcpy(cname, de->d_name, sizeof(cname));
648             path->u_name = cname;
649             path->d_dir = NULL;
650             if (of_stat( path ) == 0 ) {
651                 LOG(log_debug, logtype_afpd, "caseenumerate: using dir: %s, path: %s", de->d_name, path->u_name);
652                 strlcpy(lname, tmp, sizeof(lname));
653                 did = dir->d_did;
654                 ret = 0;
655                 break;
656             }
657             else
658                 path->u_name = tmp;
659         }
660
661     }
662     closedir(dp);
663
664     if (ret) {
665         /* invalidate cache */
666         cname[0] = 0;
667         did = 0;
668         path->u_name = savepath;
669     }
670     /* LOG(log_debug, logtype_afpd, "caseenumerate: path on ret: %s", path->u_name); */
671     return ret;
672 }
673
674
675 /*!
676  * @brief Construct struct dir
677  *
678  * Construct struct dir from parameters.
679  *
680  * @param m_name   (r) directory name in UTF8-dec
681  * @param u_name   (r) directory name in server side encoding
682  * @param vol      (r) pointer to struct vol
683  * @param pdid     (r) Parent CNID
684  * @param did      (r) CNID
685  * @param fullpath (r) Full unix path to dir or NULL for files
686  *
687  * @returns pointer to new struct dir or NULL on error
688  *
689  * @note Most of the time mac name and unix name are the same.
690  */
691 struct dir *dir_new(const char *m_name,
692                     const char *u_name,
693                     const struct vol *vol,
694                     cnid_t pdid,
695                     cnid_t did,
696                     bstring path)
697 {
698     struct dir *dir;
699
700     dir = (struct dir *) calloc(1, sizeof( struct dir ));
701     if (!dir)
702         return NULL;
703
704     if ((dir->d_m_name = bfromcstr(m_name)) == NULL) {
705         free(dir);
706         return NULL;
707     }
708
709     if (convert_string_allocate( (utf8_encoding()) ? CH_UTF8_MAC : vol->v_maccharset,
710                                  CH_UCS2,
711                                  m_name,
712                                  -1, (char **)&dir->d_m_name_ucs2) == (size_t)-1 ) {
713         LOG(log_error, logtype_afpd, "dir_new(did: %u) {%s, %s}: couldn't set UCS2 name", ntohl(did), m_name, u_name);
714         dir->d_m_name_ucs2 = NULL;
715     }
716
717     if (m_name == u_name || !strcmp(m_name, u_name)) {
718         dir->d_u_name = dir->d_m_name;
719     }
720     else if ((dir->d_u_name = bfromcstr(u_name)) == NULL) {
721         bdestroy(dir->d_m_name);
722         free(dir);
723         return NULL;
724     }
725
726     dir->d_did = did;
727     dir->d_pdid = pdid;
728     dir->d_vid = vol->v_vid;
729     dir->d_fullpath = path;
730     return dir;
731 }
732
733 /*!
734  * @brief Free a struct dir and all its members
735  *
736  * @param (rw) pointer to struct dir
737  */
738 void dir_free(struct dir *dir)
739 {
740     if (dir->d_u_name != dir->d_m_name) {
741         bdestroy(dir->d_u_name);
742     }
743     if (dir->d_m_name_ucs2)
744         free(dir->d_m_name_ucs2);
745     bdestroy(dir->d_m_name);
746     bdestroy(dir->d_fullpath);
747     free(dir);
748 }
749
750 /*!
751  * @brief Create struct dir from struct path
752  *
753  * Create a new struct dir from struct path. Then add it to the cache.
754  * The caller must have assured that the dir is not already in the cache,
755  * cf theAFP_ASSERTion.
756  * 1. Open adouble file, get CNID from it.
757  * 2. Search the database, hinting with the CNID from (1).
758  * 3. Build fullpath and create struct dir.
759  * 4. Add it to the cache.
760  *
761  * @param vol   (r) pointer to struct vol
762  * @param dir   (r) pointer to parrent directory
763  * @param path  (rw) pointer to struct path with valid path->u_name
764  * @param len   (r) strlen of path->u_name
765  *
766  * @returns Pointer to new struct dir or NULL on error.
767  *
768  * @note Function also assigns path->m_name from path->u_name.
769  */
770 struct dir *dir_add(const struct vol *vol, const struct dir *dir, struct path *path, int len)
771 {
772     int err = 0;
773     struct dir  *cdir = NULL;
774     cnid_t      id;
775     struct adouble  ad;
776     struct adouble *adp = NULL;
777     bstring fullpath;
778
779     AFP_ASSERT(vol);
780     AFP_ASSERT(dir);
781     AFP_ASSERT(path);
782     AFP_ASSERT(len > 0);
783
784     if ((cdir = dircache_search_by_name(vol, dir, path->u_name, strlen(path->u_name))) != NULL) {
785         /* there's a stray entry in the dircache */
786         LOG(log_debug, logtype_afpd, "dir_add(did:%u,'%s/%s'): {stray cache entry: did:%u,'%s', removing}",
787             ntohl(dir->d_did), cfrombstring(dir->d_fullpath), path->u_name,
788             ntohl(cdir->d_did), cfrombstring(dir->d_fullpath));
789         if (dir_remove(vol, cdir) != 0) {
790             dircache_dump();
791             exit(EXITERR_SYS);
792         }
793     }
794
795     /* get_id needs adp for reading CNID from adouble file */
796     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
797     if ((ad_open_metadata(path->u_name, ADFLAGS_DIR, 0, &ad)) == 0) /* 1 */
798         adp = &ad;
799
800     /* Get CNID */
801     if ((id = get_id(vol, adp, &path->st, dir->d_did, path->u_name, len)) == 0) { /* 2 */
802         err = 1;
803         goto exit;
804     }
805
806     if (adp)
807         ad_close_metadata(adp);
808
809     /* Get macname from unixname */
810     if (path->m_name == NULL) {
811         if ((path->m_name = utompath(vol, path->u_name, id, utf8_encoding())) == NULL) {
812             err = 2;
813             goto exit;
814         }
815     }
816
817     /* Build fullpath */
818     if ( ((fullpath = bstrcpy(dir->d_fullpath)) == NULL) /* 3 */
819          || (bconchar(fullpath, '/') != BSTR_OK)
820          || (bcatcstr(fullpath, path->u_name)) != BSTR_OK) {
821         LOG(log_error, logtype_afpd, "dir_add: fullpath: %s", strerror(errno) );
822         err = 3;
823         goto exit;
824     }
825
826     /* Allocate and initialize struct dir */
827     if ((cdir = dir_new( path->m_name, path->u_name, vol, dir->d_did, id, fullpath)) == NULL) { /* 3 */
828         err = 4;
829         goto exit;
830     }
831
832     if ((dircache_add(cdir)) != 0) { /* 4 */
833         LOG(log_error, logtype_afpd, "dir_add: fatal dircache error: %s", cfrombstring(fullpath));
834         exit(EXITERR_SYS);
835     }
836
837 exit:
838     if (err != 0) {
839         LOG(log_debug, logtype_afpd, "dir_add('%s/%s'): error: %u",
840             cfrombstring(dir->d_u_name), path->u_name, err);
841
842         if (adp)
843             ad_close_metadata(adp);
844         if (!cdir && fullpath)
845             bdestroy(fullpath);
846         if (cdir)
847             dir_free(cdir);
848         cdir = NULL;
849     } else {
850         /* no error */
851         LOG(log_debug, logtype_afpd, "dir_add(did:%u,'%s/%s'): {cached: %u,'%s'}",
852             ntohl(dir->d_did), cfrombstring(dir->d_fullpath), path->u_name,
853             ntohl(cdir->d_did), cfrombstring(cdir->d_fullpath));
854     }
855
856     return(cdir);
857 }
858
859 /*!
860  * @brief Remove a dir from a cache and free it and any ressources with it
861  *
862  * 1. Check if the dir is locked or has opened forks
863  * 2. If it's a request to remove curdir, just chdir to volume root
864  * 3. Remove it from the cache
865  * 4. Remove the dir plus any allocated resources it references
866  *
867  * @param (r) pointer to struct vol
868  * @param (rw) pointer to struct dir
869  */
870 int dir_remove(const struct vol *vol, struct dir *dir)
871 {
872     AFP_ASSERT(vol);
873     AFP_ASSERT(dir);
874
875     if (dir->d_did == DIRDID_ROOT_PARENT || dir->d_did == DIRDID_ROOT)
876         return 0;
877
878     if (dir->d_flags & DIRF_CACHELOCK || dir->d_ofork) { /* 1 */
879         LOG(log_warning, logtype_afpd, "dir_remove(did:%u,'%s'): dir is locked or has opened forks",
880             ntohl(dir->d_did), cfrombstring(dir->d_fullpath));
881         return 0;
882     }
883
884     if (curdir == dir) {        /* 2 */
885         if (movecwd(vol, vol->v_root) < 0) {
886             LOG(log_error, logtype_afpd, "dir_remove: can't chdir to : %s", vol->v_root);
887         }
888     }
889
890     LOG(log_debug, logtype_afpd, "dir_remove(did:%u,'%s'): {removing}",
891         ntohl(dir->d_did), cfrombstring(dir->d_fullpath));
892
893     dircache_remove(vol, dir, DIRCACHE | DIDNAME_INDEX | QUEUE_INDEX); /* 3 */
894     dir_free(dir);              /* 4 */
895
896     return 0;
897 }
898
899 /*!
900  * @brief Modify a struct dir, adjust cache
901  *
902  * Any value that is 0 or NULL is not changed. If new_uname is NULL it is set to new_mname.
903  * If given new_uname == new_mname, new_uname will point to new_mname.
904  *
905  * @param vol       (r) pointer to struct vol
906  * @param dir       (rw) pointer to struct dir
907  * @param pdid      (r) new parent DID
908  * @param did       (r) new DID
909  * @param new_mname (r) new mac-name
910  * @param new_uname (r) new unix-name
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, "renamedir: 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         exit(EXITERR_SYS);
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     if (dir_modify(vol, dir, curdir->d_did, 0, newname, dst, curdir->d_fullpath) != 0) {
2206         LOG(log_error, logtype_afpd, "renamedir: fatal error from dir_modify: %s -> %s", src, dst);
2207         return AFPERR_MISC;
2208     }
2209
2210     return( AFP_OK );
2211 }
2212
2213 /* delete an empty directory */
2214 int deletecurdir(struct vol *vol)
2215 {
2216     struct dirent *de;
2217     struct stat st;
2218     struct dir  *fdir;
2219     DIR *dp;
2220     struct adouble  ad;
2221     u_int16_t       ashort;
2222     int err;
2223
2224     if ( dirlookup(vol, curdir->d_pdid) == NULL ) {
2225         return( AFPERR_ACCESS );
2226     }
2227
2228     fdir = curdir;
2229
2230     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
2231     /* we never want to create a resource fork here, we are going to delete it */
2232     if ( ad_metadata( ".", ADFLAGS_DIR, &ad) == 0 ) {
2233
2234         ad_getattr(&ad, &ashort);
2235         ad_close_metadata(&ad);
2236         if ((ashort & htons(ATTRBIT_NODELETE))) {
2237             return  AFPERR_OLOCK;
2238         }
2239     }
2240     err = vol->vfs->vfs_deletecurdir(vol);
2241     if (err) {
2242         return err;
2243     }
2244
2245     /* now get rid of dangling symlinks */
2246     if ((dp = opendir("."))) {
2247         while ((de = readdir(dp))) {
2248             /* skip this and previous directory */
2249             if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, ".."))
2250                 continue;
2251
2252             /* bail if it's not a symlink */
2253             if ((lstat(de->d_name, &st) == 0) && !S_ISLNK(st.st_mode)) {
2254                 closedir(dp);
2255                 return AFPERR_DIRNEMPT;
2256             }
2257
2258             if ((err = netatalk_unlink(de->d_name))) {
2259                 closedir(dp);
2260                 return err;
2261             }
2262         }
2263     }
2264
2265     if ( movecwd(vol, dirlookup(vol, curdir->d_pdid)) < 0 ) {
2266         err = afp_errno;
2267         goto delete_done;
2268     }
2269
2270     err = netatalk_rmdir_all_errors(-1, cfrombstring(fdir->d_u_name));
2271     if ( err ==  AFP_OK || err == AFPERR_NOOBJ) {
2272         cnid_delete(vol->v_cdb, fdir->d_did);
2273         dir_remove( vol, fdir );
2274     }
2275 delete_done:
2276     if (dp) {
2277         /* inode is used as key for cnid.
2278          * Close the descriptor only after cnid_delete
2279          * has been called.
2280          */
2281         closedir(dp);
2282     }
2283     return err;
2284 }
2285
2286 int afp_mapid(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
2287 {
2288     struct passwd   *pw;
2289     struct group    *gr;
2290     char        *name;
2291     u_int32_t           id;
2292     int         len, sfunc;
2293     int         utf8 = 0;
2294
2295     ibuf++;
2296     sfunc = (unsigned char) *ibuf++;
2297     *rbuflen = 0;
2298
2299
2300     if (sfunc >= 3 && sfunc <= 6) {
2301         if (afp_version < 30) {
2302             return( AFPERR_PARAM );
2303         }
2304         utf8 = 1;
2305     }
2306
2307     switch ( sfunc ) {
2308     case 1 :
2309     case 3 :/* unicode */
2310         memcpy( &id, ibuf, sizeof( id ));
2311         id = ntohl(id);
2312         if ( id != 0 ) {
2313             if (( pw = getpwuid( id )) == NULL ) {
2314                 return( AFPERR_NOITEM );
2315             }
2316             len = convert_string_allocate( obj->options.unixcharset, ((!utf8)?obj->options.maccharset:CH_UTF8_MAC),
2317                                            pw->pw_name, -1, &name);
2318         } else {
2319             len = 0;
2320             name = NULL;
2321         }
2322         break;
2323     case 2 :
2324     case 4 : /* unicode */
2325         memcpy( &id, ibuf, sizeof( id ));
2326         id = ntohl(id);
2327         if ( id != 0 ) {
2328             if (NULL == ( gr = (struct group *)getgrgid( id ))) {
2329                 return( AFPERR_NOITEM );
2330             }
2331             len = convert_string_allocate( obj->options.unixcharset, (!utf8)?obj->options.maccharset:CH_UTF8_MAC,
2332                                            gr->gr_name, -1, &name);
2333         } else {
2334             len = 0;
2335             name = NULL;
2336         }
2337         break;
2338 #ifdef HAVE_ACLS
2339     case 5 : /* UUID -> username */
2340     case 6 : /* UUID -> groupname */
2341         if ((afp_version < 32) || !(obj->options.flags & OPTION_UUID ))
2342             return AFPERR_PARAM;
2343         LOG(log_debug, logtype_afpd, "afp_mapid: valid UUID request");
2344         uuidtype_t type;
2345         len = getnamefromuuid( ibuf, &name, &type);
2346         if (len != 0)       /* its a error code, not len */
2347             return AFPERR_NOITEM;
2348         if (type == UUID_USER) {
2349             if (( pw = getpwnam( name )) == NULL )
2350                 return( AFPERR_NOITEM );
2351             LOG(log_debug, logtype_afpd, "afp_mapid: name:%s -> uid:%d", name, pw->pw_uid);
2352             id = htonl(UUID_USER);
2353             memcpy( rbuf, &id, sizeof( id ));
2354             id = htonl( pw->pw_uid);
2355             rbuf += sizeof( id );
2356             memcpy( rbuf, &id, sizeof( id ));
2357             rbuf += sizeof( id );
2358             *rbuflen = 2 * sizeof( id );
2359         } else {        /* type == UUID_GROUP */
2360             if (( gr = getgrnam( name )) == NULL )
2361                 return( AFPERR_NOITEM );
2362             LOG(log_debug, logtype_afpd, "afp_mapid: group:%s -> gid:%d", name, gr->gr_gid);
2363             id = htonl(UUID_GROUP);
2364             memcpy( rbuf, &id, sizeof( id ));
2365             rbuf += sizeof( id );
2366             id = htonl( gr->gr_gid);
2367             memcpy( rbuf, &id, sizeof( id ));
2368             rbuf += sizeof( id );
2369             *rbuflen = 2 * sizeof( id );
2370         }
2371         break;
2372 #endif /* HAVE_ACLS */
2373     default :
2374         return( AFPERR_PARAM );
2375     }
2376
2377     if (name)
2378         len = strlen( name );
2379
2380     if (utf8) {
2381         u_int16_t tp = htons(len);
2382         memcpy(rbuf, &tp, sizeof(tp));
2383         rbuf += sizeof(tp);
2384         *rbuflen += 2;
2385     }
2386     else {
2387         *rbuf++ = len;
2388         *rbuflen += 1;
2389     }
2390     if ( len > 0 ) {
2391         memcpy( rbuf, name, len );
2392     }
2393     *rbuflen += len;
2394     if (name)
2395         free(name);
2396     return( AFP_OK );
2397 }
2398
2399 int afp_mapname(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
2400 {
2401     struct passwd   *pw;
2402     struct group    *gr;
2403     int             len, sfunc;
2404     u_int32_t       id;
2405     u_int16_t       ulen;
2406
2407     ibuf++;
2408     sfunc = (unsigned char) *ibuf++;
2409     *rbuflen = 0;
2410     LOG(log_debug, logtype_afpd, "afp_mapname: sfunc: %d, afp_version: %d", sfunc, afp_version);
2411     switch ( sfunc ) {
2412     case 1 :
2413     case 2 : /* unicode */
2414         if (afp_version < 30) {
2415             return( AFPERR_PARAM );
2416         }
2417         memcpy(&ulen, ibuf, sizeof(ulen));
2418         len = ntohs(ulen);
2419         ibuf += 2;
2420         LOG(log_debug, logtype_afpd, "afp_mapname: alive");
2421         break;
2422     case 3 :
2423     case 4 :
2424         len = (unsigned char) *ibuf++;
2425         break;
2426 #ifdef HAVE_ACLS
2427     case 5 : /* username -> UUID  */
2428     case 6 : /* groupname -> UUID */
2429         if ((afp_version < 32) || !(obj->options.flags & OPTION_UUID ))
2430             return AFPERR_PARAM;
2431         memcpy(&ulen, ibuf, sizeof(ulen));
2432         len = ntohs(ulen);
2433         ibuf += 2;
2434         break;
2435 #endif /* HAVE_ACLS */
2436     default :
2437         return( AFPERR_PARAM );
2438     }
2439
2440     ibuf[ len ] = '\0';
2441
2442     if ( len == 0 )
2443         return AFPERR_PARAM;
2444     else {
2445         switch ( sfunc ) {
2446         case 1 : /* unicode */
2447         case 3 :
2448             if (NULL == ( pw = (struct passwd *)getpwnam( ibuf )) ) {
2449                 return( AFPERR_NOITEM );
2450             }
2451             id = pw->pw_uid;
2452             id = htonl(id);
2453             memcpy( rbuf, &id, sizeof( id ));
2454             *rbuflen = sizeof( id );
2455             break;
2456
2457         case 2 : /* unicode */
2458         case 4 :
2459             LOG(log_debug, logtype_afpd, "afp_mapname: gettgrnam for name: %s",ibuf);
2460             if (NULL == ( gr = (struct group *)getgrnam( ibuf ))) {
2461                 return( AFPERR_NOITEM );
2462             }
2463             id = gr->gr_gid;
2464             LOG(log_debug, logtype_afpd, "afp_mapname: gettgrnam for name: %s -> id: %d",ibuf, id);
2465             id = htonl(id);
2466             memcpy( rbuf, &id, sizeof( id ));
2467             *rbuflen = sizeof( id );
2468             break;
2469 #ifdef HAVE_ACLS
2470         case 5 :        /* username -> UUID */
2471             LOG(log_debug, logtype_afpd, "afp_mapname: name: %s",ibuf);
2472             if (0 != getuuidfromname(ibuf, UUID_USER, rbuf))
2473                 return AFPERR_NOITEM;
2474             *rbuflen = UUID_BINSIZE;
2475             break;
2476         case 6 :        /* groupname -> UUID */
2477             LOG(log_debug, logtype_afpd, "afp_mapname: name: %s",ibuf);
2478             if (0 != getuuidfromname(ibuf, UUID_GROUP, rbuf))
2479                 return AFPERR_NOITEM;
2480             *rbuflen = UUID_BINSIZE;
2481             break;
2482 #endif /* HAVE_ACLS */
2483         }
2484     }
2485     return( AFP_OK );
2486 }
2487
2488 /* ------------------------------------
2489    variable DID support
2490 */
2491 int afp_closedir(AFPObj *obj _U_, char *ibuf _U_, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
2492 {
2493 #if 0
2494     struct vol   *vol;
2495     struct dir   *dir;
2496     u_int16_t    vid;
2497     u_int32_t    did;
2498 #endif /* 0 */
2499
2500     *rbuflen = 0;
2501
2502     /* do nothing as dids are static for the life of the process. */
2503 #if 0
2504     ibuf += 2;
2505
2506     memcpy(&vid,  ibuf, sizeof( vid ));
2507     ibuf += sizeof( vid );
2508     if (( vol = getvolbyvid( vid )) == NULL ) {
2509         return( AFPERR_PARAM );
2510     }
2511
2512     memcpy( &did, ibuf, sizeof( did ));
2513     ibuf += sizeof( did );
2514     if (( dir = dirlookup( vol, did )) == NULL ) {
2515         return( AFPERR_PARAM );
2516     }
2517
2518     /* dir_remove -- deletedid */
2519 #endif /* 0 */
2520
2521     return AFP_OK;
2522 }
2523
2524 /* did creation gets done automatically
2525  * there's a pb again with case but move it to cname
2526  */
2527 int afp_opendir(AFPObj *obj _U_, char *ibuf, size_t ibuflen  _U_, char *rbuf, size_t *rbuflen)
2528 {
2529     struct vol      *vol;
2530     struct dir      *parentdir;
2531     struct path     *path;
2532     u_int32_t       did;
2533     u_int16_t       vid;
2534
2535     *rbuflen = 0;
2536     ibuf += 2;
2537
2538     memcpy(&vid, ibuf, sizeof(vid));
2539     ibuf += sizeof( vid );
2540
2541     if (NULL == ( vol = getvolbyvid( vid )) ) {
2542         return( AFPERR_PARAM );
2543     }
2544
2545     memcpy(&did, ibuf, sizeof(did));
2546     ibuf += sizeof(did);
2547
2548     if (NULL == ( parentdir = dirlookup( vol, did )) ) {
2549         return afp_errno;
2550     }
2551
2552     if (NULL == ( path = cname( vol, parentdir, &ibuf )) ) {
2553         return get_afp_errno(AFPERR_PARAM);
2554     }
2555
2556     if ( *path->m_name != '\0' ) {
2557         return path_error(path, AFPERR_NOOBJ);
2558     }
2559
2560     if ( !path->st_valid && of_stat(path ) < 0 ) {
2561         return( AFPERR_NOOBJ );
2562     }
2563     if ( path->st_errno ) {
2564         return( AFPERR_NOOBJ );
2565     }
2566
2567     memcpy(rbuf, &curdir->d_did, sizeof(curdir->d_did));
2568     *rbuflen = sizeof(curdir->d_did);
2569     return AFP_OK;
2570 }