]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/globals.h
Use the right type for AFP function buffers size, size_t not int or unsigned int
[netatalk.git] / etc / afpd / globals.h
1 /*
2  * $Id: globals.h,v 1.28 2009-10-15 10:43:13 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 #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     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
105 #ifdef FORCE_UIDGID
106     int                 force_uid;
107     uidgidset           uidgid;
108 #endif
109 } AFPObj;
110
111 /* typedef for AFP functions handlers */
112 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
113
114 extern int              afp_version;
115 extern int              afp_errno;
116 extern unsigned char    nologin;
117 extern struct dir       *curdir;
118 extern char             getwdbuf[];
119
120 /* FIXME CNID */
121 extern char             Cnid_srv[MAXHOSTNAMELEN + 1];
122 extern int              Cnid_port;
123
124 extern int  get_afp_errno   (const int param);
125 extern void afp_options_init (struct afp_options *);
126 extern int afp_options_parse (int, char **, struct afp_options *);
127 extern int afp_options_parseline (char *, struct afp_options *);
128 extern void afp_options_free (struct afp_options *,
129                                       const struct afp_options *);
130 extern void setmessage (const char *);
131 extern void readmessage (AFPObj *);
132
133 /* gettok.c */
134 extern void initline   (int, char *);
135 extern int  parseline  (int, char *);
136
137 /* afp_util.c */
138 const char *AfpNum2name (int );
139
140 #ifndef NO_DDP
141 extern void afp_over_asp (AFPObj *);
142 #endif /* NO_DDP */
143 extern void afp_over_dsi (AFPObj *);
144
145 #endif /* globals.h */