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