]> arthur.barton.de Git - netatalk.git/blob - include/atalk/globals.h
603b5caa6c6093ad7cfec5719aa81e25eef0bbb3
[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 #define OPTION_RECVFILE      (1 << 15)
63 #define OPTION_SPOTLIGHT_EXPR (1 << 16) /* whether to allow Spotlight logic expressions */
64
65 #define PASSWD_NONE     0
66 #define PASSWD_SET     (1 << 0)
67 #define PASSWD_NOSAVE  (1 << 1)
68 #define PASSWD_ALL     (PASSWD_SET | PASSWD_NOSAVE)
69
70 #define IS_AFP_SESSION(obj) ((obj)->dsi && (obj)->dsi->serversock == -1)
71
72 /**********************************************************************************************
73  * Ini config sections
74  **********************************************************************************************/
75
76 #define INISEC_GLOBAL "Global"
77 #define INISEC_HOMES  "Homes"
78
79 struct DSI;
80 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
81
82 struct afp_volume_name {
83     time_t     mtime;
84     int        loaded;
85 };
86
87 struct afp_options {
88     int connections;            /* Maximum number of possible AFP connections */
89     int tickleval;
90     int timeout;
91     int flags;
92     int dircachesize;
93     int sleep;                  /* Maximum time allowed to sleep (in tickles) */
94     int disconnected;           /* Maximum time in disconnected state (in tickles) */
95     int fce_fmodwait;           /* number of seconds FCE file mod events are put on hold */
96     unsigned int tcp_sndbuf, tcp_rcvbuf;
97     unsigned char passwdbits, passwdminlen;
98     uint32_t server_quantum;
99     int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */
100     char *hostname;
101     char *listen, *interfaces, *port;
102     char *Cnid_srv, *Cnid_port;
103     char *configfile;
104     char *uampath, *fqdn;
105     char *sigconffile;
106     char *uuidconf;
107     char *guest, *loginmesg, *keyfile, *passwdfile, *extmapfile;
108     char *uamlist;
109     char *signatureopt;
110     unsigned char signature[16];
111     char *k5service, *k5realm, *k5keytab;
112     size_t k5principal_buflen;
113     char *k5principal;
114     char *unixcodepage, *maccodepage, *volcodepage;
115     charset_t maccharset, unixcharset; 
116     mode_t umask;
117     mode_t save_mask;
118     gid_t admingid;
119     int    volnamelen;
120     /* default value for winbind authentication */
121     char *ntdomain, *ntseparator, *addomain;
122     char *logconfig;
123     char *logfile;
124     char *mimicmodel;
125     char *adminauthuser;
126     char *ignored_attr;
127     char *slmod_path;
128     int  splice_size;
129     char *cnid_mysql_host;
130     char *cnid_mysql_user;
131     char *cnid_mysql_pw;
132     char *cnid_mysql_db;
133     struct afp_volume_name volfile;
134     uint64_t sparql_limit;
135 };
136
137 typedef struct AFPObj {
138     const char *cmdlineconfigfile;
139     int cmdlineflags;
140     const void *signature;
141     struct DSI *dsi;
142     struct afp_options options;
143     dictionary *iniconfig;
144     char username[MAXUSERLEN];
145     /* to prevent confusion, only use these in afp_* calls */
146     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
147     void *uam_cookie; /* cookie for uams */
148     struct session_info  sinfo;
149     uid_t uid;  /* client running user id */
150     int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */
151     gid_t *groups;
152     int ngroups;
153     int afp_version;
154     int cnx_cnt, cnx_max;
155     /* Functions */
156     void (*logout)(void);
157     void (*exit)(int);
158     int (*reply)(void *, int);
159     int (*attention)(void *, AFPUserBytes);
160 } AFPObj;
161
162 /* typedef for AFP functions handlers */
163 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
164
165 /* Global variables */
166 extern AFPObj             *AFPobj;
167 extern int                afp_version;
168 extern int                afp_errno;
169 extern unsigned char      nologin;
170 extern struct dir         *curdir;
171 extern char               getwdbuf[];
172 extern struct afp_options default_options;
173 extern const char         *Cnid_srv;
174 extern const char         *Cnid_port;
175
176 extern int  get_afp_errno   (const int param);
177 extern void afp_options_init (struct afp_options *);
178 extern void afp_options_parse_cmdline(AFPObj *obj, int ac, char **av);
179 extern int setmessage (const char *);
180 extern void readmessage (AFPObj *);
181
182 /* afp_util.c */
183 extern const char *AfpNum2name (int );
184 extern const char *AfpErr2name(int err);
185
186 /* directory.c */
187 extern struct dir rootParent;
188
189 extern void afp_over_dsi (AFPObj *);
190 extern void afp_over_dsi_sighandlers(AFPObj *obj);
191 #endif /* globals.h */