]> arthur.barton.de Git - netatalk.git/blobdiff - etc/afpd/filedir.c
BIG commit to improve code style using astyle as well as fix up CNID DB
[netatalk.git] / etc / afpd / filedir.c
index c8c801180739cffa29eebe9e7364603492df38d3..b8204d0b27e00e2ed31ab7e782f180b9c6884de6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: filedir.c,v 1.15 2001-10-23 13:44:37 rufustfirefly Exp $
+ * $Id: filedir.c,v 1.15.2.1 2001-12-03 05:01:04 jmarcus Exp $
  *
  * Copyright (c) 1990,1993 Regents of The University of Michigan.
  * All Rights Reserved.  See COPYRIGHT.
@@ -56,14 +56,14 @@ char *strchr (), *strrchr ();
 #include "filedir.h"
 
 int matchfile2dirperms(upath, vol, did)
-                              /* Since it's kinda' big; I decided against an
-                              inline function */
-    char       *upath;
-    struct vol  *vol;
-    int                did;
-  /* The below code changes the way file ownership is determined in the name of
-  fixing dropboxes.  It has known security problem.  See the netatalk FAQ for
-  more information */
+/* Since it's kinda' big; I decided against an
+inline function */
+char   *upath;
+struct vol  *vol;
+int            did;
+/* The below code changes the way file ownership is determined in the name of
+fixing dropboxes.  It has known security problem.  See the netatalk FAQ for
+more information */
 {
     struct stat        st, sb;
     struct dir *dir;
@@ -75,69 +75,69 @@ int matchfile2dirperms(upath, vol, did)
 #endif /* DEBUG */
 
     if (stat(upath, &st ) < 0)
-      syslog(LOG_ERR, "Could not stat %s: %s", upath, strerror(errno));
+        syslog(LOG_ERR, "Could not stat %s: %s", upath, strerror(errno));
     strcpy (adpath, "./.AppleDouble/");
     strcat (adpath, upath);
     if (( dir = dirsearch( vol, did )) == NULL ) {
-      syslog (LOG_ERR, "matchfile2dirperms: Unable to get directory info.");
-      return( AFPERR_NOOBJ );
+        syslog (LOG_ERR, "matchfile2dirperms: Unable to get directory info.");
+        return( AFPERR_NOOBJ );
     }
     else if (stat(".", &sb) < 0) {
-        syslog (LOG_ERR, 
-          "matchfile2dirperms: Error checking directory \"%s\": %s", 
-          dir->d_name, strerror(errno));
+        syslog (LOG_ERR,
+                "matchfile2dirperms: Error checking directory \"%s\": %s",
+                dir->d_name, strerror(errno));
         return(AFPERR_NOOBJ );
-      }
+    }
     else {
-       uid=geteuid();
-       if ( uid != sb.st_uid )
+        uid=geteuid();
+        if ( uid != sb.st_uid )
         {
-         seteuid(0);
-         if (lchown(upath, sb.st_uid, sb.st_gid) < 0)
-          {
-            syslog (LOG_ERR, 
-             "matchfile2dirperms: Error changing owner/gid of %s: %s",
-                   upath, strerror(errno));
-            return (AFPERR_ACCESS);
-          }
-          if (chmod(upath,(st.st_mode&0777&~default_options.umask)| S_IRGRP| S_IROTH) < 0)
-          {
-            syslog (LOG_ERR, 
-             "matchfile2dirperms:  Error adding file read permissions: %s",
-                   strerror(errno));
-            return (AFPERR_ACCESS);
-          }
+            seteuid(0);
+            if (lchown(upath, sb.st_uid, sb.st_gid) < 0)
+            {
+                syslog (LOG_ERR,
+                        "matchfile2dirperms: Error changing owner/gid of %s: %s",
+                        upath, strerror(errno));
+                return (AFPERR_ACCESS);
+            }
+            if (chmod(upath,(st.st_mode&0777&~default_options.umask)| S_IRGRP| S_IROTH) < 0)
+            {
+                syslog (LOG_ERR,
+                        "matchfile2dirperms:  Error adding file read permissions: %s",
+                        strerror(errno));
+                return (AFPERR_ACCESS);
+            }
 #ifdef DEBUG
-          else 
-           syslog (LOG_INFO, 
-             "matchfile2dirperms:  Added S_IRGRP and S_IROTH: %s",
-                   strerror(errno));
+            else
+                syslog (LOG_INFO,
+                        "matchfile2dirperms:  Added S_IRGRP and S_IROTH: %s",
+                        strerror(errno));
 #endif /* DEBUG */
-          if (lchown(adpath, sb.st_uid, sb.st_gid) < 0)
-          {
-           syslog (LOG_ERR, 
-             "matchfile2dirperms: Error changing AppleDouble owner/gid %s: %s",
-             adpath, strerror(errno));
-            return (AFPERR_ACCESS);
-         }
-          if (chmod(adpath, (st.st_mode&0777&~default_options.umask)| S_IRGRP| S_IROTH) < 0)
-          {
-            syslog (LOG_ERR, 
-             "matchfile2dirperms:  Error adding AD file read permissions: %s",
-                   strerror(errno));
-            return (AFPERR_ACCESS);
-          }
+            if (lchown(adpath, sb.st_uid, sb.st_gid) < 0)
+            {
+                syslog (LOG_ERR,
+                        "matchfile2dirperms: Error changing AppleDouble owner/gid %s: %s",
+                        adpath, strerror(errno));
+                return (AFPERR_ACCESS);
+            }
+            if (chmod(adpath, (st.st_mode&0777&~default_options.umask)| S_IRGRP| S_IROTH) < 0)
+            {
+                syslog (LOG_ERR,
+                        "matchfile2dirperms:  Error adding AD file read permissions: %s",
+                        strerror(errno));
+                return (AFPERR_ACCESS);
+            }
 #ifdef DEBUG
-          else 
-           syslog (LOG_INFO, 
-             "matchfile2dirperms:  Added S_IRGRP and S_IROTH to AD: %s",
-                   strerror(errno));
+            else
+                syslog (LOG_INFO,
+                        "matchfile2dirperms:  Added S_IRGRP and S_IROTH to AD: %s",
+                        strerror(errno));
 #endif /* DEBUG */
-       }
+        }
 #ifdef DEBUG
         else
