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