]> arthur.barton.de Git - netatalk.git/blob - include/atalk/globals.h
Fix build
[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
11 #ifdef ADMIN_GRP
12 #include <grp.h>
13 #include <sys/types.h>
14 #endif /* ADMIN_GRP */
15
16 #ifdef HAVE_NETDB_H
17 #include <netdb.h>  /* this isn't header-protected under ultrix */
18 #endif /* HAVE_NETDB_H */
19
20 #include <atalk/afp.h>
21 #include <atalk/compat.h>
22 #include <atalk/unicode.h>
23 #include <atalk/uam.h>
24 #include <atalk/iniparser.h>
25
26 /* #define DOSFILELEN 12 */             /* Type1, DOS-compat*/
27 #define MACFILELEN 31                   /* Type2, HFS-compat */
28 #define UTF8FILELEN_EARLY 255           /* Type3, early Mac OS X 10.0-10.4.? */
29 /* #define UTF8FILELEN_NAME_MAX 765 */  /* Type3, 10.4.?- , getconf NAME_MAX */
30 /* #define UTF8FILELEN_SPEC 0xFFFF */   /* Type3, spec on document */
31 /* #define HFSPLUSFILELEN 510 */        /* HFS+ spec, 510byte = 255codepoint */
32
33 #define MAXUSERLEN 256
34
35 #define OPTION_DEBUG         (1 << 0)
36 #define OPTION_CLOSEVOL      (1 << 1)
37 #define OPTION_SERVERNOTIF   (1 << 2)
38 #define OPTION_CUSTOMICON    (1 << 4)
39 #define OPTION_ANNOUNCESSH   (1 << 6)
40 #define OPTION_UUID          (1 << 7)
41 #define OPTION_ACL2MACCESS   (1 << 8)
42 #define OPTION_NOZEROCONF    (1 << 9)
43 #define OPTION_KEEPSESSIONS  (1 << 10) /* preserve sessions across master afpd restart with SIGQUIT */
44
45 /**********************************************************************************************
46  * Ini config sections
47  **********************************************************************************************/
48
49 #define INISEC_GLOBAL "General"
50 #define INISEC_AFP    "AFP"
51 #define INISEC_CNID   "CNID"
52
53 struct DSI;
54 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
55
56 struct afp_volume_name {
57     time_t     mtime;
58     int        loaded;
59 };
60
61 struct afp_options {
62     int connections;            /* Maximum number of possible AFP connections */
63     int tickleval;
64     int timeout;
65     int flags;
66     int dircachesize;
67     int sleep;                  /* Maximum time allowed to sleep (in tickles) */
68     int disconnected;           /* Maximum time in disconnected state (in tickles) */
69     int fce_fmodwait;           /* number of seconds FCE file mod events are put on hold */
70     unsigned int tcp_sndbuf, tcp_rcvbuf;
71     unsigned char passwdbits, passwdminlen;
72     uint32_t server_quantum;
73     int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */
74     char *hostname;
75     char *listen, *port;
76     char *Cnid_srv, *Cnid_port;
77     char *configfile;
78     char *uampath, *fqdn;
79     char *sigconffile;
80     char *uuidconf;
81     char *guest, *loginmesg, *keyfile, *passwdfile;
82     char *uamlist;
83     char *authprintdir;
84     char *signatureopt;
85     unsigned char signature[16];
86     char *k5service, *k5realm, *k5keytab;
87     char *unixcodepage,*maccodepage;
88     charset_t maccharset, unixcharset; 
89     mode_t umask;
90     mode_t save_mask;
91 #ifdef ADMIN_GRP
92     gid_t admingid;
93 #endif /* ADMIN_GRP */
94     int    volnamelen;
95     /* default value for winbind authentication */
96     char *ntdomain, *ntseparator;
97     char *logconfig;
98     char *logfile;
99     char *mimicmodel;
100     char *adminauthuser;
101     struct afp_volume_name volfile;
102 };
103
104 typedef struct AFPObj {
105     int argc;
106     char **argv;
107     const void *signature;
108     struct DSI *dsi;
109     struct afp_options options;
110     dictionary *iniconfig;
111     char username[MAXUSERLEN];
112     /* to prevent confusion, only use these in afp_* calls */
113     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
114     void *uam_cookie; /* cookie for uams */
115     struct session_info  sinfo;
116     uid_t uid;  /* client running user id */
117     int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */
118     /* Functions */
119     void (*logout)(void);
120     void (*exit)(int);
121     int (*reply)(void *, int);
122     int (*attention)(void *, AFPUserBytes);
123 } AFPObj;
124
125 /* typedef for AFP functions handlers */
126 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
127
128 /* Global variables */
129 extern AFPObj             *AFPobj;
130 extern int                afp_version;
131 extern int                afp_errno;
132 extern unsigned char      nologin;
133 extern struct dir         *curdir;
134 extern char               getwdbuf[];
135 extern struct afp_options default_options;
136 extern const char         *Cnid_srv;
137 extern const char         *Cnid_port;
138
139 extern int  get_afp_errno   (const int param);
140 extern void afp_options_init (struct afp_options *);
141 extern void afp_options_parse_cmdline(int ac, char **av);
142 extern int  afp_config_parse(AFPObj *AFPObj);
143 extern void afp_options_free(struct afp_options *);
144 extern void setmessage (const char *);
145 extern void readmessage (AFPObj *);
146
147 /* gettok.c */
148 extern void initline   (int, char *);
149 extern int  parseline  (int, char *);
150
151 /* afp_util.c */
152 extern const char *AfpNum2name (int );
153 extern const char *AfpErr2name(int err);
154
155 /* directory.c */
156 extern struct dir rootParent;
157
158 extern void afp_over_dsi (AFPObj *);
159
160 #endif /* globals.h */