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