]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/filedir.c
remove gcc warnings and cleanup inline mess
[netatalk.git] / etc / afpd / filedir.c
1 /*
2  * $Id: filedir.c,v 1.45.2.2.2.14.2.5 2008-11-25 15:16:33 didg 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         return AFPERR_EXIST;
318
319     /* check for vetoed filenames */
320     if (veto_file(vol->v_veto, name))
321         return AFPERR_EXIST;
322     return 0;
323 }
324
325 /* ------------------------- 
326     move and rename sdir:oldname to curdir:newname in volume vol
327    
328     special care is needed for lock   
329 */
330 static int moveandrename(vol, sdir, oldname, newname, isdir)
331 const struct vol        *vol;
332 struct dir      *sdir;
333 char        *oldname;
334 char        *newname;
335 int         isdir;
336 {
337     char            *p;
338     char            *upath;
339     int             rc;
340     struct stat     *st, nst;
341     int             adflags;
342     struct adouble      ad;
343     struct adouble      *adp;
344     struct ofork        *opened = NULL;
345     struct path         path;
346     cnid_t      id;
347
348     ad_init(&ad, vol->v_adouble, vol->v_ad_options);
349     adp = &ad;
350     adflags = 0;
351     
352     if (!isdir) {
353         p = mtoupath(vol, oldname, sdir->d_did, utf8_encoding());
354         if (!p) { 
355             return AFPERR_PARAM; /* can't convert */
356         }
357         id = cnid_get(vol->v_cdb, sdir->d_did, p, strlen(p));
358         p = ctoupath( vol, sdir, oldname );
359         if (!p) { 
360             return AFPERR_PARAM; /* pathname too long */
361         }
362         path.st_valid = 0;
363         path.u_name = p;
364         if ((opened = of_findname(&path))) {
365             /* reuse struct adouble so it won't break locks */
366             adp = opened->of_ad;
367         }
368     }
369     else {
370         id = sdir->d_did; /* we already have the CNID */
371         p = ctoupath( vol, sdir->d_parent, oldname );
372         if (!p) {
373             return AFPERR_PARAM;
374         }
375         adflags = ADFLAGS_DIR;
376     }
377     /*
378      * p now points to the full pathname of the source fs object.
379      * 
380      * we are in the dest folder so we need to use p for ad_open
381     */
382     
383     if (!ad_metadata(p, adflags, adp)) {
384     u_int16_t bshort;
385
386         ad_getattr(adp, &bshort);
387         ad_close( adp, ADFLAGS_HF );
388         if ((bshort & htons(ATTRBIT_NORENAME))) 
389             return(AFPERR_OLOCK);
390     }
391
392     if (NULL == (upath = mtoupath(vol, newname, curdir->d_did, utf8_encoding()))){ 
393         return AFPERR_PARAM;
394     }
395     path.u_name = upath;
396     st = &path.st;    
397     if (0 != (rc = check_name(vol, upath))) {
398             return  rc;
399     }
400
401     /* source == destination. we just silently accept this. */
402     if ((!isdir && curdir == sdir) || (isdir && curdir == sdir->d_parent)) {
403         if (strcmp(oldname, newname) == 0)
404             return AFP_OK;
405
406         if (stat(upath, st) == 0) {
407             if (!stat(p, &nst) && !(nst.st_dev == st->st_dev && nst.st_ino == st->st_ino) ) {
408                 /* not the same file */
409                 return AFPERR_EXIST;
410             }
411             errno = 0;
412         }
413     } else if (stat(upath, st ) == 0)
414         return AFPERR_EXIST;
415
416     if ( !isdir ) {
417         path.st_valid = 1;
418         path.st_errno = errno;
419         if (of_findname(&path)) {
420             rc = AFPERR_EXIST; /* was AFPERR_BUSY; */
421         } else {
422             rc = renamefile(vol, p, upath, newname, adp );
423             if (rc == AFP_OK)
424                 of_rename(vol, opened, sdir, oldname, curdir, newname);
425         }
426     } else {
427         rc = renamedir(vol, p, upath, sdir, curdir, newname);
428     }
429     if ( rc == AFP_OK && id ) {
430         /* renaming may have moved the file/dir across a filesystem */
431         if (stat(upath, st) < 0)
432             return AFPERR_MISC;
433
434         /* fix up the catalog entry */
435         cnid_update(vol->v_cdb, id, st, curdir->d_did, upath, strlen(upath));
436     }
437
438     return rc;
439 }
440
441 /* -------------------------------------------- */
442 int afp_rename(obj, ibuf, ibuflen, rbuf, rbuflen )
443 AFPObj  *obj;
444 char    *ibuf, *rbuf _U_;
445 int     ibuflen _U_, *rbuflen;
446 {
447     struct vol  *vol;
448     struct dir  *sdir;
449     char        *oldname, *newname;
450     struct path *path;
451     u_int32_t   did;
452     int         plen;
453     u_int16_t   vid;
454     int         isdir = 0;
455     int         rc;
456 #ifdef DEBUG
457     LOG(log_info, logtype_afpd, "begin afp_rename:");
458 #endif /* DEBUG */
459
460     *rbuflen = 0;
461     ibuf += 2;
462
463     memcpy( &vid, ibuf, sizeof( vid ));
464     ibuf += sizeof( vid );
465     if (NULL == ( vol = getvolbyvid( vid )) ) {
466         return( AFPERR_PARAM );
467     }
468
469     if (vol->v_flags & AFPVOL_RO)
470         return AFPERR_VLOCK;
471
472     memcpy( &did, ibuf, sizeof( did ));
473     ibuf += sizeof( did );
474     if (NULL == ( sdir = dirlookup( vol, did )) ) {
475         return afp_errno;    
476     }
477
478     /* source pathname */
479     if (NULL == ( path = cname( vol, sdir, &ibuf )) ) {
480         return get_afp_errno(AFPERR_NOOBJ); 
481     }
482
483     sdir = curdir;
484     newname = obj->newtmp;
485     oldname = obj->oldtmp;
486     isdir = path_isadir(path);
487     if ( *path->m_name != '\0' ) {
488         strcpy(oldname, path->m_name); /* an extra copy for of_rename */
489         if (isdir) {
490             /* curdir parent dir, need to move sdir back */
491             sdir = path->d_dir;
492         }
493     }
494     else {
495         if ( sdir->d_parent == NULL ) { /* root directory */
496             return( AFPERR_NORENAME );
497         }
498         /* move to destination dir */
499         if ( movecwd( vol, sdir->d_parent ) < 0 ) {
500             return afp_errno;
501         }
502         strcpy(oldname, sdir->d_m_name);
503     }
504
505     /* another place where we know about the path type */
506     if ((plen = copy_path_name(vol, newname, ibuf)) < 0) {
507         return( AFPERR_PARAM );
508     }
509
510     if (!plen) {
511         return AFP_OK; /* newname == oldname same dir */
512     }
513     
514     rc = moveandrename(vol, sdir, oldname, newname, isdir);
515
516     if ( rc == AFP_OK ) {
517         setvoltime(obj, vol );
518     }
519
520 #ifdef DEBUG
521     LOG(log_info, logtype_afpd, "end afp_rename:");
522 #endif /* DEBUG */
523
524     return( rc );
525 }
526
527 /* ------------------------------- */
528 int afp_delete(obj, ibuf, ibuflen, rbuf, rbuflen )
529 AFPObj  *obj;
530 char    *ibuf, *rbuf _U_;
531 int     ibuflen _U_, *rbuflen;
532 {
533     struct vol          *vol;
534     struct dir          *dir;
535     struct path         *s_path;
536     char                *upath;
537     int                 did, rc;
538     u_int16_t           vid;
539
540 #ifdef DEBUG
541     LOG(log_info, logtype_afpd, "begin afp_delete:");
542 #endif /* DEBUG */ 
543
544     *rbuflen = 0;
545     ibuf += 2;
546
547     memcpy( &vid, ibuf, sizeof( vid ));
548     ibuf += sizeof( vid );
549     if (NULL == ( vol = getvolbyvid( vid )) ) {
550         return( AFPERR_PARAM );
551     }
552
553     if (vol->v_flags & AFPVOL_RO)
554         return AFPERR_VLOCK;
555
556     memcpy( &did, ibuf, sizeof( did ));
557     ibuf += sizeof( int );
558     if (NULL == ( dir = dirlookup( vol, did )) ) {
559         return afp_errno;    
560     }
561
562     if (NULL == ( s_path = cname( vol, dir, &ibuf )) ) {
563         return get_afp_errno(AFPERR_NOOBJ); 
564     }
565
566     upath = s_path->u_name;
567     if ( path_isadir( s_path) ) {
568         if (*s_path->m_name != '\0') {
569             rc = AFPERR_ACCESS;
570         }
571         else {
572             rc = deletecurdir( vol, obj->oldtmp);
573         }
574     } else if (of_findname(s_path)) {
575         rc = AFPERR_BUSY;
576     } else {
577         rc = deletefile(vol, upath, 1);
578     }
579     if ( rc == AFP_OK ) {
580         curdir->offcnt--;
581         setvoltime(obj, vol );
582     }
583
584 #ifdef DEBUG
585     LOG(log_info, logtype_afpd, "end afp_delete:");
586 #endif /* DEBUG */
587
588     return( rc );
589 }
590 /* ------------------------ */
591 char *absupath( vol, dir, u )
592 const struct vol        *vol;
593 struct dir      *dir;
594 char    *u;
595 {
596     struct dir  *d;
597     static char path[ MAXPATHLEN + 1];
598     char        *p;
599     int         len;
600
601     if (u == NULL)
602         return NULL;
603         
604     p = path + sizeof( path ) - 1;
605     *p = '\0';
606     len = strlen( u );
607     p -= len;
608     memcpy( p, u, len );
609     if (dir) for ( d = dir; d->d_parent; d = d->d_parent ) {
610         u = d->d_u_name;
611         len = strlen( u );
612         if (p -len -1 < path) {
613             /* FIXME 
614                rather rare so LOG error and/or client message ?
615             */
616             return NULL;
617         }
618         *--p = '/';
619         p -= len;
620         memcpy( p, u, len );
621     }
622     len = strlen( vol->v_path );
623     if (p -len -1 < path) {
624         return NULL;
625     }
626     *--p = '/';
627     p -= len;
628     memcpy( p, vol->v_path, len );
629
630     return( p );
631 }
632
633 /* ------------------------
634  * FIXME dir could be NULL
635 */
636 char *ctoupath( vol, dir, name )
637 const struct vol        *vol;
638 struct dir      *dir;
639 char    *name;
640 {
641     return absupath(vol, dir, mtoupath(vol, name, dir->d_did, utf8_encoding()));
642 }
643
644 /* ------------------------- */
645 int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
646 AFPObj  *obj;
647 char    *ibuf, *rbuf _U_;
648 int     ibuflen  _U_, *rbuflen;
649 {
650     struct vol  *vol;
651     struct dir  *sdir, *ddir;
652     int         isdir;
653     char        *oldname, *newname;
654     struct path *path;
655     int         did;
656     int         pdid;
657     int         plen;
658     u_int16_t   vid;
659     int         rc;
660 #ifdef DROPKLUDGE
661     int         retvalue;
662 #endif /* DROPKLUDGE */
663
664 #ifdef DEBUG
665     LOG(log_info, logtype_afpd, "begin afp_moveandrename:");
666 #endif /* DEBUG */
667
668     *rbuflen = 0;
669     ibuf += 2;
670
671     memcpy( &vid, ibuf, sizeof( vid ));
672     ibuf += sizeof( vid );
673     if (NULL == ( vol = getvolbyvid( vid )) ) {
674         return( AFPERR_PARAM );
675     }
676
677     if (vol->v_flags & AFPVOL_RO)
678         return AFPERR_VLOCK;
679
680     /* source did followed by dest did */
681     memcpy( &did, ibuf, sizeof( did ));
682     ibuf += sizeof( int );
683     if (NULL == ( sdir = dirlookup( vol, did )) ) {
684         return afp_errno; /* was AFPERR_PARAM */
685     }
686
687     memcpy( &did, ibuf, sizeof( did ));
688     ibuf += sizeof( int );
689
690     /* source pathname */
691     if (NULL == ( path = cname( vol, sdir, &ibuf )) ) {
692         return get_afp_errno(AFPERR_NOOBJ); 
693     }
694
695     sdir = curdir;
696     newname = obj->newtmp;
697     oldname = obj->oldtmp;
698     
699     isdir = path_isadir(path);
700     if ( *path->m_name != '\0' ) {
701         if (isdir) {
702             sdir = path->d_dir;
703         }
704         strcpy(oldname, path->m_name); /* an extra copy for of_rename */
705     } else {
706         strcpy(oldname, sdir->d_m_name);
707     }
708
709     /* get the destination directory */
710     if (NULL == ( ddir = dirlookup( vol, did )) ) {
711         return afp_errno; /*  was AFPERR_PARAM */
712     }
713     if (NULL == ( path = cname( vol, ddir, &ibuf ))) {
714         return( AFPERR_NOOBJ );
715     }
716     pdid = curdir->d_did;
717     if ( *path->m_name != '\0' ) {
718         return path_error(path, AFPERR_NOOBJ);
719     }
720
721     /* one more place where we know about path type */
722     if ((plen = copy_path_name(vol, newname, ibuf)) < 0) {
723         return( AFPERR_PARAM );
724     }
725
726     if (!plen) {
727         strcpy(newname, oldname);
728     }
729
730     rc = moveandrename(vol, sdir, oldname, newname, isdir);
731
732     if ( rc == AFP_OK ) {
733         char *upath = mtoupath(vol, newname, pdid, utf8_encoding());
734         
735         if (NULL == upath) {
736             return AFPERR_PARAM;
737         }
738         curdir->offcnt++;
739         sdir->offcnt--;
740 #ifdef DROPKLUDGE
741         if (vol->v_flags & AFPVOL_DROPBOX) {
742             /* FIXME did is not always the source id */
743             if ((retvalue=matchfile2dirperms (upath, vol, did)) != AFP_OK) {
744                 return retvalue;
745             }
746         }
747         else
748 #endif /* DROPKLUDGE */
749             /* if unix priv don't try to match perm with dest folder */
750             if (!isdir && !vol_unix_priv(vol)) {
751                 int  admode = ad_mode("", 0777) | vol->v_perm;
752
753                 setfilmode(upath, admode, NULL);
754                 setfilmode(vol->ad_path( upath, ADFLAGS_HF ), ad_hf_mode(admode), NULL);
755             }
756         setvoltime(obj, vol );
757     }
758
759 #ifdef DEBUG
760     LOG(log_info, logtype_afpd, "end afp_moveandrename:");
761 #endif /* DEBUG */
762
763     return( rc );
764 }
765
766 int veto_file(const char*veto_str, const char*path)
767 /* given a veto_str like "abc/zxc/" and path "abc", return 1
768  * veto_str should be '/' delimited
769  * if path matches any one of the veto_str elements exactly, then 1 is returned
770  * otherwise, 0 is returned.
771  */
772 {
773     int i;      /* index to veto_str */
774     int j;      /* index to path */
775
776     if ((veto_str == NULL) || (path == NULL))
777         return 0;
778     /*
779     #ifdef DEBUG
780         LOG(log_debug, logtype_afpd, "veto_file \"%s\", \"%s\"", veto_str, path);
781     #endif
782     */
783     for(i=0, j=0; veto_str[i] != '\0'; i++) {
784         if (veto_str[i] == '/') {
785             if ((j>0) && (path[j] == '\0'))
786                 return 1;
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