]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
e1c3bf41483b291fbd4a337a7e079bc067140174
[netatalk.git] / etc / afpd / globals.h
1 /*
2  * $Id: globals.h,v 1.22 2007-12-03 14:50:38 didg Exp $
3  *
4  * Copyright (c) 1990,1993 Regents of The University of Michigan.
5  * All Rights Reserved.  See COPYRIGHT.
6  */
7
8 #ifndef AFPD_GLOBALS_H
9 #define AFPD_GLOBALS_H 1
10
11 #include <sys/param.h>
12 #include <sys/cdefs.h>
13
14 #ifdef ADMIN_GRP
15 #include <grp.h>
16 #include <sys/types.h>
17 #endif /* ADMIN_GRP */
18
19 #ifdef HAVE_NETDB_H
20 #include <netdb.h>  /* this isn't header-protected under ultrix */
21 #endif /* HAVE_NETDB_H */
22
23 #include <netatalk/at.h>
24 #include <atalk/afp.h>
25 #include <atalk/compat.h>
26 #include <atalk/unicode.h>
27 #include <atalk/uam.h>
28
29 /* test for inline */
30 #ifndef __inline__
31 #define __inline__
32 #endif
33
34 #define MACFILELEN 31
35 #define MAXUSERLEN 256
36
37 #define OPTION_DEBUG         (1 << 0)
38 #define OPTION_USERVOLFIRST  (1 << 1)
39 #define OPTION_NOUSERVOL     (1 << 2)
40 #define OPTION_PROXY         (1 << 3)
41 #define OPTION_CUSTOMICON    (1 << 4)
42 #define OPTION_NOSLP         (1 << 5)
43 #define OPTION_ANNOUNCESSH   (1 << 6)
44
45 #ifdef FORCE_UIDGID
46 /* set up a structure for this */
47 typedef struct uidgidset_t {
48     uid_t uid;
49     gid_t gid;
50 } uidgidset;
51 #endif /* FORCE_UIDGID */
52
53 /* a couple of these options could get stuck in unions to save
54  * space. */
55 struct afp_volume_name {
56     time_t     mtime;
57     char       *name;
58     char       *full_name;
59     int        loaded;
60 };
61
62 struct afp_options {
63     int connections, port, transports, tickleval, timeout, server_notif, flags;
64     unsigned char passwdbits, passwdminlen, loginmaxfail;
65     u_int32_t server_quantum;
66     char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *configfile;
67     struct at_addr ddpaddr;
68     char *uampath, *fqdn;
69     char *pidfile;
70     struct afp_volume_name defaultvol, systemvol, uservol;
71     int  closevol;
72
73     char *guest, *loginmesg, *keyfile, *passwdfile;
74     char *uamlist;
75     char *authprintdir;
76     char *signature;
77     char *k5service, *k5realm, *k5keytab;
78     char *unixcodepage,*maccodepage;
79     charset_t maccharset, unixcharset; 
80     mode_t umask;
81     mode_t save_mask;
82     int    sleep;
83 #ifdef ADMIN_GRP
84     gid_t admingid;
85 #endif /* ADMIN_GRP */
86
87     /* default value for winbind authentication */
88     char *ntdomain, *ntseparator;
89
90 };
91
92 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
93 typedef struct AFPObj {
94     int proto;
95     unsigned long servernum;
96     void *handle, *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     void (*sleep)(void);
104     /* to prevent confusion, only use these in afp_* calls */
105     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
106     void *uam_cookie; /* cookie for uams */
107     struct session_info  sinfo;
108
109 #ifdef FORCE_UIDGID
110     int                 force_uid;
111     uidgidset           uidgid;
112 #endif
113 } AFPObj;
114
115 extern int              afp_version;
116 extern int              afp_errno;
117 extern unsigned char    nologin;
118 extern struct dir       *curdir;
119 extern char             getwdbuf[];
120
121 /* FIXME CNID */
122 extern char             Cnid_srv[MAXHOSTNAMELEN + 1];
123 extern int              Cnid_port;
124
125 extern int  get_afp_errno   __P((const int param));
126 extern void afp_options_init __P((struct afp_options *));
127 extern int afp_options_parse __P((int, char **, struct afp_options *));
128 extern int afp_options_parseline __P((char *, struct afp_options *));
129 extern void afp_options_free __P((struct afp_options *,
130                                       const struct afp_options *));
131 extern void setmessage __P((const char *));
132 extern void readmessage __P((AFPObj *));
133
134 /* gettok.c */
135 extern void initline   __P((int, char *));
136 extern int  parseline  __P((int, char *));
137
138 /* afp_util.c */
139 const char *AfpNum2name __P((int ));
140
141 #ifndef NO_DDP
142 extern void afp_over_asp __P((AFPObj *));
143 #endif /* NO_DDP */
144 extern void afp_over_dsi __P((AFPObj *));
145
146 #endif /* globals.h */