X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=etc%2Fafpd%2Funix.c;h=232fb30349e328b366bdfd1758c6b3c1a38645b5;hb=6d60f95c388da5f8f901d67e0018cf4896e6c6dc;hp=57491a7184a200f17b48a2e5a1f9d9959e84f958;hpb=2bf71d3ccf20c072bc67a9d075b6ac8b0798021e;p=netatalk.git diff --git a/etc/afpd/unix.c b/etc/afpd/unix.c index 57491a71..232fb303 100644 --- a/etc/afpd/unix.c +++ b/etc/afpd/unix.c @@ -1,6 +1,4 @@ /* - * $Id: unix.c,v 1.61 2010-02-10 14:05:37 franklahm Exp $ - * * Copyright (c) 1990,1993 Regents of The University of Michigan. * All Rights Reserved. See COPYRIGHT. */ @@ -11,24 +9,7 @@ #include #include - -/* STDC check */ -#ifdef STDC_HEADERS #include -#else /* STDC_HEADERS */ - -#ifndef HAVE_STRCHR -#define strchr index -#define strrchr index -#endif /* HAVE_STRCHR */ -char *strchr (), *strrchr (); - -#ifndef HAVE_MEMCPY -#define memcpy(d,s,n) bcopy ((s), (d), (n)) -#define memmove(d,s,n) bcopy ((s), (d), (n)) -#endif /* ! HAVE_MEMCPY */ -#endif /* STDC_HEADERS */ - #include #include #include @@ -38,18 +19,17 @@ char *strchr (), *strrchr (); #include #include #include +#include #include "auth.h" #include "directory.h" #include "volume.h" #include "unix.h" #include "fork.h" - -#ifdef HAVE_NFSv4_ACLS -extern void acltoownermode(char *path, struct stat *st,uid_t uid, struct maccess *ma); +#ifdef HAVE_ACLS +#include "acls.h" #endif - /* * Get the free space on a partition. */ @@ -160,6 +140,7 @@ mode_t mode; } #ifdef accessmode + #undef accessmode #endif /* @@ -172,9 +153,8 @@ mode_t mode; * dir parameter is used by AFS */ void accessmode(char *path, struct maccess *ma, struct dir *dir _U_, struct stat *st) - { -struct stat sb; + struct stat sb; ma->ma_user = ma->ma_owner = ma->ma_world = ma->ma_group = 0; if (!st) { @@ -183,9 +163,8 @@ struct stat sb; st = &sb; } utommode( st, ma ); -#ifdef HAVE_NFSv4_ACLS - /* 10.5 Finder looks at OS 9 mode, so we must do some mapping */ - acltoownermode( path, st, uuid, ma); +#ifdef HAVE_ACLS + acltoownermode(path, st, ma); #endif } @@ -336,9 +315,6 @@ int setfilunixmode (const struct vol *vol, struct path* path, mode_t mode) /* --------------------- */ int setdirunixmode(const struct vol *vol, const char *name, mode_t mode) { - - int dropbox = (vol->v_flags & AFPVOL_DROPBOX); - LOG(log_debug, logtype_afpd, "setdirunixmode('%s', mode:%04o) {v_dperm:%04o}", fullpathname(name), mode, vol->v_dperm); @@ -346,14 +322,14 @@ int setdirunixmode(const struct vol *vol, const char *name, mode_t mode) if (dir_rx_set(mode)) { /* extending right? dir first then .AppleDouble in rf_setdirmode */ - if ( stickydirmode(name, DIRBITS | mode, dropbox, vol->v_umask) < 0 ) + if ( stickydirmode(name, DIRBITS | mode, 0, vol->v_umask) < 0 ) return -1; } if (vol->vfs->vfs_setdirunixmode(vol, name, mode, NULL) < 0 && !vol_noadouble(vol)) { return -1 ; } if (!dir_rx_set(mode)) { - if ( stickydirmode(name, DIRBITS | mode, dropbox, vol->v_umask) < 0 ) + if ( stickydirmode(name, DIRBITS | mode, 0, vol->v_umask) < 0 ) return -1; } return 0; @@ -366,15 +342,13 @@ int setdirmode(const struct vol *vol, const char *name, mode_t mode) struct dirent *dirp; DIR *dir; mode_t hf_mode; - int osx = vol->v_adouble == AD_VERSION2_OSX; - int dropbox = (vol->v_flags & AFPVOL_DROPBOX); mode |= vol->v_dperm; hf_mode = ad_hf_mode(mode); if (dir_rx_set(mode)) { /* extending right? dir first */ - if ( stickydirmode(name, DIRBITS | mode, dropbox, vol->v_umask) < 0 ) + if ( stickydirmode(name, DIRBITS | mode, 0, vol->v_umask) < 0 ) return -1; } @@ -385,7 +359,7 @@ int setdirmode(const struct vol *vol, const char *name, mode_t mode) for ( dirp = readdir( dir ); dirp != NULL; dirp = readdir( dir )) { /* FIXME */ - if ( *dirp->d_name == '.' && (!osx || dirp->d_name[1] != '_')) { + if (*dirp->d_name == '.') { continue; } if ( lstat( dirp->d_name, &st ) < 0 ) { @@ -394,9 +368,7 @@ int setdirmode(const struct vol *vol, const char *name, mode_t mode) } if (!S_ISDIR(st.st_mode)) { - int setmode = (osx && *dirp->d_name == '.')?hf_mode:mode; - - if (setfilmode(dirp->d_name, setmode, &st, vol->v_umask) < 0) { + if (setfilmode(dirp->d_name, mode, &st, vol->v_umask) < 0) { LOG(log_error, logtype_afpd, "setdirmode: chmod %s: %s",dirp->d_name, strerror(errno) ); return -1; } @@ -409,7 +381,7 @@ int setdirmode(const struct vol *vol, const char *name, mode_t mode) } if (!dir_rx_set(mode)) { - if ( stickydirmode(name, DIRBITS | mode, dropbox, vol->v_umask) < 0 ) + if ( stickydirmode(name, DIRBITS | mode, 0, vol->v_umask) < 0 ) return -1; } return( 0 ); @@ -514,13 +486,12 @@ int setdirowner(const struct vol *vol, const char *name, const uid_t uid, const struct stat st; struct dirent *dirp; DIR *dir; - int osx = vol->v_adouble == AD_VERSION2_OSX; if (( dir = opendir( name )) == NULL ) { return( -1 ); } for ( dirp = readdir( dir ); dirp != NULL; dirp = readdir( dir )) { - if ( *dirp->d_name == '.' && (!osx || dirp->d_name[1] != '_')) { + if ( *dirp->d_name == '.') { continue; } if ( lstat( dirp->d_name, &st ) < 0 ) {