]> arthur.barton.de Git - netatalk.git/blob - include/atalk/globals.h
Add recvfile support with splice() on Linux
[netatalk.git] / include / atalk / globals.h
1 /*
2  * Copyright (c) 1990,1993 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5
6 #ifndef AFPD_GLOBALS_H
7 #define AFPD_GLOBALS_H 1
8
9 #include <sys/param.h>
10 #include <grp.h>
11 #include <sys/types.h>
12
13 #ifdef HAVE_NETDB_H
14 #include <netdb.h>  /* this isn't header-protected under ultrix */
15 #endif /* HAVE_NETDB_H */
16
17 #include <atalk/afp.h>
18 #include <atalk/compat.h>
19 #include <atalk/unicode.h>
20 #include <atalk/uam.h>
21 #include <atalk/iniparser.h>
22 #ifdef WITH_DTRACE
23 #include <atalk/afp_dtrace.h>
24 #else
25 /* List of empty dtrace macros */
26 #define AFP_AFPFUNC_START(a,b)
27 #define AFP_AFPFUNC_DONE(a, b)
28 #define AFP_CNID_START(a)
29 #define AFP_CNID_DONE()
30 #define AFP_READ_START(a)
31 #define AFP_READ_DONE()
32 #define AFP_WRITE_START(a)
33 #define AFP_WRITE_DONE()
34 #endif
35
36 /* #define DOSFILELEN 12 */             /* Type1, DOS-compat*/
37 #define MACFILELEN 31                   /* Type2, HFS-compat */
38 #define UTF8FILELEN_EARLY 255           /* Type3, early Mac OS X 10.0-10.4.? */
39 /* #define UTF8FILELEN_NAME_MAX 765 */  /* Type3, 10.4.?- , getconf NAME_MAX */
40 /* #define UTF8FILELEN_SPEC 0xFFFF */   /* Type3, spec on document */
41 /* #define HFSPLUSFILELEN 510 */        /* HFS+ spec, 510byte = 255codepoint */
42
43 #define MAXUSERLEN 256
44
45 #define DEFAULT_MAX_DIRCACHE_SIZE 8192
46
47 #define OPTION_DEBUG         (1 << 0)
48 #define OPTION_CLOSEVOL      (1 << 1)
49 #define OPTION_SERVERNOTIF   (1 << 2)
50 #define OPTION_NOSENDFILE    (1 << 3)
51 #define OPTION_VETOMSG       (1 << 4) /* whether to send an AFP message for veto file access */
52 #define OPTION_AFP_READ_LOCK (1 << 5) /* whether to do AFP spec conforming read locks (default: no) */
53 #define OPTION_ANNOUNCESSH   (1 << 6)
54 #define OPTION_UUID          (1 << 7)
55 #define OPTION_ACL2MACCESS   (1 << 8)
56 #define OPTION_NOZEROCONF    (1 << 9)
57 #define OPTION_ACL2MODE      (1 << 10)
58 #define OPTION_SHARE_RESERV  (1 << 11) /* whether to use Solaris fcntl F_SHARE locks */
59 #define OPTION_DBUS_AFPSTATS (1 << 12) /* whether to run dbus thread for afpstats */
60 #define OPTION_SPOTLIGHT     (1 << 13) /* whether to initialize Spotlight support */
61 #define OPTION_SPOTLIGHT_VOL (1 << 14) /* whether spotlight shall be enabled by default for volumes */
62 #define OPTION_RECVFILE      (1 << 15)
63
64 #define PASSWD_NONE     0
65 #define PASSWD_SET     (1 << 0)
66 #define PASSWD_NOSAVE  (1 << 1)
67 #define PASSWD_ALL     (PASSWD_SET | PASSWD_NOSAVE)
68
69 #define IS_AFP_SESSION(obj) ((obj)->dsi && (obj)->dsi->serversock == -1)
70
71 /**********************************************************************************************
72  * Ini config sections
73  **********************************************************************************************/
74
75 #define INISEC_GLOBAL "Global"
76 #define INISEC_HOMES  "Homes"
77
78 struct DSI;
79 #define AFPOBJ_TMPSIZ (MAXPATHLEN)
80
81 struct afp_volume_name {
82     time_t     mtime;
83     int        loaded;
84 };
85
86 struct afp_options {
87     int connections;            /* Maximum number of possible AFP connections */
88     int tickleval;
89     int timeout;
90     int flags;
91     int dircachesize;
92     int sleep;                  /* Maximum time allowed to sleep (in tickles) */
93     int disconnected;           /* Maximum time in disconnected state (in tickles) */
94     int fce_fmodwait;           /* number of seconds FCE file mod events are put on hold */
95     unsigned int tcp_sndbuf, tcp_rcvbuf;
96     unsigned char passwdbits, passwdminlen;
97     uint32_t server_quantum;
98     int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */
99     char *hostname;
100     char *listen, *interfaces, *port;
101     char *Cnid_srv, *Cnid_port;
102     char *configfile;
103     char *uampath, *fqdn;
104     char *sigconffile;
105     char *uuidconf;
106     char *guest, *loginmesg, *keyfile, *passwdfile, *extmapfile;
107     char *uamlist;
108     char *signatureopt;
109     unsigned char signature[16];
110     char *k5service, *k5realm, *k5keytab;
111     size_t k5principal_buflen;
112     char *k5principal;
113     char *unixcodepage, *maccodepage, *volcodepage;
114     charset_t maccharset, unixcharset; 
115     mode_t umask;
116     mode_t save_mask;
117     gid_t admingid;
118     int    volnamelen;
119     /* default value for winbind authentication */
120     char *ntdomain, *ntseparator, *addomain;
121     char *logconfig;
122     char *logfile;
123     char *mimicmodel;
124     char *adminauthuser;
125     char *ignored_attr;
126     char *slmod_path;
127     int  splice_size;
128     struct afp_volume_name volfile;
129 };
130
131 typedef struct AFPObj {
132     const char *cmdlineconfigfile;
133     int cmdlineflags;
134     const void *signature;
135     struct DSI *dsi;
136     struct afp_options options;
137     dictionary *iniconfig;
138     char username[MAXUSERLEN];
139     /* to prevent confusion, only use these in afp_* calls */
140     char oldtmp[AFPOBJ_TMPSIZ + 1], newtmp[AFPOBJ_TMPSIZ + 1];
141     void *uam_cookie; /* cookie for uams */
142     struct session_info  sinfo;
143     uid_t uid;  /* client running user id */
144     int ipc_fd; /* anonymous PF_UNIX socket for IPC with afpd parent */
145     gid_t *groups;
146     int ngroups;
147     int afp_version;
148     int cnx_cnt, cnx_max;
149     /* Functions */
150     void (*logout)(void);
151     void (*exit)(int);
152     int (*reply)(void *, int);
153     int (*attention)(void *, AFPUserBytes);
154 } AFPObj;
155
156 /* typedef for AFP functions handlers */
157 typedef int (*AFPCmd)(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
158
159 /* Global variables */
160 extern AFPObj             *AFPobj;
161 extern int                afp_version;
162 extern int                afp_errno;
163 extern unsigned char      nologin;
164 extern struct dir         *curdir;
165 extern char               getwdbuf[];
166 extern struct afp_options default_options;
167 extern const char         *Cnid_srv;
168 extern const char         *Cnid_port;
169
170 extern int  get_afp_errno   (const int param);
171 extern void afp_options_init (struct afp_options *);
172 extern void afp_options_parse_cmdline(AFPObj *obj, int ac, char **av);
173 extern int setmessage (const char *);
174 extern void readmessage (AFPObj *);
175
176 /* afp_util.c */
177 extern const char *AfpNum2name (int );
178 extern const char *AfpErr2name(int err);
179
180 /* directory.c */
181 extern struct dir rootParent;
182
183 extern void afp_over_dsi (AFPObj *);
184 extern void afp_over_dsi_sighandlers(AFPObj *obj);
185 #endif /* globals.h */