]> arthur.barton.de Git - netatalk.git/blob - include/atalk/globals.h
Optional AppleTalk code was not completely sorted out
[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 <sys/cdefs.h>
11
12 #ifdef ADMIN_GRP
13 #include <grp.h>
14 #include <sys/types.h>
15 #endif /* ADMIN_GRP */
16
17 #ifdef HAVE_NETDB_H
18 #include <netdb.h>  /* this isn't header-protected under ultrix */
19 #endif /* HAVE_NETDB_H */
20
21 #include <netatalk/at.h>
22 #include <atalk/afp.h>
23 #include <atalk/compat.h>
24 #include <atalk/unicode.h>
25 #include <atalk/uam.h>
26
27 /* #define DOSFILELEN 12 */             /* Type1, DOS-compat*/
28 #define MACFILELEN 31                   /* Type2, HFS-compat */
29 #define UTF8FILELEN_EARLY 255           /* Type3, early Mac OS X 10.0-10.4.? */
30 /* #define UTF8FILELEN_NAME_MAX 765 */  /* Type3, 10.4.?- , getconf NAME_MAX */
31 /* #define UTF8FILELEN_SPEC 0xFFFF */   /* Type3, spec on document */
32 /* #define HFSPLUSFILELEN 510 */        /* HFS+ spec, 510byte = 255codepoint */
33
34 #define MAXUSERLEN 256
35
36 #define OPTION_DEBUG         (1 << 0)
37 #define OPTION_USERVOLFIRST  (1 << 1)
38 #define OPTION_NOUSERVOL     (1 << 2)
39 #define OPTION_PROXY         (1 << 3)
40 #define OPTION_CUSTOMICON    (1 << 4)
41 #define OPTION_NOSLP         (1 << 5)
42 #define OPTION_ANNOUNCESSH   (1 << 6)
43 #define OPTION_UUID          (1 << 7)
44 #define OPTION_ACL2MACCESS   (1 << 8)
45 #define OPTION_NOZEROCONF    (1 << 9)
46 #define OPTION_KEEPSESSIONS  (1 << 10) /* preserve sessions across master afpd restart with SIGQUIT */
47
48 #ifdef FORCE_UIDGID
49 /* set up a structure for this */
50 typedef struct uidgidset_t {
51     uid_t uid;
52     gid_t gid;
53 } uidgidset;
54 #endif /* FORCE_UIDGID */
55
56 /* a couple of these options could get stuck in unions to save
57  * space. */
58 struct afp_volume_name {
59     time_t     mtime;
60     char       *name;
61     char       *full_name;
62     int        loaded;
63 };
64
65 struct afp_options {
66     int connections, transports, tickleval, timeout, server_notif, flags, 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, loginmaxfail;
72     u_int32_t server_quantum;
73     int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */
74     char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *port, *configfile;
75 #ifndef NO_DDP
76     struct at_addr ddpaddr;
77 #endif
78     char *uampath, *fqdn;
79     char *pidfile;
80     char *sigconffile;
81     char *uuidconf;
82     struct afp_volume_name defaultvol, systemvol, uservol;
83     int  closevol;
84
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
100     /* default value for winbind authentication */
101     char *ntdomain, *ntseparator;
102     char *logconfig;
103
104     char *mimicmodel;
105 };
106
107 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
108 typedef struct _AFPObj {
109     int proto;
110     unsigned long servernum;
111     void *handle;               /* either (DSI *) or (ASP *) */
112     void *config; 
113     struct afp_options options;
114     char *Obj, *Type, *Zone;
115     char username[MAXUSERLEN];
116     void (*logout)(void), (*exit)(int);
117     int (*reply)(void *, int);
118     int (*attention)(void *, AFPUserBytes);
119     /* to prevent confusion, only use these in afp_* calls */
120     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
121     void *uam_cookie; /* cookie for uams */
122     struct session_info  sinfo;
123     uid_t uid;  /* client running user id */
124     int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */
125 #ifdef FORCE_UIDGID
126     int                 force_uid;
127     uidgidset           uidgid;
128 #endif
129 } AFPObj;
130
131 /* typedef for AFP functions handlers */
132 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
133
134 /* Global variables */
135 extern AFPObj             *AFPobj;
136 extern int                afp_version;
137 extern int                afp_errno;
138 extern unsigned char      nologin;
139 extern struct dir         *curdir;
140 extern char               getwdbuf[];
141 extern struct afp_options default_options;
142 extern const char         *Cnid_srv;
143 extern const char         *Cnid_port;
144
145 extern int  get_afp_errno   (const int param);
146 extern void afp_options_init (struct afp_options *);
147 extern int afp_options_parse (int, char **, struct afp_options *);
148 extern int afp_options_parseline (char *, struct afp_options *);
149 extern void afp_options_free (struct afp_options *,
150                                       const struct afp_options *);
151 extern void setmessage (const char *);
152 extern void readmessage (AFPObj *);
153
154 /* gettok.c */
155 extern void initline   (int, char *);
156 extern int  parseline  (int, char *);
157
158 /* afp_util.c */
159 extern const char *AfpNum2name (int );
160 extern const char *AfpErr2name(int err);
161
162 /* directory.c */
163 extern struct dir rootParent;
164
165 #ifndef NO_DDP
166 extern void afp_over_asp (AFPObj *);
167 #endif /* NO_DDP */
168 extern void afp_over_dsi (AFPObj *);
169
170 #endif /* globals.h */