X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=blobdiff_plain;f=include%2Fatalk%2Fvolume.h;h=084f5a0ad48cefd564492b8c4ccb90e7714824be;hp=010dcfde039c9295dfdc5e19a068624bcedb2bed;hb=c72d10d6f92fe81d040ab983768d7fdccea7fb2e;hpb=61bb657eda58f3e3f7e77bcd8df3a0e94a28f1a9 diff --git a/include/atalk/volume.h b/include/atalk/volume.h index 010dcfde..084f5a0a 100644 --- a/include/atalk/volume.h +++ b/include/atalk/volume.h @@ -20,6 +20,13 @@ typedef uint64_t VolSpace; +/* This should belong in a file.h */ +struct extmap { + char *em_ext; + char em_creator[4]; + char em_type[4]; +}; + struct vol { struct vol *v_next; AFPObj *v_obj; @@ -90,13 +97,12 @@ struct vol { int v_root_preexec_close; int v_preexec_close; char *v_uuid; /* For TimeMachine zeroconf record */ -#ifdef __svr4__ - int v_qfd; -#endif /*__svr4__*/ + int v_qfd; + uint32_t v_ignattr; /* AFP attributes that shall be ignored */ }; /* load_volumes() flags */ -#define LV_ALL (1 << 0) +typedef enum {lv_none = 0, lv_all = 1} lv_flags_t; /* volume flags */ #define AFPVOL_OPEN (1<<0) @@ -107,15 +113,11 @@ struct vol { #define AFPVOL_USTATFS (1<<3) #define AFPVOL_UQUOTA (1<<4) -/* - Flags that alter volume behaviour. - Keep in sync with libatalk/util/volinfo.c -*/ #define AFPVOL_NOV2TOEACONV (1 << 5) /* no adouble:v2 to adouble:ea conversion */ -#define AFPVOL_UNIX_CTXT (1 << 6) /* volume created by getvolbypath ie UNIX access, not afpd AFP user session */ +#define AFPVOL_SPOTLIGHT (1 << 6) /* Index volume for Spotlight searches */ #define AFPVOL_RO (1 << 8) /* read-only volume */ -#define AFPVOL_NOHEX (1 << 10) /* don't do :hex translation */ -#define AFPVOL_USEDOTS (1 << 11) /* use real dots */ +#define AFPVOL_CHMOD_PRESERVE_ACL (1 << 9) /* try to preserve ACLs */ +#define AFPVOL_CHMOD_IGNORE (1 << 10) /* try to preserve ACLs */ #define AFPVOL_NOSTAT (1 << 16) /* advertise the volume even if we can't stat() it * maybe because it will be mounted later in preexec */ #define AFPVOL_UNIX_PRIV (1 << 17) /* support unix privileges */ @@ -123,7 +125,6 @@ struct vol { * help if device number is notconsistent across reboot * NOTE symlink to a different device will return an ACCESS error */ -#define AFPVOL_CASEINSEN (1 << 19) /* volume is case insensitive */ #define AFPVOL_EILSEQ (1 << 20) /* encode illegal sequence 'asis' UCS2, ex "\217-", which is not a valid SHIFT-JIS char, is encoded as U\217 -*/ #define AFPVOL_INV_DOTS (1 << 22) /* dots files are invisible */ @@ -131,6 +132,8 @@ struct vol { #define AFPVOL_ACLS (1 << 24) /* Volume supports ACLS */ #define AFPVOL_SEARCHDB (1 << 25) /* Use fast CNID db search instead of filesystem */ #define AFPVOL_NONETIDS (1 << 26) /* signal the client it shall do privelege mapping */ +#define AFPVOL_FOLLOWSYM (1 << 27) /* follow symlinks on the server, default is not to */ +#define AFPVOL_DELVETO (1 << 28) /* delete veto files and dirs */ /* Extended Attributes vfs indirection */ #define AFPVOL_EA_NONE 0 /* No EAs */ @@ -189,6 +192,8 @@ struct vol { #define vol_nodev(vol) (((vol)->v_flags & AFPVOL_NODEV) ? 1 : 0) #define vol_unix_priv(vol) ((vol)->v_obj->afp_version >= 30 && ((vol)->v_flags & AFPVOL_UNIX_PRIV)) #define vol_inv_dots(vol) (((vol)->v_flags & AFPVOL_INV_DOTS) ? 1 : 0) - +#define vol_syml_opt(vol) (((vol)->v_flags & AFPVOL_FOLLOWSYM) ? 0 : O_NOFOLLOW) +#define vol_chmod_opt(vol) (((vol)->v_flags & AFPVOL_CHMOD_PRESERVE_ACL) ? O_NETATALK_ACL : \ + ((vol)->v_flags & AFPVOL_CHMOD_IGNORE) ? O_IGNORE : 0) #endif