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