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