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