]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
ec1911e692348e943bf57ef39a6f92d6ae0a49b6
[netatalk.git] / etc / afpd / globals.h
1 /*
2  * $Id: globals.h,v 1.31.2.1 2010-02-01 10:56:08 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, 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, *port, *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     int    volnamelen;
83
84     /* default value for winbind authentication */
85     char *ntdomain, *ntseparator;
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     uid_t uid;  /* client running user id */
105
106 #ifdef FORCE_UIDGID
107     int                 force_uid;
108     uidgidset           uidgid;
109 #endif
110 } AFPObj;
111
112 /* typedef for AFP functions handlers */
113 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
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 const char *Cnid_srv;
123 extern const char *Cnid_port;
124
125 extern int  get_afp_errno   (const int param);
126 extern void afp_options_init (struct afp_options *);
127 extern int afp_options_parse (int, char **, struct afp_options *);
128 extern int afp_options_parseline (char *, struct afp_options *);
129 extern void afp_options_free (struct afp_options *,
130                                       const struct afp_options *);
131 extern void setmessage (const char *);
132 extern void readmessage (AFPObj *);
133
134 /* gettok.c */
135 extern void initline   (int, char *);
136 extern int  parseline  (int, char *);
137
138 /* afp_util.c */
139 extern const char *AfpNum2name (int );
140 extern const char *AfpErr2name(int err);
141
142 /* directory.c */
143 extern struct dir rootParent;
144
145 #ifndef NO_DDP
146 extern void afp_over_asp (AFPObj *);
147 #endif /* NO_DDP */
148 extern void afp_over_dsi (AFPObj *);
149
150 #endif /* globals.h */