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