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