]> arthur.barton.de Git - netatalk.git/blobdiff - etc/afpd/volume.h
- merge branch-netatalk-afp-3x-dev, HEAD was tagged before
[netatalk.git] / etc / afpd / volume.h
index 2f29f236cf1630c2aa229a3e03e8687ede85c8d1..f01a80b1b8e868914863a2528faf07811f0b057f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: volume.h,v 1.20 2003-06-05 09:17:12 didg Exp $
+ * $Id: volume.h,v 1.21 2005-04-28 20:49:46 bfernhomberg Exp $
  *
  * Copyright (c) 1990,1994 Regents of The University of Michigan.
  * All Rights Reserved.  See COPYRIGHT.
 #include <sys/types.h>
 #include <netatalk/endian.h>
 
-#ifdef HAVE_USABLE_ICONV
-#include <iconv.h>
-#endif
-
+#include "atalk/unicode.h"
 #include "globals.h"
+#include "afp_vfs.h"
 
 #define AFPVOL_NAMELEN   27
 
-struct codepage_hash {
-    unsigned char *from, *to;
-    struct codepage_hash *next, *prev;
-};
-
-union codepage_val {
-    struct codepage_hash hash; /* hash for multibyte values */
-    unsigned char value; /* single byte value/rule */
-};
-
-struct codepage {
-    union codepage_val *map;
-    int quantum;
-};
-
-#define CP_HASH(a)    (*(a))
+#include <atalk/cnid.h>
 
 struct vol {
     struct vol         *v_next;
-    char               *v_name;
+    ucs2_t             *v_name;
     char               *v_path;
     struct dir         *v_dir, *v_root;
     int                        v_flags;
@@ -47,23 +30,24 @@ struct vol {
     int                        v_qfd;
 #endif /*__svr4__*/
     char               *v_gvs;
-    time_t             v_time;
-    int                        v_lastdid;
+    time_t             v_mtime;
+    time_t             v_ctime;  /* volume creation date, not unix ctime */
+
     u_int16_t          v_vid;
     void                *v_nfsclient;
     int                 v_nfs;
     
     int                 v_casefold;
-    struct codepage     *v_mtoupage, *v_utompage, *v_badumap;
     size_t              max_filename;
     
     char                *v_password;
     char                *v_veto;
 
-#ifdef CNID_DB
-    void                *v_db;
+    char                *v_cnidscheme;
     char                *v_dbpath;
-#endif 
+    dev_t               v_dev;              /* Unix volume device */
+    struct _cnid_db     *v_cdb;
+    char                v_stamp[ADEDLEN_PRIVSYN];
     mode_t             v_umask;
 
 #ifdef FORCE_UIDGID
@@ -71,13 +55,32 @@ struct vol {
     char               *v_forcegid;
 #endif 
 
-#ifdef HAVE_USABLE_ICONV
-    iconv_t             *v_utf8toucs2;
-    iconv_t             *v_ucs2toutf8;
-    iconv_t             *v_mactoutf8;
-    iconv_t             *v_ucs2tomac;
-#endif
+    char                *v_volcodepage;
+    charset_t          v_volcharset;   
+    struct charset_functions   *v_vol;
+    char               *v_maccodepage;
+    charset_t          v_maccharset;
+    struct charset_functions   *v_mac;
+
+    int                 v_deleted;    /* volume open but deleted in new config file */
+    int                 v_hide;       /* new volume wait until old volume is closed */
+    int                 v_new;        /* volume deleted but there's a new one with the same name */
+    int                 v_adouble;    /* default adouble format */
+    int                        v_ad_options; /* adouble option NODEV, NOCACHE, etc.. */
+
+    char                *v_root_preexec;
+    char                *v_preexec;
 
+    char                *v_root_postexec;
+    char                *v_postexec;
+
+    int                 v_root_preexec_close;
+    int                 v_preexec_close;
+    
+    /* adouble indirection */
+    struct vfs_ops      *vfs;
+    int                 (*validupath)(const struct vol *, const char *);
+    char                *(*ad_path)(const char *, int);
 };
 
 #ifdef NO_LARGE_VOL_SUPPORT
@@ -108,8 +111,18 @@ this is going away. */
 #define AFPVOL_MAPASCII  (1 << 13)  /* map the ascii range as well */
 #define AFPVOL_DROPBOX   (1 << 14)  /* dropkludge dropbox support */
 #define AFPVOL_NOFILEID  (1 << 15)  /* don't advertise createid resolveid and deleteid calls */
-#define AFPVOL_UTF8      (1 << 16)  /* unix name are in UTF8 */
+#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 */
+#define AFPVOL_NODEV     (1 << 18)  /* always use 0 for device number in cnid calls 
+                                     * 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_CACHE     (1 << 21)  /* Use adouble v2 CNID caching, default don't use it */
 
 /* FPGetSrvrParms options */
 #define AFPSRVR_CONFIGINFO     (1 << 0)
@@ -126,7 +139,6 @@ this is going away. */
 #define AFPVOL_ULOWERMUPPER    (AFPVOL_MTOULOWER | AFPVOL_UTOMUPPER)
 
 #define MSWINDOWS_BADCHARS ":\t\\/<>*?|\""
-#define MSWINDOWS_CODEPAGE "maccode.iso8859-1"
 
 int wincheck(const struct vol *vol, const char *path);
 
@@ -162,26 +174,23 @@ int wincheck(const struct vol *vol, const char *path);
 
 #define vol_noadouble(vol) (((vol)->v_flags & AFPVOL_NOADOUBLE) ? \
                            ADFLAGS_NOADOUBLE : 0)
-
 #ifdef AFP3x
-#define vol_utf8(vol) ((vol)->v_flags & AFPVOL_UTF8)
 #define utf8_encoding() (afp_version >= 30)
 #else
-#define vol_utf8(vol) (0)
 #define utf8_encoding() (0)
 #endif
+
+#define vol_nodev(vol) (((vol)->v_flags & AFPVOL_NODEV) ? 1 : 0)
+
 #define vol_unix_priv(vol) (afp_version >= 30 && ((vol)->v_flags & AFPVOL_UNIX_PRIV))
 
 extern struct vol      *getvolbyvid __P((const u_int16_t));
 extern int              ustatfs_getvolspace __P((const struct vol *,
             VolSpace *, VolSpace *,
             u_int32_t *));
-extern int              codepage_init __P((struct vol *, const int,
-            const int));
-extern int              codepage_read __P((struct vol *, const char *));
-extern union codepage_val codepage_find __P(());
 extern void             setvoltime __P((AFPObj *, struct vol *));
 extern int              pollvoltime __P((AFPObj *));
+extern void             load_volumes __P((AFPObj *obj));
 
 /* FP functions */
 extern int     afp_openvol      __P((AFPObj *, char *, int, char *, int *));
@@ -190,4 +199,7 @@ extern int  afp_setvolparams __P((AFPObj *, char *, int, char *, int *));
 extern int     afp_getsrvrparms __P((AFPObj *, char *, int, char *, int *));
 extern int     afp_closevol     __P((AFPObj *, char *, int, char *, int *));
 
+/* netatalk functions */
+extern void     close_all_vol   __P((void));
+
 #endif