]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
Merge branch-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 MACFILELEN 31
28 #define MAXUSERLEN 256
29
30 #define OPTION_DEBUG         (1 << 0)
31 #define OPTION_USERVOLFIRST  (1 << 1)
32 #define OPTION_NOUSERVOL     (1 << 2)
33 #define OPTION_PROXY         (1 << 3)
34 #define OPTION_CUSTOMICON    (1 << 4)
35 #define OPTION_NOSLP         (1 << 5)
36 #define OPTION_ANNOUNCESSH   (1 << 6)
37 #define OPTION_UUID          (1 << 7)
38 #define OPTION_ACL2MACCESS   (1 << 8)
39 #define OPTION_NOZEROCONF    (1 << 9)
40
41 #ifdef FORCE_UIDGID
42 /* set up a structure for this */
43 typedef struct uidgidset_t {
44     uid_t uid;
45     gid_t gid;
46 } uidgidset;
47 #endif /* FORCE_UIDGID */
48
49 /* a couple of these options could get stuck in unions to save
50  * space. */
51 struct afp_volume_name {
52     time_t     mtime;
53     char       *name;
54     char       *full_name;
55     int        loaded;
56 };
57
58 struct afp_options {
59     int connections, transports, tickleval, timeout, server_notif, flags, dircachesize;
60     unsigned char passwdbits, passwdminlen, loginmaxfail;
61     u_int32_t server_quantum;
62     char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *port, *configfile;
63     struct at_addr ddpaddr;
64     char *uampath, *fqdn;
65     char *pidfile;
66     char *sigconffile;
67     char *uuidconf;
68     struct afp_volume_name defaultvol, systemvol, uservol;
69     int  closevol;
70
71     char *guest, *loginmesg, *keyfile, *passwdfile;
72     char *uamlist;
73     char *authprintdir;
74     char *signatureopt;
75     unsigned char signature[16];
76     char *k5service, *k5realm, *k5keytab;
77     char *unixcodepage,*maccodepage;
78     charset_t maccharset, unixcharset; 
79     mode_t umask;
80     mode_t save_mask;
81     int    sleep;
82 #ifdef ADMIN_GRP
83     gid_t admingid;
84 #endif /* ADMIN_GRP */
85     int    volnamelen;
86
87     /* default value for winbind authentication */
88     char *ntdomain, *ntseparator;
89     char *logconfig;
90 };
91
92 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
93 typedef struct _AFPObj {
94     int proto;
95     unsigned long servernum;
96     void *handle;               /* either (DSI *) or (ASP *) */
97     void *config; 
98     struct afp_options options;
99     char *Obj, *Type, *Zone;
100     char username[MAXUSERLEN];
101     void (*logout)(void), (*exit)(int);
102     int (*reply)(void *, int);
103     int (*attention)(void *, AFPUserBytes);
104     void (*sleep)(void);
105     /* to prevent confusion, only use these in afp_* calls */
106     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
107     void *uam_cookie; /* cookie for uams */
108     struct session_info  sinfo;
109     uid_t uid;  /* client running user id */
110
111 #ifdef FORCE_UIDGID
112     int                 force_uid;
113     uidgidset           uidgid;
114 #endif
115 } AFPObj;
116
117 /* typedef for AFP functions handlers */
118 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
119
120 /* afp_dsi.c */
121 extern AFPObj *AFPobj;
122
123 extern int              afp_version;
124 extern int              afp_errno;
125 extern unsigned char    nologin;
126 extern struct dir       *curdir;
127 extern char             getwdbuf[];
128
129 /* FIXME CNID */
130 extern const char *Cnid_srv;
131 extern const char *Cnid_port;
132
133 extern int  get_afp_errno   (const int param);
134 extern void afp_options_init (struct afp_options *);
135 extern int afp_options_parse (int, char **, struct afp_options *);
136 extern int afp_options_parseline (char *, struct afp_options *);
137 extern void afp_options_free (struct afp_options *,
138                                       const struct afp_options *);
139 extern void setmessage (const char *);
140 extern void readmessage (AFPObj *);
141
142 /* gettok.c */
143 extern void initline   (int, char *);
144 extern int  parseline  (int, char *);
145
146 /* afp_util.c */
147 extern const char *AfpNum2name (int );
148 extern const char *AfpErr2name(int err);
149
150 /* directory.c */
151 extern struct dir rootParent;
152
153 #ifndef NO_DDP
154 extern void afp_over_asp (AFPObj *);
155 #endif /* NO_DDP */
156 extern void afp_over_dsi (AFPObj *);
157
158 #endif /* globals.h */