]> 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 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 OPTION_DEBUG         (1 << 0)
36 #define OPTION_USERVOLFIRST  (1 << 1)
37 #define OPTION_NOUSERVOL     (1 << 2)
38 #define OPTION_PROXY         (1 << 3)
39 #define OPTION_CUSTOMICON    (1 << 4)
40 #define OPTION_NOSLP         (1 << 5)
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
46 /* a couple of these options could get stuck in unions to save
47  * space. */
48 struct afp_volume_name {
49     time_t     mtime;
50     char       *name;
51     char       *full_name;
52     int        loaded;
53 };
54
55 struct afp_options {
56     int connections, transports, tickleval, timeout, server_notif, flags, dircachesize;
57     int sleep;                  /* Maximum time allowed to sleep (in tickles) */
58     int disconnected;           /* Maximum time in disconnected state (in tickles) */
59     unsigned int tcp_sndbuf, tcp_rcvbuf;
60     unsigned char passwdbits, passwdminlen, loginmaxfail;
61     u_int32_t server_quantum;
62     int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */
63     char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *port, *configfile;
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 #ifdef ADMIN_GRP
82     gid_t admingid;
83 #endif /* ADMIN_GRP */
84     int    volnamelen;
85
86     /* default value for winbind authentication */
87     char *ntdomain, *ntseparator;
88     char *logconfig;
89 };
90
91 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
92 typedef struct _AFPObj {
93     int proto;
94     unsigned long servernum;
95     void *handle;               /* either (DSI *) or (ASP *) */
96     void *config; 
97     struct afp_options options;
98     char *Obj, *Type, *Zone;
99     char username[MAXUSERLEN];
100     void (*logout)(void), (*exit)(int);
101     int (*reply)(void *, int);
102     int (*attention)(void *, AFPUserBytes);
103     /* to prevent confusion, only use these in afp_* calls */
104     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
105     void *uam_cookie; /* cookie for uams */
106     struct session_info  sinfo;
107     uid_t uid;  /* client running user id */
108     int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */
109 } AFPObj;
110
111 /* typedef for AFP functions handlers */
112 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
113
114 /* afp_dsi.c */
115 extern AFPObj *AFPobj;
116
117 extern int              afp_version;
118 extern int              afp_errno;
119 extern unsigned char    nologin;
120 extern struct dir       *curdir;
121 extern char             getwdbuf[];
122
123 /* FIXME CNID */
124 extern const char *Cnid_srv;
125 extern const char *Cnid_port;
126
127 extern int  get_afp_errno   (const int param);
128 extern void afp_options_init (struct afp_options *);
129 extern int afp_options_parse (int, char **, struct afp_options *);
130 extern int afp_options_parseline (char *, struct afp_options *);
131 extern void afp_options_free (struct afp_options *,
132                                       const struct afp_options *);
133 extern void setmessage (const char *);
134 extern void readmessage (AFPObj *);
135
136 /* gettok.c */
137 extern void initline   (int, char *);
138 extern int  parseline  (int, char *);
139
140 /* afp_util.c */
141 extern const char *AfpNum2name (int );
142 extern const char *AfpErr2name(int err);
143
144 /* directory.c */
145 extern struct dir rootParent;
146
147 extern void afp_over_dsi (AFPObj *);
148
149 #endif /* globals.h */