]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
Merge master
[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
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 <netatalk/at.h>
21 #include <atalk/afp.h>
22 #include <atalk/compat.h>
23 #include <atalk/unicode.h>
24 #include <atalk/uam.h>
25
26 #define MACFILELEN 31
27 #define MAXUSERLEN 256
28
29 #define OPTION_DEBUG         (1 << 0)
30 #define OPTION_USERVOLFIRST  (1 << 1)
31 #define OPTION_NOUSERVOL     (1 << 2)
32 #define OPTION_PROXY         (1 << 3)
33 #define OPTION_CUSTOMICON    (1 << 4)
34 #define OPTION_NOSLP         (1 << 5)
35 #define OPTION_ANNOUNCESSH   (1 << 6)
36 #define OPTION_UUID          (1 << 7)
37 #define OPTION_ACL2MACCESS   (1 << 8)
38 #define OPTION_NOZEROCONF    (1 << 9)
39
40 #ifdef FORCE_UIDGID
41 /* set up a structure for this */
42 typedef struct uidgidset_t {
43     uid_t uid;
44     gid_t gid;
45 } uidgidset;
46 #endif /* FORCE_UIDGID */
47
48 /* a couple of these options could get stuck in unions to save
49  * space. */
50 struct afp_volume_name {
51     time_t     mtime;
52     char       *name;
53     char       *full_name;
54     int        loaded;
55 };
56
57 struct afp_options {
58     int connections, transports, tickleval, timeout, server_notif, flags, dircachesize;
59     int sleep;                  /* Maximum time allowed to sleep (in tickles) */
60     int disconnected;           /* Maximum time in disconnected state (in tickles) */
61     unsigned char passwdbits, passwdminlen, loginmaxfail;
62     u_int32_t server_quantum;
63     char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *port, *configfile;
64     struct at_addr ddpaddr;
65     char *uampath, *fqdn;
66     char *pidfile;
67     char *sigconffile;
68     char *uuidconf;
69     struct afp_volume_name defaultvol, systemvol, uservol;
70     int  closevol;
71
72     char *guest, *loginmesg, *keyfile, *passwdfile;
73     char *uamlist;
74     char *authprintdir;
75     char *signatureopt;
76     unsigned char signature[16];
77     char *k5service, *k5realm, *k5keytab;
78     char *unixcodepage,*maccodepage;
79     charset_t maccharset, unixcharset; 
80     mode_t umask;
81     mode_t save_mask;
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     int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */
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 */