]> arthur.barton.de Git - netatalk.git/blob - include/atalk/globals.h
Fixes
[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
52 struct DSI;
53 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
54
55 /* a couple of these options could get stuck in unions to save
56  * space. */
57 struct afp_volume_name {
58     time_t     mtime;
59     char       *name;
60     char       *full_name;
61     int        loaded;
62 };
63
64 struct afp_options {
65     int argc;
66     char **argv;
67     int connections;            /* Maximum number of possible AFP connections */
68     int tickleval;
69     int timeout;
70     int flags;
71     int dircachesize;
72     int sleep;                  /* Maximum time allowed to sleep (in tickles) */
73     int disconnected;           /* Maximum time in disconnected state (in tickles) */
74     int fce_fmodwait;           /* number of seconds FCE file mod events are put on hold */
75     unsigned int tcp_sndbuf, tcp_rcvbuf;
76     unsigned char passwdbits, passwdminlen;
77     uint32_t server_quantum;
78     int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */
79     char *hostname;
80     char *ipaddr, *port;
81     char *Cnid_srv, *Cnid_port;
82     char *configfile;
83     char *uampath, *fqdn;
84     char *sigconffile;
85     char *uuidconf;
86     char *guest, *loginmesg, *keyfile, *passwdfile;
87     char *uamlist;
88     char *authprintdir;
89     char *signatureopt;
90     unsigned char signature[16];
91     char *k5service, *k5realm, *k5keytab;
92     char *unixcodepage,*maccodepage;
93     charset_t maccharset, unixcharset; 
94     mode_t umask;
95     mode_t save_mask;
96 #ifdef ADMIN_GRP
97     gid_t admingid;
98 #endif /* ADMIN_GRP */
99     int    volnamelen;
100     /* default value for winbind authentication */
101     char *ntdomain, *ntseparator;
102     char *logconfig;
103     char *logfile;
104     char *mimicmodel;
105     char *adminauthuser;
106 };
107
108 typedef struct AFPObj {
109     int statuslen;
110     char status[1400];
111     const void *signature;
112     struct DSI *dsi;
113     struct afp_options options;
114     const dictionary *iniconfig;
115     char username[MAXUSERLEN];
116     /* to prevent confusion, only use these in afp_* calls */
117     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
118     void *uam_cookie; /* cookie for uams */
119     struct session_info  sinfo;
120     uid_t uid;  /* client running user id */
121     int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */
122     /* Functions */
123     void (*logout)(void);
124     void (*exit)(int);
125     int (*reply)(void *, int);
126     int (*attention)(void *, AFPUserBytes);
127 } AFPObj;
128
129 /* typedef for AFP functions handlers */
130 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
131
132 /* Global variables */
133 extern AFPObj             *AFPobj;
134 extern int                afp_version;
135 extern int                afp_errno;
136 extern unsigned char      nologin;
137 extern struct dir         *curdir;
138 extern char               getwdbuf[];
139 extern struct afp_options default_options;
140 extern const char         *Cnid_srv;
141 extern const char         *Cnid_port;
142
143 extern int  get_afp_errno   (const int param);
144 extern void afp_options_init (struct afp_options *);
145 extern int  afp_options_parse_cmdline (int, char **, struct afp_options *);
146 extern int  afp_options_parseline (char *, struct afp_options *);
147 extern void afp_options_free (struct afp_options *,
148                                       const struct afp_options *);
149 extern void setmessage (const char *);
150 extern void readmessage (AFPObj *);
151
152 /* gettok.c */
153 extern void initline   (int, char *);
154 extern int  parseline  (int, char *);
155
156 /* afp_util.c */
157 extern const char *AfpNum2name (int );
158 extern const char *AfpErr2name(int err);
159
160 /* directory.c */
161 extern struct dir rootParent;
162
163 extern void afp_over_dsi (AFPObj *);
164
165 #endif /* globals.h */