-         syslog (LOG_INFO, 
-           "matchfile2dirperms: No ownership change necessary.");
+            syslog (LOG_INFO,
+                    "matchfile2dirperms: No ownership change necessary.");
 #endif /* DEBUG */
     } /* end else if stat success */
     seteuid(uid); /* Restore process ownership to normal */
@@ -148,12 +148,12 @@ int matchfile2dirperms(upath, vol, did)
     return (AFP_OK);
 
 }
-    
+
 
 int afp_getfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
-    AFPObj      *obj;
-    char       *ibuf, *rbuf;
-    int                ibuflen, *rbuflen;
+AFPObj      *obj;
+char   *ibuf, *rbuf;
+int            ibuflen, *rbuflen;
 {
     struct stat                st;
     struct vol         *vol;
@@ -173,14 +173,14 @@ int afp_getfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
     memcpy( &vid, ibuf, sizeof( vid ));
     ibuf += sizeof( vid );
     if (( vol = getvolbyvid( vid )) == NULL ) {
-       return( AFPERR_PARAM );
+        return( AFPERR_PARAM );
     }
 
     memcpy( &did, ibuf, sizeof( did ));
     ibuf += sizeof( did );
 
     if (( dir = dirsearch( vol, did )) == NULL ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     memcpy( &fbitmap, ibuf, sizeof( fbitmap ));
@@ -191,30 +191,30 @@ int afp_getfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
     ibuf += sizeof( dbitmap );
 
     if (( path = cname( vol, dir, &ibuf )) == NULL) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     if ( stat( mtoupath(vol, path ), &st ) < 0 ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     buflen = 0;
     if (S_ISDIR(st.st_mode)) {
-       if (dbitmap) {
-           ret = getdirparams(vol, dbitmap, ".", curdir,
-                              &st, rbuf + 3 * sizeof( u_int16_t ), &buflen );
-           if (ret != AFP_OK )
-               return( ret );
-       }
+        if (dbitmap) {
+            ret = getdirparams(vol, dbitmap, ".", curdir,
+                               &st, rbuf + 3 * sizeof( u_int16_t ), &buflen );
+            if (ret != AFP_OK )
+                return( ret );
+        }
         /* this is a directory */
-       *(rbuf + 2 * sizeof( u_int16_t )) = (char) FILDIRBIT_ISDIR; 
+        *(rbuf + 2 * sizeof( u_int16_t )) = (char) FILDIRBIT_ISDIR;
     } else {
-       if (fbitmap && ( ret = getfilparams(vol, fbitmap, path, curdir, &st,
-               rbuf + 3 * sizeof( u_int16_t ), &buflen )) != AFP_OK ) {
-           return( ret );
-       }
+        if (fbitmap && ( ret = getfilparams(vol, fbitmap, path, curdir, &st,
+                                            rbuf + 3 * sizeof( u_int16_t ), &buflen )) != AFP_OK ) {
+            return( ret );
+        }
         /* this is a file */
-       *(rbuf + 2 * sizeof( u_int16_t )) = FILDIRBIT_ISFILE;
+        *(rbuf + 2 * sizeof( u_int16_t )) = FILDIRBIT_ISFILE;
     }
     *rbuflen = buflen + 3 * sizeof( u_int16_t );
     fbitmap = htons( fbitmap );
@@ -233,9 +233,9 @@ int afp_getfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
 }
 
 int afp_setfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
-    AFPObj      *obj;
-    char       *ibuf, *rbuf;
-    int                ibuflen, *rbuflen;
+AFPObj      *obj;
+char   *ibuf, *rbuf;
+int            ibuflen, *rbuflen;
 {
     struct stat        st;
     struct vol *vol;
@@ -254,7 +254,7 @@ int afp_setfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
     ibuf += sizeof( vid );
 
     if (( vol = getvolbyvid( vid )) == NULL ) {
-       return( AFPERR_PARAM );
+        return( AFPERR_PARAM );
     }
 
     if (vol->v_flags & AFPVOL_RO)
@@ -264,7 +264,7 @@ int afp_setfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
     ibuf += sizeof( did);
 
     if (( dir = dirsearch( vol, did )) == NULL ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     memcpy( &bitmap, ibuf, sizeof( bitmap ));
@@ -272,27 +272,27 @@ int afp_setfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
     ibuf += sizeof( bitmap );
 
     if (( path = cname( vol, dir, &ibuf )) == NULL ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     if ( stat( mtoupath(vol, path ), &st ) < 0 ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     /*
      * If ibuf is odd, make it even.
      */
     if ((u_long)ibuf & 1 ) {
-       ibuf++;
+        ibuf++;
     }
 
     if (S_ISDIR(st.st_mode)) {
-       rc = setdirparams(vol, path, bitmap, ibuf );
+        rc = setdirparams(vol, path, bitmap, ibuf );
     } else {
-       rc = setfilparams(vol, path, bitmap, ibuf );
+        rc = setfilparams(vol, path, bitmap, ibuf );
     }
     if ( rc == AFP_OK ) {
-       setvoltime(obj, vol );
+        setvoltime(obj, vol );
     }
 
 #ifdef DEBUG
@@ -303,9 +303,9 @@ int afp_setfildirparams(obj, ibuf, ibuflen, rbuf, rbuflen )
 }
 
 int afp_rename(obj, ibuf, ibuflen, rbuf, rbuflen )
-    AFPObj      *obj;
-    char       *ibuf, *rbuf;
-    int                ibuflen, *rbuflen;
+AFPObj      *obj;
+char   *ibuf, *rbuf;
+int            ibuflen, *rbuflen;
 {
     struct adouble     ad;
     struct stat                st;
@@ -330,7 +330,7 @@ int afp_rename(obj, ibuf, ibuflen, rbuf, rbuflen )
     memcpy( &vid, ibuf, sizeof( vid ));
     ibuf += sizeof( vid );
     if (( vol = getvolbyvid( vid )) == NULL ) {
-       return( AFPERR_PARAM );
+        return( AFPERR_PARAM );
     }
 
     if (vol->v_flags & AFPVOL_RO)
@@ -339,34 +339,34 @@ int afp_rename(obj, ibuf, ibuflen, rbuf, rbuflen )
     memcpy( &did, ibuf, sizeof( did ));
     ibuf += sizeof( did );
     if (( dir = dirsearch( vol, did )) == NULL ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     if (( path = cname( vol, dir, &ibuf )) == NULL ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     /* another place where we know about the path type */
     if ( *ibuf++ != 2 ) {
-       return( AFPERR_PARAM );
+        return( AFPERR_PARAM );
     }
     plen = (unsigned char) *ibuf++;
     *( ibuf + plen ) = '\0';
 
     if ( *path == '\0' ) {
         if ( curdir->d_parent == NULL ) { /* root directory */
-           return( AFPERR_NORENAME );
-       }
-       odir = curdir;
-       path = curdir->d_name;
-       if ( movecwd( vol, curdir->d_parent ) < 0 ) {
-           return( AFPERR_NOOBJ );
-       }
+            return( AFPERR_NORENAME );
+        }
+        odir = curdir;
+        path = curdir->d_name;
+        if ( movecwd( vol, curdir->d_parent ) < 0 ) {
+            return( AFPERR_NOOBJ );
+        }
     }
 
 #ifdef notdef
     if ( strcasecmp( path, ibuf ) == 0 ) {
-       return( AFP_OK );
+        return( AFP_OK );
     }
 #endif /* notdef */
 
@@ -379,18 +379,18 @@ int afp_rename(obj, ibuf, ibuflen, rbuf, rbuflen )
         return AFP_OK;
 
     /* check for illegal characters */
-    if ((vol->v_flags & AFPVOL_MSWINDOWS) && 
-       strpbrk(ibuf, MSWINDOWS_BADCHARS))
+    if ((vol->v_flags & AFPVOL_MSWINDOWS) &&
+            strpbrk(ibuf, MSWINDOWS_BADCHARS))
         return AFPERR_PARAM;
 
     newpath = obj->oldtmp;
     strcpy( newpath, mtoupath(vol, ibuf ));
 
     if ((vol->v_flags & AFPVOL_NOHEX) && strchr(newpath, '/'))
-      return AFPERR_PARAM;
+        return AFPERR_PARAM;
 
     if (!validupath(vol, newpath))
-      return AFPERR_EXIST;
+        return AFPERR_EXIST;
 
     /* check for vetoed filenames */
     if (veto_file(vol->v_veto, newpath))
@@ -399,7 +399,7 @@ int afp_rename(obj, ibuf, ibuflen, rbuf, rbuflen )
     /* the strdiacasecmp deals with case-insensitive, case preserving
        filesystems */
     if (stat( newpath, &st ) == 0 && strdiacasecmp(path, ibuf))
-       return( AFPERR_EXIST );
+        return( AFPERR_EXIST );
 
     upath = mtoupath(vol, path);
 
@@ -408,62 +408,62 @@ int afp_rename(obj, ibuf, ibuflen, rbuf, rbuflen )
 #endif /* CNID_DB */
 
     if ( rename( upath, newpath ) < 0 ) {
-       switch ( errno ) {
-       case ENOENT :
-           return( AFPERR_NOOBJ );
-       case EACCES :
-           return( AFPERR_ACCESS );
-       default :
-           return( AFPERR_PARAM );
-       }
+        switch ( errno ) {
+        case ENOENT :
+            return( AFPERR_NOOBJ );
+        case EACCES :
+            return( AFPERR_ACCESS );
+        default :
+            return( AFPERR_PARAM );
+        }
     }
 
 #ifdef CNID_DB
     if (stat(newpath, &st) < 0) /* this shouldn't fail */
-      return AFPERR_MISC;
+        return AFPERR_MISC;
     cnid_update(vol->v_db, id, &st, curdir->d_did, newpath, strlen(newpath));
 #endif /* CNID_DB */
 
     if ( !odir ) {
         newadpath = obj->newtmp;
-       strcpy( newadpath, ad_path( newpath, 0 ));
-       if ( rename( ad_path( upath, 0 ), newadpath ) < 0 ) {
-           if ( errno == ENOENT ) {    /* no adouble header file */
-               if (( unlink( newadpath ) < 0 ) && ( errno != ENOENT )) {
-                   return( AFPERR_PARAM );
-               }
-               goto out;
-           }
-           return( AFPERR_PARAM );
-       }
-
-       memset(&ad, 0, sizeof(ad));
-       if ( ad_open( newpath, ADFLAGS_HF, O_RDWR|O_CREAT, 0666,
-                     &ad) < 0 ) {
-           return( AFPERR_PARAM );
-       }
+        strcpy( newadpath, ad_path( newpath, 0 ));
+        if ( rename( ad_path( upath, 0 ), newadpath ) < 0 ) {
+            if ( errno == ENOENT ) {   /* no adouble header file */
+                if (( unlink( newadpath ) < 0 ) && ( errno != ENOENT )) {
+                    return( AFPERR_PARAM );
+                }
+                goto out;
+            }
+            return( AFPERR_PARAM );
+        }
+
+        memset(&ad, 0, sizeof(ad));
+        if ( ad_open( newpath, ADFLAGS_HF, O_RDWR|O_CREAT, 0666,
+                      &ad) < 0 ) {
+            return( AFPERR_PARAM );
+        }
     } else {
         int isad = 1;
 
-       memset(&ad, 0, sizeof(ad));
-       if ( ad_open( newpath, vol_noadouble(vol)|ADFLAGS_HF|ADFLAGS_DIR, 
-                     O_RDWR|O_CREAT, 0666, &ad) < 0 ) {
-           if (!((errno == ENOENT) && vol_noadouble(vol)))
-             return( AFPERR_PARAM );
-           isad = 0;
-       }
-       if ((buf = realloc( odir->d_name, plen + 1 )) == NULL ) {
-           syslog( LOG_ERR, "afp_rename: realloc: %s", strerror(errno) );
-           if (isad) {
-             ad_flush(&ad, ADFLAGS_HF); /* in case of create */
-             ad_close(&ad, ADFLAGS_HF);
-           }
-           return AFPERR_MISC;
-       }
-       odir->d_name = buf;
-       strcpy( odir->d_name, ibuf );
-       if (!isad)
-         goto out;
+        memset(&ad, 0, sizeof(ad));
+        if ( ad_open( newpath, vol_noadouble(vol)|ADFLAGS_HF|ADFLAGS_DIR,
+                      O_RDWR|O_CREAT, 0666, &ad) < 0 ) {
+            if (!((errno == ENOENT) && vol_noadouble(vol)))
+                return( AFPERR_PARAM );
+            isad = 0;
+        }
+        if ((buf = realloc( odir->d_name, plen + 1 )) == NULL ) {
+            syslog( LOG_ERR, "afp_rename: realloc: %s", strerror(errno) );
+            if (isad) {
+                ad_flush(&ad, ADFLAGS_HF); /* in case of create */
+                ad_close(&ad, ADFLAGS_HF);
+            }
+            return AFPERR_MISC;
+        }
+        odir->d_name = buf;
+        strcpy( odir->d_name, ibuf );
+        if (!isad)
+            goto out;
     }
 
     ad_setentrylen( &ad, ADEID_NAME, plen );
@@ -476,7 +476,7 @@ out:
 
     /* if it's still open, rename the ofork as well. */
     if (of_rename(vol, curdir, path, curdir, ibuf) < 0)
-       return AFPERR_MISC;
+        return AFPERR_MISC;
 
 #ifdef DEBUG
     syslog(LOG_INFO, "end afp_rename:");
@@ -487,9 +487,9 @@ out:
 
 
 int afp_delete(obj, ibuf, ibuflen, rbuf, rbuflen )
-    AFPObj      *obj;
-    char       *ibuf, *rbuf;
-    int                ibuflen, *rbuflen;
+AFPObj      *obj;
+char   *ibuf, *rbuf;
+int            ibuflen, *rbuflen;
 {
     struct vol         *vol;
     struct dir         *dir;
@@ -507,7 +507,7 @@ int afp_delete(obj, ibuf, ibuflen, rbuf, rbuflen )
     memcpy( &vid, ibuf, sizeof( vid ));
     ibuf += sizeof( vid );
     if (( vol = getvolbyvid( vid )) == NULL ) {
-       return( AFPERR_PARAM );
+        return( AFPERR_PARAM );
     }
 
     if (vol->v_flags & AFPVOL_RO)
@@ -516,25 +516,25 @@ int afp_delete(obj, ibuf, ibuflen, rbuf, rbuflen )
     memcpy( &did, ibuf, sizeof( did ));
     ibuf += sizeof( int );
     if (( dir = dirsearch( vol, did )) == NULL ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     if (( path = cname( vol, dir, &ibuf )) == NULL ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     if ( *path == '\0' ) {
-       rc = deletecurdir( vol, obj->oldtmp, AFPOBJ_TMPSIZ);
+        rc = deletecurdir( vol, obj->oldtmp, AFPOBJ_TMPSIZ);
     } else if (of_findname(vol, curdir, path)) {
         rc = AFPERR_BUSY;
     } else if ((rc = deletefile( upath = mtoupath(vol, path ))) == AFP_OK) {
 #ifdef CNID_DB /* get rid of entry */
         cnid_t id = cnid_get(vol->v_db, curdir->d_did, upath, strlen(upath));
-       cnid_delete(vol->v_db, id);
+        cnid_delete(vol->v_db, id);
 #endif /* CNID_DB */
     }
     if ( rc == AFP_OK ) {
-       setvoltime(obj, vol );
+        setvoltime(obj, vol );
     }
 
 #ifdef DEBUG
@@ -545,9 +545,9 @@ int afp_delete(obj, ibuf, ibuflen, rbuf, rbuflen )
 }
 
 char *ctoupath( vol, dir, name )
-    const struct vol   *vol;
-    struct dir *dir;
-    char       *name;
+const struct vol       *vol;
+struct dir     *dir;
+char   *name;
 {
     struct dir *d;
     static char        path[ MAXPATHLEN + 1];
@@ -561,11 +561,11 @@ char *ctoupath( vol, dir, name )
     p -= len;
     strncpy( p, u, len );
     for ( d = dir; d->d_parent; d = d->d_parent ) {
-       *--p = '/';
-       u = mtoupath(vol, d->d_name );
-       len = strlen( u );
-       p -= len;
-       strncpy( p, u, len );
+        *--p = '/';
+        u = mtoupath(vol, d->d_name );
+        len = strlen( u );
+        p -= len;
+        strncpy( p, u, len );
     }
     *--p = '/';
     len = strlen( vol->v_path );
@@ -577,15 +577,15 @@ char *ctoupath( vol, dir, name )
 
 
 int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
-    AFPObj      *obj;
-    char       *ibuf, *rbuf;
-    int                ibuflen, *rbuflen;
+AFPObj      *obj;
+char   *ibuf, *rbuf;
+int            ibuflen, *rbuflen;
 {
     struct vol *vol;
     struct dir *sdir, *ddir, *odir = NULL;
     struct stat st;
     char       *oldname, *newname;
-    char        *path, *p, *upath; 
+    char        *path, *p, *upath;
     int                did, rc;
     int                plen;
     u_int16_t  vid;
@@ -606,7 +606,7 @@ int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
     memcpy( &vid, ibuf, sizeof( vid ));
     ibuf += sizeof( vid );
     if (( vol = getvolbyvid( vid )) == NULL ) {
-       return( AFPERR_PARAM );
+        return( AFPERR_PARAM );
     }
 
     if (vol->v_flags & AFPVOL_RO)
@@ -616,7 +616,7 @@ int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
     memcpy( &did, ibuf, sizeof( did ));
     ibuf += sizeof( int );
     if (( sdir = dirsearch( vol, did )) == NULL ) {
-       return( AFPERR_PARAM );
+        return( AFPERR_PARAM );
     }
 
     memcpy( &did, ibuf, sizeof( did ));
@@ -624,7 +624,7 @@ int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
 
     /* source pathname */
     if (( path = cname( vol, sdir, &ibuf )) == NULL ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
 
     sdir = curdir;
@@ -632,20 +632,20 @@ int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
     oldname = obj->oldtmp;
     if ( *path != '\0' ) {
         /* not a directory */
-       strcpy(newname, path);
-       strcpy(oldname, path); /* an extra copy for of_rename */
+        strcpy(newname, path);
+        strcpy(oldname, path); /* an extra copy for of_rename */
 #ifdef CNID_DB
-       p = mtoupath(vol, path);
-       id = cnid_get(vol->v_db, sdir->d_did, p, strlen(p));
+        p = mtoupath(vol, path);
+        id = cnid_get(vol->v_db, sdir->d_did, p, strlen(p));
 #endif /* CNID_DB */
-       p = ctoupath( vol, sdir, newname );
+        p = ctoupath( vol, sdir, newname );
     } else {
-       odir = curdir;
-       strcpy( newname, odir->d_name );
-       strcpy(oldname, odir->d_name);
-       p = ctoupath( vol, odir->d_parent, newname );
+        odir = curdir;
+        strcpy( newname, odir->d_name );
+        strcpy(oldname, odir->d_name);
+        p = ctoupath( vol, odir->d_parent, newname );
 #ifdef CNID_DB
-       id = curdir->d_did; /* we already have the CNID */
+        id = curdir->d_did; /* we already have the CNID */
 #endif /* CNID_DB */
     }
     /*
@@ -654,37 +654,37 @@ int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
 
     /* get the destination directory */
     if (( ddir = dirsearch( vol, did )) == NULL ) {
-       return( AFPERR_PARAM );
+        return( AFPERR_PARAM );
     }
     if (( path = cname( vol, ddir, &ibuf )) == NULL ) {
-       return( AFPERR_NOOBJ );
+        return( AFPERR_NOOBJ );
     }
     if ( *path != '\0' ) {
-       return( AFPERR_BADTYPE );
+        return( AFPERR_BADTYPE );
     }
 
     /* one more place where we know about path type */
     if ( *ibuf++ != 2 ) {
-       return( AFPERR_PARAM );
+        return( AFPERR_PARAM );
     }
 
     if (( plen = (unsigned char)*ibuf++ ) != 0 ) {
-       strncpy( newname, ibuf, plen );
-       newname[ plen ] = '\0';
+        strncpy( newname, ibuf, plen );
+        newname[ plen ] = '\0';
     }
 
     /* check for illegal characters */
-    if ((vol->v_flags & AFPVOL_MSWINDOWS) && 
-       strpbrk(newname, MSWINDOWS_BADCHARS))
+    if ((vol->v_flags & AFPVOL_MSWINDOWS) &&
+            strpbrk(newname, MSWINDOWS_BADCHARS))
         return AFPERR_PARAM;
 
     upath = mtoupath(vol, newname);
 
     if ((vol->v_flags & AFPVOL_NOHEX) && strchr(upath, '/'))
-      return AFPERR_PARAM;
+        return AFPERR_PARAM;
 
     if (!validupath(vol, upath))
-      return AFPERR_EXIST;
+        return AFPERR_EXIST;
 
     /* check for vetoed filenames */
     if (veto_file(vol->v_veto, upath))
@@ -692,32 +692,32 @@ int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
 
     /* source == destination. we just silently accept this. */
     if (curdir == sdir) {
-      if (strcmp(oldname, newname) == 0)
-       return AFP_OK;
-      
-      /* deal with case insensitive, case-preserving filesystems. */
-      if ((stat(upath, &st) == 0) && strdiacasecmp(oldname, newname)) 
-       return AFPERR_EXIST;
-      
+        if (strcmp(oldname, newname) == 0)
+            return AFP_OK;
+
+        /* deal with case insensitive, case-preserving filesystems. */
+        if ((stat(upath, &st) == 0) && strdiacasecmp(oldname, newname))
+            return AFPERR_EXIST;
+
     } else if (stat(upath, &st ) == 0)
-      return( AFPERR_EXIST );
-      
+        return( AFPERR_EXIST );
+
     if ( !odir ) {
-      if (of_findname(vol, curdir, newname)) {
-       rc = AFPERR_BUSY;
-      } else if ((rc = renamefile( p, upath, newname, 
-                                  vol_noadouble(vol) )) == AFP_OK) {
-       /* if it's still open, rename the ofork as well. */
-       rc = of_rename(vol, sdir, oldname, curdir, newname);
-      }
+        if (of_findname(vol, curdir, newname)) {
+            rc = AFPERR_BUSY;
+        } else if ((rc = renamefile( p, upath, newname,
+                                     vol_noadouble(vol) )) == AFP_OK) {
+            /* if it's still open, rename the ofork as well. */
+            rc = of_rename(vol, sdir, oldname, curdir, newname);
+        }
     } else {
-       rc = renamedir(p, upath, odir, curdir, newname, vol_noadouble(vol));
+        rc = renamedir(p, upath, odir, curdir, newname, vol_noadouble(vol));
     }
 
 #ifdef DROPKLUDGE
     if (vol->v_flags & AFPVOL_DROPBOX) {
         if (retvalue=matchfile2dirperms (newname, vol, did) != AFP_OK) {
-           return retvalue;
+            return retvalue;
         }
     }
 #endif /* DROPKLUDGE */
@@ -726,12 +726,12 @@ int afp_moveandrename(obj, ibuf, ibuflen, rbuf, rbuflen )
 #ifdef CNID_DB
         /* renaming may have moved the file/dir across a filesystem */
         if (stat(upath, &st) < 0)
-         return AFPERR_MISC;
+            return AFPERR_MISC;
 
-       /* fix up the catalog entry */
-       cnid_update(vol->v_db, id, &st, curdir->d_did, upath, strlen(upath));
+        /* fix up the catalog entry */
+        cnid_update(vol->v_db, id, &st, curdir->d_did, upath, strlen(upath));
 #endif /* CNID_DB */
-       setvoltime(obj, vol );
+        setvoltime(obj, vol );
     }
 
 #ifdef DEBUG
@@ -748,32 +748,32 @@ int veto_file(const char*veto_str, const char*path)
  * otherwise, 0 is returned.
  */
 {
-       int i;  /* index to veto_str */
-       int j;  /* index to path */
+    int i;     /* index to veto_str */
+    int j;     /* index to path */
 
-       if ((veto_str == NULL) || (path == NULL))
-               return 0;
-/*
-#ifdef DEBUG
-       syslog(LOG_DEBUG, "veto_file \"%s\", \"%s\"", veto_str, path);
-#endif
-*/
-       for(i=0, j=0; veto_str[i] != '\0'; i++) {
-               if (veto_str[i] == '/') {
-                       if ((j>0) && (path[j] == '\0'))
-                               return 1;
-                       j = 0;
-               } else {
-                       if (veto_str[i] != path[j]) {
-                               while ((veto_str[i] != '/')
-                                   && (veto_str[i] != '\0'))
-                                       i++;
-                               j = 0;
-                               continue;
-                       }
-                       j++;
-               }
-       }
-       return 0;
+    if ((veto_str == NULL) || (path == NULL))
+        return 0;
+    /*
+    #ifdef DEBUG
+       syslog(LOG_DEBUG, "veto_file \"%s\", \"%s\"", veto_str, path);
+    #endif
+    */
+    for(i=0, j=0; veto_str[i] != '\0'; i++) {
+        if (veto_str[i] == '/') {
+            if ((j>0) && (path[j] == '\0'))
+                return 1;
+            j = 0;
+        } else {
+            if (veto_str[i] != path[j]) {
+                while ((veto_str[i] != '/')
+                        && (veto_str[i] != '\0'))
+                    i++;
+                j = 0;
+                continue;
+            }
+            j++;
+        }
+    }
+    return 0;
 }