]> arthur.barton.de Git - netatalk.git/blob - include/atalk/globals.h
Merge remote-tracking branch 'origin/branch-netatalk-3-0' into develop
[netatalk.git] / include / atalk / globals.h
1 /*
2  * Copyright (c) 1990,1993 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5
6 #ifndef AFPD_GLOBALS_H
7 #define AFPD_GLOBALS_H 1
8
9 #include <sys/param.h>
10 #include <grp.h>
11 #include <sys/types.h>
12
13 #ifdef HAVE_NETDB_H
14 #include <netdb.h>  /* this isn't header-protected under ultrix */
15 #endif /* HAVE_NETDB_H */
16
17 #include <atalk/afp.h>
18 #include <atalk/compat.h>
19 #include <atalk/unicode.h>
20 #include <atalk/uam.h>
21 #include <atalk/iniparser.h>
22 #ifdef WITH_DTRACE
23 #include <atalk/afp_dtrace.h>
24 #else
25 /* List of empty dtrace macros */
26 #define AFP_AFPFUNC_START(a,b)
27 #define AFP_AFPFUNC_DONE(a, b)
28 #define AFP_CNID_START(a)
29 #define AFP_CNID_DONE()
30 #define AFP_READ_START(a)
31 #define AFP_READ_DONE()
32 #define AFP_WRITE_START(a)
33 #define AFP_WRITE_DONE()
34 #endif
35
36 /* #define DOSFILELEN 12 */             /* Type1, DOS-compat*/
37 #define MACFILELEN 31                   /* Type2, HFS-compat */
38 #define UTF8FILELEN_EARLY 255           /* Type3, early Mac OS X 10.0-10.4.? */
39 /* #define UTF8FILELEN_NAME_MAX 765 */  /* Type3, 10.4.?- , getconf NAME_MAX */
40 /* #define UTF8FILELEN_SPEC 0xFFFF */   /* Type3, spec on document */
41 /* #define HFSPLUSFILELEN 510 */        /* HFS+ spec, 510byte = 255codepoint */
42
43 #define MAXUSERLEN 256
44
45 #define DEFAULT_MAX_DIRCACHE_SIZE 8192
46
47 #define OPTION_DEBUG         (1 << 0)
48 #define OPTION_CLOSEVOL      (1 << 1)
49 #define OPTION_SERVERNOTIF   (1 << 2)
50 #define OPTION_NOSENDFILE    (1 << 3)
51 #define OPTION_VETOMSG       (1 << 4) /* whether to send an AFP message for veto file access */
52 #define OPTION_AFP_READ_LOCK (1 << 5) /* whether to do AFP spec conforming read locks (default: no) */
53 #define OPTION_ANNOUNCESSH   (1 << 6)
54 #define OPTION_UUID          (1 << 7)
55 #define OPTION_ACL2MACCESS   (1 << 8)
56 #define OPTION_NOZEROCONF    (1 << 9)
57 #define OPTION_ACL2MODE      (1 << 10)
58 #define OPTION_SHARE_RESERV  (1 << 11) /* whether to use Solaris fcntl F_SHARE locks */
59 #define OPTION_DBUS_AFPSTATS (1 << 12) /* whether to run dbus thread for afpstats */
60 #define OPTION_SPOTLIGHT     (1 << 13) /* whether to initialize Spotlight support */
61 #define OPTION_SPOTLIGHT_VOL (1 << 14) /* whether spotlight shall be enabled by default for volumes */
62
63 #define PASSWD_NONE     0
64 #define PASSWD_SET     (1 << 0)
65 #define PASSWD_NOSAVE  (1 << 1)
66 #define PASSWD_ALL     (PASSWD_SET | PASSWD_NOSAVE)
67
68 #define IS_AFP_SESSION(obj) ((obj)->dsi && (obj)->dsi->serversock == -1)
69
70 /**********************************************************************************************
71  * Ini config sections
72  **********************************************************************************************/
73
74 #define INISEC_GLOBAL "Global"
75 #define INISEC_HOMES  "Homes"
76
77 struct DSI;
78 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
79
80 struct afp_volume_name {
81     time_t     mtime;
82     int        loaded;
83 };
84
85 struct afp_options {
86     int connections;            /* Maximum number of possible AFP connections */
87     int tickleval;
88     int timeout;
89     int flags;
90     int dircachesize;
91     int sleep;                  /* Maximum time allowed to sleep (in tickles) */
92     int disconnected;           /* Maximum time in disconnected state (in tickles) */
93     int fce_fmodwait;           /* number of seconds FCE file mod events are put on hold */
94     unsigned int tcp_sndbuf, tcp_rcvbuf;
95     unsigned char passwdbits, passwdminlen;
96     uint32_t server_quantum;
97     int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */
98     char *hostname;
99     char *listen, *interfaces, *port;
100     char *Cnid_srv, *Cnid_port;
101     char *configfile;
102     char *uampath, *fqdn;
103     char *sigconffile;
104     char *uuidconf;
105     char *guest, *loginmesg, *keyfile, *passwdfile, *extmapfile;
106     char *uamlist;
107     char *signatureopt;
108     unsigned char signature[16];
109     char *k5service, *k5realm, *k5keytab;
110     size_t k5principal_buflen;
111     char *k5principal;
112     char *unixcodepage, *maccodepage, *volcodepage;
113     charset_t maccharset, unixcharset; 
114     mode_t umask;
115     mode_t save_mask;
116     gid_t admingid;
117     int    volnamelen;
118     /* default value for winbind authentication */
119     char *ntdomain, *ntseparator, *addomain;
120     char *logconfig;
121     char *logfile;
122     char *mimicmodel;
123     char *adminauthuser;
124     char *ignored_attr;
125     char *slmod_path;
126     struct afp_volume_name volfile;
127 };
128
129 typedef struct AFPObj {
130     const char *cmdlineconfigfile;
131     int cmdlineflags;
132     const void *signature;
133     struct DSI *dsi;
134     struct afp_options options;
135     dictionary *iniconfig;
136     char username[MAXUSERLEN];
137     /* to prevent confusion, only use these in afp_* calls */
138     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
139     void *uam_cookie; /* cookie for uams */
140     struct session_info  sinfo;
141     uid_t uid;  /* client running user id */
142     int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */
143     gid_t *groups;
144     int ngroups;
145     int afp_version;
146     int cnx_cnt, cnx_max;
147     /* Functions */
148     void (*logout)(void);
149     void (*exit)(int);
150     int (*reply)(void *, int);
151     int (*attention)(void *, AFPUserBytes);
152 } AFPObj;
153
154 /* typedef for AFP functions handlers */
155 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
156
157 /* Global variables */
158 extern AFPObj             *AFPobj;
159 extern int                afp_version;
160 extern int                afp_errno;
161 extern unsigned char      nologin;
162 extern struct dir         *curdir;
163 extern char               getwdbuf[];
164 extern struct afp_options default_options;
165 extern const char         *Cnid_srv;
166 extern const char         *Cnid_port;
167
168 extern int  get_afp_errno   (const int param);
169 extern void afp_options_init (struct afp_options *);
170 extern void afp_options_parse_cmdline(AFPObj *obj, int ac, char **av);
171 extern int setmessage (const char *);
172 extern void readmessage (AFPObj *);
173
174 /* afp_util.c */
175 extern const char *AfpNum2name (int );
176 extern const char *AfpErr2name(int err);
177
178 /* directory.c */
179 extern struct dir rootParent;
180
181 extern void afp_over_dsi (AFPObj *);
182 extern void afp_over_dsi_sighandlers(AFPObj *obj);
183 #endif /* globals.h */