]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
9cb09f4a7bd44221e8a15773cfd74e57a0c3497d
[netatalk.git] / etc / afpd / globals.h
1 /*
2  * $Id: globals.h,v 1.18.2.2 2003-07-21 05:50:54 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
27 /* test for inline */
28 #ifndef __inline__
29 #define __inline__
30 #endif
31
32 #define MACFILELEN 31
33
34 #define OPTION_DEBUG         (1 << 0)
35 #define OPTION_USERVOLFIRST  (1 << 1)
36 #define OPTION_NOUSERVOL     (1 << 2)
37 #define OPTION_PROXY         (1 << 3)
38 #define OPTION_CUSTOMICON    (1 << 4)
39 #define OPTION_NOSLP         (1 << 5)
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, *nlspath, *fqdn;
65     char *pidfile;
66     struct afp_volume_name defaultvol, systemvol, uservol;
67
68     char *guest, *loginmesg, *keyfile, *passwdfile;
69     char *uamlist;
70     char *authprintdir;
71     char *signature;
72     char *k5service, *k5realm;
73     mode_t umask;
74     mode_t save_mask;
75     int    sleep;
76 #ifdef ADMIN_GRP
77     gid_t admingid;
78 #endif /* ADMIN_GRP */
79 };
80
81 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
82 typedef struct AFPObj {
83     int proto;
84     unsigned long servernum;
85     void *handle, *config;
86     struct afp_options options;
87     char *Obj, *Type, *Zone;
88     char username[MACFILELEN + 1];
89     void (*logout)(void), (*exit)(int);
90     int (*reply)(void *, int);
91     int (*attention)(void *, AFPUserBytes);
92     void (*sleep)(void);
93     /* to prevent confusion, only use these in afp_* calls */
94     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
95     void *uam_cookie; /* cookie for uams */
96
97 #ifdef FORCE_UIDGID
98     int                 force_uid;
99     uidgidset           uidgid;
100 #endif
101 } AFPObj;
102
103 extern int              afp_version;
104 extern int              afp_errno;
105 extern unsigned char    nologin;
106 extern struct dir       *curdir;
107 extern char             getwdbuf[];
108
109 extern int  get_afp_errno   __P((const int param));
110 extern void afp_options_init __P((struct afp_options *));
111 extern int afp_options_parse __P((int, char **, struct afp_options *));
112 extern int afp_options_parseline __P((char *, struct afp_options *));
113 extern void afp_options_free __P((struct afp_options *,
114                                       const struct afp_options *));
115 extern void setmessage __P((const char *));
116 extern void readmessage __P((void));
117
118 /* gettok.c */
119 extern void initline   __P((int, char *));
120 extern int  parseline  __P((int, char *));
121
122 /* afp_util.c */
123 const char *AfpNum2name __P((int ));
124
125 #ifndef NO_DDP
126 extern void afp_over_asp __P((AFPObj *));
127 #endif /* NO_DDP */
128 extern void afp_over_dsi __P((AFPObj *));
129
130 #endif /* globals.h */