]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/filedir.c
Time Machine support: new volume option tm
[netatalk.git] / etc / afpd / filedir.c
1 /*
2  * $Id: filedir.c,v 1.45.2.2.2.14.2.7 2009-09-01 12:34:38 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 <stdio.h>
13 #include <stdlib.h>
14 /* STDC check */
15 #if STDC_HEADERS
16 #include <string.h>
17 #else /* STDC_HEADERS */
18 #ifndef HAVE_STRCHR
19 #define strchr index
20 #define strrchr index
21 #endif /* HAVE_STRCHR */
22 char *strchr (), *strrchr ();
23 #ifndef HAVE_MEMCPY
24 #define memcpy(d,s,n) bcopy ((s), (d), (n))
25 #define memmove(d,s,n) bcopy ((s), (d), (n))
26 #endif /* ! HAVE_MEMCPY */
27 #endif /* STDC_HEADERS */
28
29 #ifdef HAVE_STRINGS_H
30 #include <strings.h>
31 #endif
32 #include <dirent.h>
33 #include <errno.h>
34 #include <sys/param.h>
35 #include <atalk/adouble.h>
36
37 #include <atalk/afp.h>
38 #include <atalk/util.h>
39 #include <atalk/cnid.h>
40 #include <atalk/logger.h>
41
42 #include "directory.h"
43 #include "desktop.h"
44 #include "volume.h"
45 #include "fork.h"
46 #include "file.h"
47 #include "globals.h"
48 #include "filedir.h"
49 #include "unix.h"
50
51 #ifdef DROPKLUDGE
52 int matchfile2dirperms(upath, vol, did)
53 /* Since it's kinda' big; I decided against an
54 inline function */
55 char    *upath;
56 struct vol  *vol;
57 int             did;
58 /* The below code changes the way file ownership is determined in the name of
59 fixing dropboxes.  It has known security problem.  See the netatalk FAQ for
60 more information */
61 {
62     struct stat st, sb;
63     struct dir  *dir;
64     char        *adpath;
65     uid_t       uid;
66     int         ret = AFP_OK;
67 #ifdef DEBUG
68     LOG(log_info, logtype_afpd, "begin matchfile2dirperms:");
69 #endif /* DEBUG */
70
71     if (stat(upath, &st ) < 0) {
72         LOG(log_error, logtype_afpd, "Could not stat %s: %s", upath, strerror(errno));
73         return AFPERR_NOOBJ ;
74     }
75
76     adpath = vol->ad_path( upath, ADFLAGS_HF );
77     /* FIXME dirsearch doesn't move cwd to did ! */
78     if (( dir = dirlookup( vol, did )) == NULL ) {
79         LOG(log_error, logtype_afpd, "matchfile2dirperms: Unable to get directory info.");
80         ret = AFPERR_NOOBJ;
81     }
82     else if (stat(".", &sb) < 0) {
83         LOG(log_error, logtype_afpd,
84             "matchfile2dirperms: Error checking directory \"%s\": %s",
85             dir->d_m_name, strerror(errno));
86         ret = AFPERR_NOOBJ;
87     }
88     else {
89         uid=geteuid();
90         if ( uid != sb.st_uid )
91         {
92             seteuid(0);
93             if (lchown(upath, sb.st_uid, sb.st_gid) < 0)
94             {
95                 LOG(log_error, logtype_afpd,
96                     "matchfile2dirperms(%s): Error changing owner/gid: %s",
97                     upath, strerror(errno));
98                 ret = AFPERR_ACCESS;
99             }
100             else if (chmod(upath,(st.st_mode&~default_options.umask)| S_IRGRP| S_IROTH) < 0)
101             {
102                 LOG(log_error, logtype_afpd,
103                     "matchfile2dirperms(%s): Error adding file read permissions: %s",
104                     upath, strerror(errno));
105                 ret = AFPERR_ACCESS;
106             }
107             else if (lchown(adpath, sb.st_uid, sb.st_gid) < 0)
108             {
109                 LOG(log_error, logtype_afpd,
110                     "matchfile2dirperms(%s): Error changing AppleDouble owner/gid: %s",
111                     adpath, strerror(errno));
112                 ret = AFPERR_ACCESS;
113             }
114             else if (chmod(adpath, (st.st_mode&~default_options.umask)| S_IRGRP| S_IROTH) < 0)
115             {
116                 LOG(log_error, logtype_afpd,
117                     "matchfile2dirperms(%s):  Error adding AD file read permissions: %s",
118                     adpath, strerror(errno));
119                 ret = AFPERR_ACCESS;
120             }
121             seteuid(uid); 
122         }
123     } /* end else if stat success */
124
125 #ifdef DEBUG
126     LOG(log_info, logtype_afpd, "end matchfile2dirperms:");
127 #endif /* DEBUG */
128     return ret;
129 }
130 #endif
131
132 int afp_getfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
133 AFPObj  *obj _U_;
134 char    *ibuf, *rbuf;
135 int     ibuflen _U_, *rbuflen;
136 {
137     struct stat         *st;
138     struct vol          *vol;
139     struct dir          *dir;
140     u_int32_t           did;
141     int                 buflen, ret;
142     u_int16_t           fbitmap, dbitmap, vid;
143     struct path         *s_path;
144
145 #ifdef DEBUG
146     LOG(log_info, logtype_afpd, "begin afp_getfildirparams:");
147 #endif /* DEBUG */
148
149     *rbuflen = 0;
150     ibuf += 2;
151
152     memcpy( &vid, ibuf, sizeof( vid ));
153     ibuf += sizeof( vid );
154     if (NULL == ( vol = getvolbyvid( vid )) ) {
155         return( AFPERR_PARAM );
156     }
157
158     memcpy( &did, ibuf, sizeof( did ));
159     ibuf += sizeof( did );
160
161     if (NULL == ( dir = dirlookup( vol, did )) ) {
162         return afp_errno;
163     }
164
165     memcpy( &fbitmap, ibuf, sizeof( fbitmap ));
166     fbitmap = ntohs( fbitmap );
167     ibuf += sizeof( fbitmap );
168     memcpy( &dbitmap, ibuf, sizeof( dbitmap ));
169     dbitmap = ntohs( dbitmap );
170     ibuf += sizeof( dbitmap );
171
172     if (NULL == ( s_path = cname( vol, dir, &ibuf )) ) {
173         return get_afp_errno(AFPERR_NOOBJ); 
174     }
175
176     st   = &s_path->st;
177     if (!s_path->st_valid) {
178         /* it's a dir and it should be there
179          * because we chdir in it in cname or
180          * it's curdir (maybe deleted, but then we can't know).
181          * So we need to try harder.
182          */
183         of_statdir(vol, s_path);
184     }
185     if ( s_path->st_errno != 0 ) {
186         return( AFPERR_NOOBJ );
187     }
188
189     buflen = 0;
190     if (S_ISDIR(st->st_mode)) {
191         if (dbitmap) {
192             dir = s_path->d_dir;
193             if (!dir) 
194                 return AFPERR_NOOBJ;
195
196             ret = getdirparams(vol, dbitmap, s_path, dir,
197                                  rbuf + 3 * sizeof( u_int16_t ), &buflen );
198             if (ret != AFP_OK )
199                 return( ret );
200         }
201         /* this is a directory */
202         *(rbuf + 2 * sizeof( u_int16_t )) = (char) FILDIRBIT_ISDIR;
203     } else {
204         if (fbitmap && AFP_OK != (ret = getfilparams(vol, fbitmap, s_path, curdir, 
205                                             rbuf + 3 * sizeof( u_int16_t ), &buflen )) ) {
206             return( ret );
207         }
208         /* this is a file */
209         *(rbuf + 2 * sizeof( u_int16_t )) = FILDIRBIT_ISFILE;
210     }
211     *rbuflen = buflen + 3 * sizeof( u_int16_t );
212     fbitmap = htons( fbitmap );
213     memcpy( rbuf, &fbitmap, sizeof( fbitmap ));
214     rbuf += sizeof( fbitmap );
215     dbitmap = htons( dbitmap );
216     memcpy( rbuf, &dbitmap, sizeof( dbitmap ));
217     rbuf += sizeof( dbitmap ) + sizeof( u_char );
218     *rbuf = 0;
219
220 #ifdef DEBUG
221     LOG(log_info, logtype_afpd, "end afp_getfildirparams:");
222 #endif /* DEBUG */
223
224     return( AFP_OK );
225 }
226
227 int afp_setfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
228 AFPObj  *obj;
229 char    *ibuf, *rbuf _U_;
230 int     ibuflen _U_, *rbuflen;
231 {
232     struct stat *st;
233     struct vol  *vol;
234     struct dir  *dir;
235     struct path *path;
236     u_int16_t   vid, bitmap;
237     int         did, rc;
238
239 #ifdef DEBUG
240     LOG(log_info, logtype_afpd, "begin afp_setfildirparams:");
241 #endif /* DEBUG */
242
243     *rbuflen = 0;
244     ibuf += 2;
245     memcpy( &vid, ibuf, sizeof(vid));
246     ibuf += sizeof( vid );
247
248     if (NULL == ( vol = getvolbyvid( vid )) ) {
249         return( AFPERR_PARAM );
250     }
251
252     if (vol->v_flags & AFPVOL_RO)
253         return AFPERR_VLOCK;
254
255     memcpy( &did, ibuf, sizeof( did));
256     ibuf += sizeof( did);
257
258     if (NULL == ( dir = dirlookup( vol, did )) ) {
259         return afp_errno;    
260     }
261
262     memcpy( &bitmap, ibuf, sizeof( bitmap ));
263     bitmap = ntohs( bitmap );
264     ibuf += sizeof( bitmap );
265
266     if (NULL == ( path = cname( vol, dir, &ibuf ))) {
267         return get_afp_errno(AFPERR_NOOBJ); 
268     }
269
270     st   = &path->st;
271     if (!path->st_valid) {
272         /* it's a dir and it should be there
273          * because we chdir in it in cname
274          */
275         of_statdir(vol, path);
276     }
277
278     if ( path->st_errno != 0 ) {
279         return( AFPERR_NOOBJ );
280     }
281     /*
282      * If ibuf is odd, make it even.
283      */
284     if ((u_long)ibuf & 1 ) {
285         ibuf++;
286     }
287
288     if (S_ISDIR(st->st_mode)) {
289         rc = setdirparams(vol, path, bitmap, ibuf );
290     } else {
291         rc = setfilparams(vol, path, bitmap, ibuf );
292     }
293     if ( rc == AFP_OK ) {
294         setvoltime(obj, vol );
295     }
296
297 #ifdef DEBUG
298     LOG(log_info, logtype_afpd, "end afp_setfildirparams:");
299 #endif /* DEBUG */
300
301     return( rc );
302 }
303
304 /* -------------------------------------------- 
305    Factorise some checks on a pathname
306 */
307 int check_name(const struct vol *vol, char *name)
308 {
309     /* check for illegal characters in the unix filename */
310     if (!wincheck(vol, name))
311         return AFPERR_PARAM;
312
313     if ((vol->v_flags & AFPVOL_NOHEX) && strchr(name, '/'))
314         return AFPERR_PARAM;
315
316     if (!vol->validupath(vol, name)) {
317         LOG(log_info, logtype_afpd, "check_name: illegal name: '%s'", name);
318         return AFPERR_EXIST;
319     }
320
321     /* check for vetoed filenames */
322     if (veto_file(vol->v_veto, name))
323         return AFPERR_EXIST;
324     return 0;
325 }
326
327 /* ------------------------- 
328     move and rename sdir:oldname to curdir:newname in volume vol
329    
330     special care is needed for lock   
331 */
332 static int moveandrename(vol, sdir, oldname, newname, isdir)
333 const struct vol        *vol;
334 struct dir      *sdir;
335 char        *oldname;
336 char        *newname;
337 int         isdir;
338 {
339     char            *p;
340     char            *upath;
341     int             rc;
342     struct stat     *st, nst;
343     int             adflags;
344     struct adouble      ad;
345     struct adouble      *adp;
346     struct ofork        *opened = NULL;
347     struct path         path;
348     cnid_t      id;
349
350     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
351     adp = &ad;
352     adflags = 0;
353     
354     if (!isdir) {
355         p = mtoupath(vol, oldname, sdir->d_did, utf8_encoding());
356         if (!p) { 
357             return AFPERR_PARAM; /* can't convert */
358         }
359         id = cnid_get(vol->v_cdb, sdir->d_did, p, strlen(p));
360         p = ctoupath( vol, sdir, oldname );
361         if (!p) { 
362             return AFPERR_PARAM; /* pathname too long */
363         }
364         path.st_valid = 0;
365         path.u_name = p;
366         if ((opened = of_findname(&path))) {
367             /* reuse struct adouble so it won't break locks */
368             adp = opened->of_ad;
369         }
370     }
371     else {
372         id = sdir->d_did; /* we already have the CNID */
373         p = ctoupath( vol, sdir->d_parent, oldname );
374         if (!p) {
375             return AFPERR_PARAM;
376         }
377         adflags = ADFLAGS_DIR;
378     }
379     /*
380      * p now points to the full pathname of the source fs object.
381      * 
382      * we are in the dest folder so we need to use p for ad_open
383     */
384     
385     if (!ad_metadata(p, adflags, adp)) {
386     u_int16_t bshort;
387
388         ad_getattr(adp, &bshort);
389         ad_close( adp, ADFLAGS_HF );
390         if ((bshort & htons(ATTRBIT_NORENAME))) 
391             return(AFPERR_OLOCK);
392     }
393
394     if (NULL == (upath = mtoupath(vol, newname, curdir->d_did, utf8_encoding()))){ 
395         return AFPERR_PARAM;
396     }
397     path.u_name = upath;
398     st = &path.st;    
399     if (0 != (rc = check_name(vol, upath))) {
400             return  rc;
401     }
402
403     /* source == destination. we just silently accept this. */
404     if ((!isdir && curdir == sdir) || (isdir && curdir == sdir->d_parent)) {
405         if (strcmp(oldname, newname) == 0)
406             return AFP_OK;
407
408         if (stat(upath, st) == 0) {
409             if (!stat(p, &nst) && !(nst.st_dev == st->st_dev && nst.st_ino == st->st_ino) ) {
410                 /* not the same file */
411                 return AFPERR_EXIST;
412             }
413             errno = 0;
414         }
415     } else if (stat(upath, st ) == 0)
416         return AFPERR_EXIST;
417
418     if ( !isdir ) {
419         path.st_valid = 1;
420         path.st_errno = errno;
421         if (of_findname(&path)) {
422             rc = AFPERR_EXIST; /* was AFPERR_BUSY; */
423         } else {
424             rc = renamefile(vol, p, upath, newname, adp );
425             if (rc == AFP_OK)
426                 of_rename(vol, opened, sdir, oldname, curdir, newname);
427         }
428     } else {
429         rc = renamedir(vol, p, upath, sdir, curdir, newname);
430     }
431     if ( rc == AFP_OK && id ) {
432         /* renaming may have moved the file/dir across a filesystem */
433         if (stat(upath, st) < 0)
434             return AFPERR_MISC;
435
436         /* fix up the catalog entry */
437         cnid_update(vol->v_cdb, id, st, curdir->d_did, upath, strlen(upath));
438     }
439
440     return rc;
441 }
442
443 /* -------------------------------------------- */
444 int afp_rename(obj, ibuf, ibuflen, rbuf, rbuflen )
445 AFPObj  *obj;
446 char    *ibuf, *rbuf _U_;
447 int     ibuflen _U_, *rbuflen;
448 {
449     struct vol  *vol;
450     struct dir  *sdir;
451     char        *oldname, *newname;
452     struct path *path;
453     u_int32_t   did;
454     int         plen;
455     u_int16_t   vid;
456     int         isdir = 0;
457     int         rc;
458 #ifdef DEBUG
459     LOG(log_info, logtype_afpd, "begin afp_rename:");
460 #endif /* DEBUG */
461
462     *rbuflen = 0;
463     ibuf += 2;
464
465     memcpy( &vid, ibuf, sizeof( vid ));
466     ibuf += sizeof( vid );
467     if (NULL == ( vol = getvolbyvid( vid )) ) {
468         return( AFPERR_PARAM );
469     }
470
471     if (vol->v_flags & AFPVOL_RO)
472         return AFPERR_VLOCK;
473
474     memcpy( &did, ibuf, sizeof( did ));
475     ibuf += sizeof( did );
476     if (NULL == ( sdir = dirlookup( vol, did )) ) {
477         return afp_errno;    
478     }
479
480     /* source pathname */
481     if (NULL == ( path = cname( vol, sdir, &ibuf )) ) {
482         return get_afp_errno(AFPERR_NOOBJ); 
483     }
484
485     sdir = curdir;
486     newname = obj->newtmp;
487     oldname = obj->oldtmp;
488     isdir = path_isadir(path);
489     if ( *path->m_name != '\0' ) {
490         strcpy(oldname, path->m_name); /* an extra copy for of_rename */
491         if (isdir) {
492             /* curdir parent dir, need to move sdir back */
493             sdir = path->d_dir;
494         }
495     }
496     else {
497         if ( sdir->d_parent == NULL ) { /* root directory */
498             return( AFPERR_NORENAME );
499         }
500         /* move to destination dir */
501         if ( movecwd( vol, sdir->d_parent ) < 0 ) {
502             return afp_errno;
503         }
504         strcpy(oldname, sdir->d_m_name);
505     }
506
507     /* another place where we know about the path type */
508     if ((plen = copy_path_name(vol, newname, ibuf)) < 0) {
509         return( AFPERR_PARAM );
510     }
511
512     if (!plen) {
513         return AFP_OK; /* newname == oldname same dir */
514     }
515     
516     rc = moveandrename(vol, sdir, oldname, newname, isdir);
517
518     if ( rc == AFP_OK ) {
519         setvoltime(obj, vol );
520     }
521
522 #ifdef DEBUG
523     LOG(log_info, logtype_afpd, "end afp_rename:");
524 #endif /* DEBUG */
525
526     return( rc );
527 }
528
529 /* ------------------------------- */
530 int afp_delete(obj, ibuf, ibuflen, rbuf, rbuflen )
531 AFPObj  *obj;
532 char    *ibuf, *rbuf _U_;
533 int     ibuflen _U_, *rbuflen;
534 {
535     struct vol          *vol;
536     struct dir          *dir;
537     struct path         *s_path;
538     char                *upath;
539     int                 did, rc;
540     u_int16_t           vid;
541
542 #ifdef DEBUG
543     LOG(log_info, logtype_afpd, "begin afp_delete:");
544 #endif /* DEBUG */ 
545
546     *rbuflen = 0;
547     ibuf += 2;
548
549     memcpy( &vid, ibuf, sizeof( vid ));
550     ibuf += sizeof( vid );
551     if (NULL == ( vol = getvolbyvid( vid )) ) {
552         return( AFPERR_PARAM );
553     }
554
555     if (vol->v_flags & AFPVOL_RO)
556         return AFPERR_VLOCK;
557
558     memcpy( &did, ibuf, sizeof( did ));
559     ibuf += sizeof( int );
560     if (NULL == ( dir = dirlookup( vol, did )) ) {
561         return afp_errno;    
562     }
563
564     if (NULL == ( s_path = cname( vol, dir, &ibuf )) ) {
565         return get_afp_errno(AFPERR_NOOBJ); 
566     }
567
568     upath = s_path->u_name;
569     if ( path_isadir( s_path) ) {
570         if (*s_path->m_name != '\0') {
571             rc = AFPERR_ACCESS;
572         }
573         else {
574             rc = deletecurdir( vol, obj->oldtmp);
575         }
576     } else if (of_findname(s_path)) {
577         rc = AFPERR_BUSY;
578     } else {
579         rc = deletefile(vol, upath, 1);
580     }
581     if ( rc == AFP_OK ) {
582         curdir->offcnt--;
583         setvoltime(obj, vol );
584     }
585
586 #ifdef DEBUG
587     LOG(log_info, logtype_afpd, "end afp_delete:");
588 #endif /* DEBUG */
589
590     return( rc );
591 }
592 /* ------------------------ */
593 char *absupath( vol, dir, u )
594 const struct vol        *vol;
595 struct dir      *dir;
596 char    *u;
597 {
598     struct dir  *d;
599     static char path[ MAXPATHLEN + 1];
600     char        *p;
601     int         len;
602
603     if (u == NULL)
604         return NULL;
605         
606     p = path + sizeof( path ) - 1;
607     *p = '\0';
608     len = strlen( u );
609     p -= len;
610     memcpy( p, u, len );
611     if (dir) for ( d = dir; d->d_parent; d = d->d_parent ) {
612         u = d->d_u_name;
613         len = strlen( u );
614         if (p -len -1 < path) {
615             /* FIXME 
616                rather rare so LOG error and/or client message ?
617             */
618             return NULL;
619         }
620         *--p = '/';
621         p -= len;
622         memcpy( p, u, len );
623     }
624     len = strlen( vol->v_path );
625     if (p -len -1 < path) {
626         return NULL;
627     }
628     *--p = '/';
629     p -= len;
630     memcpy( p, vol->v_path, len );
631
632     return( p );
633 }
634
635 /* ------------------------
636  * FIXME dir could be NULL
637 */
638 char *ctoupath( vol, dir, name )
639 const struct vol        *vol;
640 struct dir      *dir;
641 char    *name;
642 {
643     return absupath(vol, dir, mtoupath(vol, name, dir->d_did, utf8_encoding()));
644 }
645
646 /* ------------------------- */
647 int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
648 AFPObj  *obj;
649 char    *ibuf, *rbuf _U_;
650 int     ibuflen  _U_, *rbuflen;
651 {
652     struct vol  *vol;
653     struct dir  *sdir, *ddir;
654     int         isdir;
655     char        *oldname, *newname;
656     struct path *path;
657     int         did;
658     int         pdid;
659     int         plen;
660     u_int16_t   vid;
661     int         rc;
662 #ifdef DROPKLUDGE
663     int         retvalue;
664 #endif /* DROPKLUDGE */
665
666 #ifdef DEBUG
667     LOG(log_info, logtype_afpd, "begin afp_moveandrename:");
668 #endif /* DEBUG */
669
670     *rbuflen = 0;
671     ibuf += 2;
672
673     memcpy( &vid, ibuf, sizeof( vid ));
674     ibuf += sizeof( vid );
675     if (NULL == ( vol = getvolbyvid( vid )) ) {
676         return( AFPERR_PARAM );
677     }
678
679     if (vol->v_flags & AFPVOL_RO)
680         return AFPERR_VLOCK;
681
682     /* source did followed by dest did */
683     memcpy( &did, ibuf, sizeof( did ));
684     ibuf += sizeof( int );
685     if (NULL == ( sdir = dirlookup( vol, did )) ) {
686         return afp_errno; /* was AFPERR_PARAM */
687     }
688
689     memcpy( &did, ibuf, sizeof( did ));
690     ibuf += sizeof( int );
691
692     /* source pathname */
693     if (NULL == ( path = cname( vol, sdir, &ibuf )) ) {
694         return get_afp_errno(AFPERR_NOOBJ); 
695     }
696
697     sdir = curdir;
698     newname = obj->newtmp;
699     oldname = obj->oldtmp;
700     
701     isdir = path_isadir(path);
702     if ( *path->m_name != '\0' ) {
703         if (isdir) {
704             sdir = path->d_dir;
705         }
706         strcpy(oldname, path->m_name); /* an extra copy for of_rename */
707     } else {
708         strcpy(oldname, sdir->d_m_name);
709     }
710
711     /* get the destination directory */
712     if (NULL == ( ddir = dirlookup( vol, did )) ) {
713         return afp_errno; /*  was AFPERR_PARAM */
714     }
715     if (NULL == ( path = cname( vol, ddir, &ibuf ))) {
716         return( AFPERR_NOOBJ );
717     }
718     pdid = curdir->d_did;
719     if ( *path->m_name != '\0' ) {
720         return path_error(path, AFPERR_NOOBJ);
721     }
722
723     /* one more place where we know about path type */
724     if ((plen = copy_path_name(vol, newname, ibuf)) < 0) {
725         return( AFPERR_PARAM );
726     }
727
728     if (!plen) {
729         strcpy(newname, oldname);
730     }
731
732     rc = moveandrename(vol, sdir, oldname, newname, isdir);
733
734     if ( rc == AFP_OK ) {
735         char *upath = mtoupath(vol, newname, pdid, utf8_encoding());
736         
737         if (NULL == upath) {
738             return AFPERR_PARAM;
739         }
740         curdir->offcnt++;
741         sdir->offcnt--;
742 #ifdef DROPKLUDGE
743         if (vol->v_flags & AFPVOL_DROPBOX) {
744             /* FIXME did is not always the source id */
745             if ((retvalue=matchfile2dirperms (upath, vol, did)) != AFP_OK) {
746                 return retvalue;
747             }
748         }
749         else
750 #endif /* DROPKLUDGE */
751             /* if unix priv don't try to match perm with dest folder */
752             if (!isdir && !vol_unix_priv(vol)) {
753                 int  admode = ad_mode("", 0777) | vol->v_fperm;
754
755                 setfilmode(upath, admode, NULL);
756                 setfilmode(vol->ad_path( upath, ADFLAGS_HF ), ad_hf_mode(admode), NULL);
757             }
758         setvoltime(obj, vol );
759     }
760
761 #ifdef DEBUG
762     LOG(log_info, logtype_afpd, "end afp_moveandrename:");
763 #endif /* DEBUG */
764
765     return( rc );
766 }
767
768 int veto_file(const char*veto_str, const char*path)
769 /* given a veto_str like "abc/zxc/" and path "abc", return 1
770  * veto_str should be '/' delimited
771  * if path matches any one of the veto_str elements exactly, then 1 is returned
772  * otherwise, 0 is returned.
773  */
774 {
775     int i;      /* index to veto_str */
776     int j;      /* index to path */
777
778     if ((veto_str == NULL) || (path == NULL))
779         return 0;
780
781     for(i=0, j=0; veto_str[i] != '\0'; i++) {
782         if (veto_str[i] == '/') {
783             if ((j>0) && (path[j] == '\0')) {
784                 LOG(log_info, logtype_afpd, "vetoed file:'%s'", path);
785                 return 1;
786             }
787             j = 0;
788         } else {
789             if (veto_str[i] != path[j]) {
790                 while ((veto_str[i] != '/')
791                         && (veto_str[i] != '\0'))
792                     i++;
793                 j = 0;
794                 continue;
795             }
796             j++;
797         }
798     }
799     return 0;
800 }
801