]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
c6b741ff6a54f58970b4248d27d3a4f1d6678ac5
[netatalk.git] / etc / afpd / globals.h
1 /*
2  * $Id: globals.h,v 1.24 2008-12-03 18:35:44 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 #define MACFILELEN 31
30 #define MAXUSERLEN 256
31
32 #define OPTION_DEBUG         (1 << 0)
33 #define OPTION_USERVOLFIRST  (1 << 1)
34 #define OPTION_NOUSERVOL     (1 << 2)
35 #define OPTION_PROXY         (1 << 3)
36 #define OPTION_CUSTOMICON    (1 << 4)
37 #define OPTION_NOSLP         (1 << 5)
38 #define OPTION_ANNOUNCESSH   (1 << 6)
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, port, transports, tickleval, timeout, server_notif, flags;
59     unsigned char passwdbits, passwdminlen, loginmaxfail;
60     u_int32_t server_quantum;
61     char hostname[MAXHOSTNAMELEN + 1], *server, *ipaddr, *configfile;
62     struct at_addr ddpaddr;
63     char *uampath, *fqdn;
64     char *pidfile;
65     struct afp_volume_name defaultvol, systemvol, uservol;
66     int  closevol;
67
68     char *guest, *loginmesg, *keyfile, *passwdfile;
69     char *uamlist;
70     char *authprintdir;
71     char *signature;
72     char *k5service, *k5realm, *k5keytab;
73     char *unixcodepage,*maccodepage;
74     charset_t maccharset, unixcharset; 
75     mode_t umask;
76     mode_t save_mask;
77     int    sleep;
78 #ifdef ADMIN_GRP
79     gid_t admingid;
80 #endif /* ADMIN_GRP */
81
82     /* default value for winbind authentication */
83     char *ntdomain, *ntseparator;
84
85 };
86
87 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
88 typedef struct AFPObj {
89     int proto;
90     unsigned long servernum;
91     void *handle, *config;
92     struct afp_options options;
93     char *Obj, *Type, *Zone;
94     char username[MAXUSERLEN];
95     void (*logout)(void), (*exit)(int);
96     int (*reply)(void *, int);
97     int (*attention)(void *, AFPUserBytes);
98     void (*sleep)(void);
99     /* to prevent confusion, only use these in afp_* calls */
100     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
101     void *uam_cookie; /* cookie for uams */
102     struct session_info  sinfo;
103
104 #ifdef FORCE_UIDGID
105     int                 force_uid;
106     uidgidset           uidgid;
107 #endif
108 } AFPObj;
109
110 extern int              afp_version;
111 extern int              afp_errno;
112 extern unsigned char    nologin;
113 extern struct dir       *curdir;
114 extern char             getwdbuf[];
115
116 /* FIXME CNID */
117 extern char             Cnid_srv[MAXHOSTNAMELEN + 1];
118 extern int              Cnid_port;
119
120 extern int  get_afp_errno   __P((const int param));
121 extern void afp_options_init __P((struct afp_options *));
122 extern int afp_options_parse __P((int, char **, struct afp_options *));
123 extern int afp_options_parseline __P((char *, struct afp_options *));
124 extern void afp_options_free __P((struct afp_options *,
125                                       const struct afp_options *));
126 extern void setmessage __P((const char *));
127 extern void readmessage __P((AFPObj *));
128
129 /* gettok.c */
130 extern void initline   __P((int, char *));
131 extern int  parseline  __P((int, char *));
132
133 /* afp_util.c */
134 const char *AfpNum2name __P((int ));
135
136 #ifndef NO_DDP
137 extern void afp_over_asp __P((AFPObj *));
138 #endif /* NO_DDP */
139 extern void afp_over_dsi __P((AFPObj *));
140
141 #endif /* globals.h */