]> arthur.barton.de Git - netatalk.git/blobdiff - include/atalk/adouble.h
Fixes
[netatalk.git] / include / atalk / adouble.h
index 8e0b11e15a60e13ec935814f382c08fe7d6faf49..777cbe80efbc492e2128c325f619a4362aa3a67e 100644 (file)
@@ -33,6 +33,8 @@
 #include <config.h>
 #endif
 
+#include <atalk/standards.h>
+
 #include <inttypes.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -44,7 +46,6 @@
 #include <sys/time.h>
 
 #include <atalk/bstrlib.h>
-#include <atalk/locking.h>
 
 /* version info */
 #define AD_VERSION2     0x00020000
 
 #define RFORK_EA_ALLOCSIZE (128*1024) /* 128k */
 
-typedef u_int32_t cnid_t;
+typedef uint32_t cnid_t;
 
 struct ad_entry {
-    uint32_t   ade_off;
-    uint32_t   ade_len;
+    off_t     ade_off;
+    ssize_t   ade_len;
 };
 
 typedef struct adf_lock_t {
@@ -158,16 +159,11 @@ typedef struct adf_lock_t {
 
 struct ad_fd {
     int          adf_fd;        /* -1: invalid, -2: symlink */
-#ifndef HAVE_PREAD
-    off_t        adf_off;
-#endif
     char         *adf_syml;
     int          adf_flags;
     int          adf_excl;
-#if 0
     adf_lock_t   *adf_lock;
     int          adf_refcount, adf_lockcount, adf_lockmax;
-#endif
 };
 
 /* some header protection */
@@ -185,16 +181,17 @@ struct adouble_fops {
 };
 
 struct adouble {
-    u_int32_t           ad_magic;         /* Official adouble magic                   */
-    u_int32_t           ad_version;       /* Official adouble version number          */
+    uint32_t            ad_magic;         /* Official adouble magic                   */
+    uint32_t            ad_version;       /* Official adouble version number          */
     char                ad_filler[16];
     struct ad_entry     ad_eid[ADEID_MAX];
     struct ad_fd        ad_data_fork;     /* the data fork                            */
     struct ad_fd        ad_resource_fork; /* adouble:v2 -> the adouble file           *
-                                           * adouble:ea -> the rfork EA               */
-    struct ad_fd        ad_metadata_fork; /* adouble:v2 -> unused                     *
-                                           * adouble:ea -> the metadata EA            */
-    struct ad_fd        *ad_md;           /* either ad_resource or ad_metadata        */
+                                           * adouble:ea -> unused                     */
+    struct ad_fd        *ad_rfp;          /* adouble:v2 -> ad_resource_fork           *
+                                           * adouble:ea -> ad_data_fork               */
+    struct ad_fd        *ad_mdp;          /* adouble:v2 -> ad_resource_fork           *
+                                           * adouble:ea -> ad_data_fork               */
     int                 ad_flags;         /* Our adouble version info (AD_VERSION*)   */
     int                 ad_adflags;       /* ad_open flags adflags like ADFLAGS_DIR   */
     uint32_t            ad_inited;
@@ -206,7 +203,6 @@ struct adouble {
                                             * the header parameter size is too small. */
     char                *ad_m_name;        /* mac name for open fork                  */
     int                 ad_m_namelen;
-    bstring             ad_fullpath;       /* fullpath of file, adouble:ea need this  */
     struct adouble_fops *ad_ops;
     uint16_t            ad_open_forks;     /* open forks (by others)                  */
     char                ad_data[AD_DATASZ_MAX];
@@ -219,6 +215,12 @@ struct adouble {
 #define ADFLAGS_NOHF      (1<<4)  /* not an error if no ressource fork */
 #define ADFLAGS_CHECK_OF  (1<<6)  /* check for open forks from us and other afpd's */
 
+#define ADFLAGS_RDWR      (1<<7)  /* open read/write */
+#define ADFLAGS_RDONLY    (1<<8)  /* open read only */
+#define ADFLAGS_CREATE    (1<<9)  /* create file, open called with O_CREAT */
+#define ADFLAGS_EXCL      (1<<10)  /* exclusive open, open called with O_EXCL */
+#define ADFLAGS_TRUNC     (1<<11) /* truncate, open called with O_TRUNC */
+
 #define ADVOL_NODEV      (1 << 0)
 #define ADVOL_CACHE      (1 << 1)
 #define ADVOL_UNIXPRIV   (1 << 2) /* adouble unix priv */
@@ -234,30 +236,15 @@ struct adouble {
 #define ADLOCK_FILELOCK (1<<3)
 
 /* we use this so that we can use the same mechanism for both byte
- * locks and file synchronization locks. i do this by co-opting either
- * first bits on 32-bit machines or shifting above the last bit on
- * 64-bit machines. this only matters for the data fork. */
-#if defined(TRY_64BITOFF_T) && (~0UL > 0xFFFFFFFFU)
-/* synchronization locks */
-#define AD_FILELOCK_BASE (0x80000000)
-#else
-#define AD_FILELOCK_BASE (0x7FFFFFFF -9)
-#endif
-
-/* FIXME:
- * AD_FILELOCK_BASE case
- */
+ * locks and file synchronization locks. */
 #if _FILE_OFFSET_BITS == 64
-#define BYTELOCK_MAX (0x7FFFFFFFFFFFFFFFULL)
+#define AD_FILELOCK_BASE (UINT64_C(0x7FFFFFFFFFFFFFFF) - 9)
 #else
-/* Tru64 is an always-64-bit OS; version 4.0 does not set _FILE_OFFSET_BITS */
-#if defined(TRU64)
-#define BYTELOCK_MAX (0x7FFFFFFFFFFFFFFFULL)
-#else
-#define BYTELOCK_MAX (0x7FFFFFFFU)
-#endif
+#define AD_FILELOCK_BASE (UINT32_C(0x7FFFFFFF) - 9)
 #endif
 
+#define BYTELOCK_MAX (AD_FILELOCK_BASE - 1)
+
 #define AD_FILELOCK_OPEN_WR        (AD_FILELOCK_BASE + 0)
 #define AD_FILELOCK_OPEN_RD        (AD_FILELOCK_BASE + 1)
 #define AD_FILELOCK_DENY_WR        (AD_FILELOCK_BASE + 2)
@@ -331,8 +318,8 @@ struct adouble {
 #define AD_AFPFILEI_BLANKACCESS (1 << 2) /* blank access permissions */
 
 #define ad_data_fileno(ad)  ((ad)->ad_data_fork.adf_fd)
-#define ad_reso_fileno(ad)  ((ad)->ad_resource_fork.adf_fd)
-#define ad_meta_fileno(ad)  ((ad)->ad_md->adf_fd)
+#define ad_reso_fileno(ad)  ((ad)->ad_rfp->adf_fd)
+#define ad_meta_fileno(ad)  ((ad)->ad_mdp->adf_fd)
 
 #define ad_getversion(ad)   ((ad)->ad_version)
 
@@ -341,8 +328,8 @@ struct adouble {
 #define ad_getentryoff(ad,eid)     ((ad)->ad_eid[(eid)].ade_off)
 #define ad_entry(ad,eid)           ((caddr_t)(ad)->ad_data + (ad)->ad_eid[(eid)].ade_off)
 
-#define ad_get_RF_flags(ad) ((ad)->ad_resource_fork.adf_flags)
-#define ad_get_MD_flags(ad) ((ad)->ad_md->adf_flags)
+#define ad_get_RF_flags(ad) ((ad)->ad_rfp->adf_flags)
+#define ad_get_MD_flags(ad) ((ad)->ad_mdp->adf_flags)
 
 /* Refcounting open forks using one struct adouble */
 #define ad_ref(ad)   (ad)->ad_refcount++
@@ -365,7 +352,6 @@ extern void ad_unlock(struct adouble *, int user);
 extern int ad_tmplock(struct adouble *, uint32_t eid, int type, off_t off, off_t len, int user);
 
 /* ad_open.c */
-extern const char *oflags2logstr(int oflags);
 extern const char *adflags2logstr(int adflags);
 extern int ad_setfuid     (const uid_t );
 extern uid_t ad_getfuid   (void );
@@ -382,13 +368,6 @@ extern int ad_stat        (const char *, struct stat *);
 extern int ad_metadata    (const char *, int, struct adouble *);
 extern int ad_metadataat  (int, const char *, int, struct adouble *);
 
-#if 0
-#define ad_open_metadata(name, flags, mode, adp)\
-   ad_open(name, ADFLAGS_HF | (flags), O_RDWR |(mode), 0666, (adp))
-#endif
-
-#define ad_close_metadata(adp) ad_close( (adp), ADFLAGS_HF)
-
 /* build a resource fork mode from the data fork mode:
  * remove X mode and extend header to RW if R or W (W if R for locking),
  */
@@ -441,17 +420,11 @@ extern int       ad_setattr(const struct adouble *, uint16_t);
 extern int       ad_getattr(const struct adouble *, uint16_t *);
 extern int       ad_setname(struct adouble *, const char *);
 extern int       ad_setid(struct adouble *, dev_t dev, ino_t ino, uint32_t, uint32_t, const void *);
-extern u_int32_t ad_getid(struct adouble *, dev_t, ino_t, cnid_t, const void *);
-extern u_int32_t ad_forcegetid(struct adouble *adp);
+extern uint32_t  ad_getid(struct adouble *, dev_t, ino_t, cnid_t, const void *);
+extern uint32_t  ad_forcegetid(struct adouble *adp);
 
 #ifdef WITH_SENDFILE
 extern int ad_readfile_init(const struct adouble *ad, int eid, off_t *off, int end);
 #endif
 
-#if 0
-#ifdef HAVE_SENDFILE_WRITE
-extern ssize_t ad_writefile(struct adouble *, int, int, off_t, int, size_t);
-#endif /* HAVE_SENDFILE_WRITE */
-#endif /* 0 */
-
 #endif /* _ATALK_ADOUBLE_H */