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