]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/volume.h
Use a hash rather than a linear search for directories. Note now we always use
[netatalk.git] / etc / afpd / volume.h
1 /*
2  * $Id: volume.h,v 1.22 2005-04-30 21:33:41 didg Exp $
3  *
4  * Copyright (c) 1990,1994 Regents of The University of Michigan.
5  * All Rights Reserved.  See COPYRIGHT.
6  */
7
8 #ifndef AFPD_VOLUME_H
9 #define AFPD_VOLUME_H 1
10
11 #include <sys/cdefs.h>
12 #include <sys/types.h>
13 #include <netatalk/endian.h>
14
15 #include "atalk/unicode.h"
16 #include "globals.h"
17 #include "afp_vfs.h"
18 #include "hash.h"
19
20 #define AFPVOL_NAMELEN   27
21
22 #include <atalk/cnid.h>
23
24 struct vol {
25     struct vol          *v_next;
26     ucs2_t              *v_name;
27     char                *v_path;
28     
29     struct dir          *v_dir, *v_root;
30     hash_t              *v_hash;
31     int                 v_flags;
32 #ifdef __svr4__
33     int                 v_qfd;
34 #endif /*__svr4__*/
35     char                *v_gvs;
36     time_t              v_mtime;
37     time_t              v_ctime;  /* volume creation date, not unix ctime */
38
39     u_int16_t           v_vid;
40     void                *v_nfsclient;
41     int                 v_nfs;
42     
43     int                 v_casefold;
44     size_t              max_filename;
45     
46     char                *v_password;
47     char                *v_veto;
48
49     char                *v_cnidscheme;
50     char                *v_dbpath;
51     dev_t               v_dev;              /* Unix volume device */
52     struct _cnid_db     *v_cdb;
53     char                v_stamp[ADEDLEN_PRIVSYN];
54     mode_t              v_umask;
55
56 #ifdef FORCE_UIDGID
57     char                *v_forceuid;
58     char                *v_forcegid;
59 #endif 
60
61     char                *v_volcodepage;
62     charset_t           v_volcharset;   
63     struct charset_functions    *v_vol;
64     char                *v_maccodepage;
65     charset_t           v_maccharset;
66     struct charset_functions    *v_mac;
67
68     int                 v_deleted;    /* volume open but deleted in new config file */
69     int                 v_hide;       /* new volume wait until old volume is closed */
70     int                 v_new;        /* volume deleted but there's a new one with the same name */
71     int                 v_adouble;    /* default adouble format */
72     int                 v_ad_options; /* adouble option NODEV, NOCACHE, etc.. */
73
74     char                *v_root_preexec;
75     char                *v_preexec;
76
77     char                *v_root_postexec;
78     char                *v_postexec;
79
80     int                 v_root_preexec_close;
81     int                 v_preexec_close;
82     
83     /* adouble indirection */
84     struct vfs_ops      *vfs;
85     int                 (*validupath)(const struct vol *, const char *);
86     char                *(*ad_path)(const char *, int);
87 };
88
89 #ifdef NO_LARGE_VOL_SUPPORT
90 typedef u_int32_t VolSpace;
91 #else /* NO_LARGE_VOL_SUPPORT */
92 typedef u_int64_t VolSpace;
93 #endif /* NO_LARGE_VOL_SUPPORT */
94
95 #define AFPVOL_OPEN     (1<<0)
96 #define AFPVOL_DT       (1<<1)
97
98 #define AFPVOL_GVSMASK  (7<<2)
99 #define AFPVOL_NONE     (0<<2)
100 #define AFPVOL_AFSGVS   (1<<2)
101 #define AFPVOL_USTATFS  (2<<2)
102 #define AFPVOL_UQUOTA   (4<<2)
103
104 /* flags that alter volume behaviour. */
105 #define AFPVOL_A2VOL     (1 << 5)   /* prodos volume */
106 #define AFPVOL_CRLF      (1 << 6)   /* cr/lf translation */
107 #define AFPVOL_NOADOUBLE (1 << 7)   /* don't create .AppleDouble by default */
108 #define AFPVOL_RO        (1 << 8)   /* read-only volume */
109 #define AFPVOL_MSWINDOWS (1 << 9)   /* deal with ms-windows yuckiness.
110 this is going away. */
111 #define AFPVOL_NOHEX     (1 << 10)  /* don't do :hex translation */
112 #define AFPVOL_USEDOTS   (1 << 11)  /* use real dots */
113 #define AFPVOL_LIMITSIZE (1 << 12)  /* limit size for older macs */
114 #define AFPVOL_MAPASCII  (1 << 13)  /* map the ascii range as well */
115 #define AFPVOL_DROPBOX   (1 << 14)  /* dropkludge dropbox support */
116 #define AFPVOL_NOFILEID  (1 << 15)  /* don't advertise createid resolveid and deleteid calls */
117 #define AFPVOL_NOSTAT    (1 << 16)  /* advertise the volume even if we can't stat() it
118                                      * maybe because it will be mounted later in preexec */
119 #define AFPVOL_UNIX_PRIV (1 << 17)  /* support unix privileges */
120 #define AFPVOL_NODEV     (1 << 18)  /* always use 0 for device number in cnid calls 
121                                      * help if device number is notconsistent across reboot 
122                                      * NOTE symlink to a different device will return an ACCESS error
123                                      */
124 #define AFPVOL_CASEINSEN (1 << 19)  /* volume is case insensitive */
125 #define AFPVOL_EILSEQ    (1 << 20)  /* encode illegal sequence 'asis' UCS2, ex "\217-", which is not 
126                                        a valid SHIFT-JIS char, is encoded  as U\217 -*/
127
128 #define AFPVOL_CACHE     (1 << 21)  /* Use adouble v2 CNID caching, default don't use it */
129
130 /* FPGetSrvrParms options */
131 #define AFPSRVR_CONFIGINFO     (1 << 0)
132 #define AFPSRVR_PASSWD         (1 << 7)
133
134 /* handle casefolding */
135 #define AFPVOL_MTOUUPPER       (1 << 0) 
136 #define AFPVOL_MTOULOWER       (1 << 1) 
137 #define AFPVOL_UTOMUPPER       (1 << 2) 
138 #define AFPVOL_UTOMLOWER       (1 << 3) 
139 #define AFPVOL_UMLOWER         (AFPVOL_MTOULOWER | AFPVOL_UTOMLOWER)
140 #define AFPVOL_UMUPPER         (AFPVOL_MTOUUPPER | AFPVOL_UTOMUPPER)
141 #define AFPVOL_UUPPERMLOWER    (AFPVOL_MTOUUPPER | AFPVOL_UTOMLOWER)
142 #define AFPVOL_ULOWERMUPPER    (AFPVOL_MTOULOWER | AFPVOL_UTOMUPPER)
143
144 #define MSWINDOWS_BADCHARS ":\t\\/<>*?|\""
145
146 int wincheck(const struct vol *vol, const char *path);
147
148 #define AFPVOLSIG_FLAT          0x0001 /* flat fs */
149 #define AFPVOLSIG_FIX           0x0002 /* fixed ids */
150 #define AFPVOLSIG_VAR           0x0003 /* variable ids */
151 #define AFPVOLSIG_DEFAULT       AFPVOLSIG_FIX
152
153 /* volume attributes */
154 #define VOLPBIT_ATTR_RO           (1 << 0)
155 #define VOLPBIT_ATTR_PASSWD       (1 << 1)
156 #define VOLPBIT_ATTR_FILEID       (1 << 2)
157 #define VOLPBIT_ATTR_CATSEARCH    (1 << 3)
158 #define VOLPBIT_ATTR_BLANKACCESS  (1 << 4)
159 #define VOLPBIT_ATTR_UNIXPRIV     (1 << 5)
160 #define VOLPBIT_ATTR_UTF8         (1 << 6)
161 #define VOLPBIT_ATTR_NONETUID     (1 << 7)
162
163 #define VOLPBIT_ATTR    0
164 #define VOLPBIT_SIG     1
165 #define VOLPBIT_CDATE   2
166 #define VOLPBIT_MDATE   3
167 #define VOLPBIT_BDATE   4
168 #define VOLPBIT_VID     5
169 #define VOLPBIT_BFREE   6
170 #define VOLPBIT_BTOTAL  7
171 #define VOLPBIT_NAME    8
172 /* handle > 4GB volumes */
173 #define VOLPBIT_XBFREE  9
174 #define VOLPBIT_XBTOTAL 10
175 #define VOLPBIT_BSIZE   11        /* block size */
176
177
178 #define vol_noadouble(vol) (((vol)->v_flags & AFPVOL_NOADOUBLE) ? \
179                             ADFLAGS_NOADOUBLE : 0)
180 #ifdef AFP3x
181 #define utf8_encoding() (afp_version >= 30)
182 #else
183 #define utf8_encoding() (0)
184 #endif
185
186 #define vol_nodev(vol) (((vol)->v_flags & AFPVOL_NODEV) ? 1 : 0)
187
188 #define vol_unix_priv(vol) (afp_version >= 30 && ((vol)->v_flags & AFPVOL_UNIX_PRIV))
189
190 extern struct vol       *getvolbyvid __P((const u_int16_t));
191 extern int              ustatfs_getvolspace __P((const struct vol *,
192             VolSpace *, VolSpace *,
193             u_int32_t *));
194 extern void             setvoltime __P((AFPObj *, struct vol *));
195 extern int              pollvoltime __P((AFPObj *));
196 extern void             load_volumes __P((AFPObj *obj));
197
198 /* FP functions */
199 extern int      afp_openvol      __P((AFPObj *, char *, int, char *, int *));
200 extern int      afp_getvolparams __P((AFPObj *, char *, int, char *, int *));
201 extern int      afp_setvolparams __P((AFPObj *, char *, int, char *, int *));
202 extern int      afp_getsrvrparms __P((AFPObj *, char *, int, char *, int *));
203 extern int      afp_closevol     __P((AFPObj *, char *, int, char *, int *));
204
205 /* netatalk functions */
206 extern void     close_all_vol   __P((void));
207
208 #endif