]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
Merge remote-tracking branch 'remotes/origin/branch-netatalk-2-1'
[netatalk.git] / etc / afpd / 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
47 #ifdef FORCE_UIDGID
48 /* set up a structure for this */
49 typedef struct uidgidset_t {
50     uid_t uid;
51     gid_t gid;
52 } uidgidset;
53 #endif /* FORCE_UIDGID */
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 connections, transports, tickleval, timeout, server_notif, flags, dircachesize;
66     int sleep;                  /* Maximum time allowed to sleep (in tickles) */
67     int disconnected;           /* Maximum time in disconnected state (in tickles) */
68     unsigned char passwdbits, passwdminlen, loginmaxfail;
69     u_int32_t server_quantum;
70     char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *port, *configfile;
71     struct at_addr ddpaddr;
72     char *uampath, *fqdn;
73     char *pidfile;
74     char *sigconffile;
75     char *uuidconf;
76     struct afp_volume_name defaultvol, systemvol, uservol;
77     int  closevol;
78
79     char *guest, *loginmesg, *keyfile, *passwdfile;
80     char *uamlist;
81     char *authprintdir;
82     char *signatureopt;
83     unsigned char signature[16];
84     char *k5service, *k5realm, *k5keytab;
85     char *unixcodepage,*maccodepage;
86     charset_t maccharset, unixcharset; 
87     mode_t umask;
88     mode_t save_mask;
89 #ifdef ADMIN_GRP
90     gid_t admingid;
91 #endif /* ADMIN_GRP */
92     int    volnamelen;
93
94     /* default value for winbind authentication */
95     char *ntdomain, *ntseparator;
96     char *logconfig;
97 };
98
99 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
100 typedef struct _AFPObj {
101     int proto;
102     unsigned long servernum;
103     void *handle;               /* either (DSI *) or (ASP *) */
104     void *config; 
105     struct afp_options options;
106     char *Obj, *Type, *Zone;
107     char username[MAXUSERLEN];
108     void (*logout)(void), (*exit)(int);
109     int (*reply)(void *, int);
110     int (*attention)(void *, AFPUserBytes);
111     /* to prevent confusion, only use these in afp_* calls */
112     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
113     void *uam_cookie; /* cookie for uams */
114     struct session_info  sinfo;
115     uid_t uid;  /* client running user id */
116     int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */
117 #ifdef FORCE_UIDGID
118     int                 force_uid;
119     uidgidset           uidgid;
120 #endif
121 } AFPObj;
122
123 /* typedef for AFP functions handlers */
124 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
125
126 /* afp_dsi.c */
127 extern AFPObj *AFPobj;
128
129 extern int              afp_version;
130 extern int              afp_errno;
131 extern unsigned char    nologin;
132 extern struct dir       *curdir;
133 extern char             getwdbuf[];
134
135 /* FIXME CNID */
136 extern const char *Cnid_srv;
137 extern const char *Cnid_port;
138
139 extern int  get_afp_errno   (const int param);
140 extern void afp_options_init (struct afp_options *);
141 extern int afp_options_parse (int, char **, struct afp_options *);
142 extern int afp_options_parseline (char *, struct afp_options *);
143 extern void afp_options_free (struct afp_options *,
144                                       const struct afp_options *);
145 extern void setmessage (const char *);
146 extern void readmessage (AFPObj *);
147
148 /* gettok.c */
149 extern void initline   (int, char *);
150 extern int  parseline  (int, char *);
151
152 /* afp_util.c */
153 extern const char *AfpNum2name (int );
154 extern const char *AfpErr2name(int err);
155
156 /* directory.c */
157 extern struct dir rootParent;
158
159 #ifndef NO_DDP
160 extern void afp_over_asp (AFPObj *);
161 #endif /* NO_DDP */
162 extern void afp_over_dsi (AFPObj *);
163
164 #endif /* globals.h */