Removed the DEBUG_MEMORY_LEAKS framework because we do this with Valgrind now.
[citadel.git] / citadel / server.h
1
2
3 #ifndef SERVER_H
4 #define SERVER_H
5
6 #ifdef __GNUC__
7 #define INLINE __inline__
8 #else
9 #define INLINE
10 #endif
11
12 #include "citadel.h"
13 #ifdef HAVE_OPENSSL
14 #define OPENSSL_NO_KRB5         /* work around redhat b0rken ssl headers */
15 #include <openssl/ssl.h>
16 #endif
17
18 /*
19  * New format for a message in memory
20  */
21 struct CtdlMessage {
22         int cm_magic;                   /* Self-check (NOT SAVED TO DISK) */
23         char cm_anon_type;              /* Anonymous or author-visible */
24         char cm_format_type;            /* Format type */
25         char *cm_fields[256];           /* Data fields */
26         unsigned int cm_flags;          /* How to handle (NOT SAVED TO DISK) */
27 };
28
29 #define CTDLMESSAGE_MAGIC               0x159d
30 #define CM_SKIP_HOOKS   0x01            /* Don't run server-side handlers */
31
32
33
34 #define CTDLEXIT_SHUTDOWN       0       /* Normal shutdown; do NOT auto-restart */
35
36 /*
37  * Exit codes 101 through 109 are used for conditions in which
38  * we deliberately do NOT want the service to automatically
39  * restart.
40  */
41 #define CTDLEXIT_CONFIG         101     /* Could not read citadel.config */
42 #define CTDLEXIT_CONTROL        102     /* Could not acquire lock */
43 #define CTDLEXIT_HOME           103     /* Citadel home directory not found */
44 #define CTDLEXIT_OOD            104     /* Out Of Date config - rerun setup */
45 #define CTDLEXIT_DB             105     /* Unable to initialize database */
46 #define CTDLEXIT_LIBCITADEL     106     /* Incorrect version of libcitadel */
47 #define CTDL_EXIT_UNSUP_AUTH    107     /* Unsupported auth mode configured */
48
49 /*
50  * Reasons why a session would be terminated (set CC->kill_me to these values)
51  */
52 enum {
53         KILLME_NOT,
54         KILLME_UNKNOWN,
55         KILLME_CLIENT_LOGGED_OUT,
56         KILLME_IDLE,
57         KILLME_CLIENT_DISCONNECTED,
58         KILLME_AUTHFAILED,
59         KILLME_SERVER_SHUTTING_DOWN,
60         KILLME_MAX_SESSIONS_EXCEEDED,
61         KILLME_ADMIN_TERMINATE,
62         KILLME_SELECT_INTERRUPTED,
63         KILLME_SELECT_FAILED,
64         KILLME_WRITE_FAILED,
65         KILLME_SIMULATION_WORKER,
66         KILLME_NOLOGIN,
67         KILLME_NO_CRYPTO,
68         KILLME_READSTRING_FAILED,
69         KILLME_MALLOC_FAILED,
70         KILLME_QUOTA,
71         KILLME_READ_FAILED,
72         KILLME_ILLEGAL_MANAGESIEVE_COMMAND,
73         KILLME_SPAMMER,
74         KILLME_XML_PARSER
75 };
76
77
78 #define CS_STEALTH      1       /* stealth mode */
79 #define CS_CHAT         2       /* chat mode */
80 #define CS_POSTING      4       /* Posting */
81
82
83 /*
84  * This is the control record for the message base... 
85  */
86 struct CitControl {
87         long MMhighest;                 /* highest message number in file   */
88         unsigned MMflags;               /* Global system flags              */
89         long MMnextuser;                /* highest user number on system    */
90         long MMnextroom;                /* highest room number on system    */
91         int version;                    /* Server-hosted upgrade level      */
92         int fulltext_wordbreaker;       /* ID of wordbreaker in use         */
93         long MMfulltext;                /* highest message number indexed   */
94         int MMdbversion;                /* Version of Berkeley DB used on previous server run */
95 };
96
97 extern int ScheduledShutdown;
98 extern struct CitControl CitControl;
99
100 struct ExpressMessage {
101         struct ExpressMessage *next;
102         time_t timestamp;       /* When this message was sent */
103         unsigned flags;         /* Special instructions */
104         char sender[256];       /* Name of sending user */
105         char sender_email[256]; /* Email or JID of sending user */
106         char *text;             /* Message text (if applicable) */
107 };
108
109 #define EM_BROADCAST    1       /* Broadcast message */
110 #define EM_GO_AWAY      2       /* Server requests client log off */
111 #define EM_CHAT         4       /* Server requests client enter chat */
112
113 /*
114  * Various things we need to lock and unlock
115  */
116 enum {
117         S_USERS,
118         S_ROOMS,
119         S_SESSION_TABLE,
120         S_FLOORTAB,
121         S_CHATQUEUE,
122         S_CONTROL,
123         S_NETDB,
124         S_SUPPMSGMAIN,
125         S_CONFIG,
126         S_HOUSEKEEPING,
127         S_NTTLIST,
128         S_DIRECTORY,
129         S_NETCONFIGS,
130         S_PUBLIC_CLIENTS,
131         S_FLOORCACHE,
132         S_ATBF,
133         S_JOURNAL_QUEUE,
134         S_RPLIST,
135         S_SIEVELIST,
136         S_CHKPWD,
137         S_LOG,
138         S_NETSPOOL,
139         S_THREAD_LIST,
140         S_XMPP_QUEUE,
141         S_SCHEDULE_LIST,
142         S_SINGLE_USER,
143         S_LDAP,
144         S_IM_LOGS,
145         MAX_SEMAPHORES
146 };
147
148
149 /*
150  * Upload types
151  */
152 #define UPL_FILE        0
153 #define UPL_NET         1
154 #define UPL_IMAGE       2
155
156
157 /*
158  * message transfer formats
159  */
160 enum {
161         MT_CITADEL,             /* Citadel proprietary */
162         MT_RFC822,              /* RFC822 */
163         MT_MIME,                /* MIME-formatted message */
164         MT_DOWNLOAD,            /* Download a component */
165         MT_SPEW_SECTION         /* Download a component in a single operation */
166 };
167
168 /*
169  * Message format types in the database
170  */
171 #define FMT_CITADEL     0       /* Citadel vari-format (proprietary) */
172 #define FMT_FIXED       1       /* Fixed format (proprietary)        */
173 #define FMT_RFC822      4       /* Standard (headers are in M field) */
174
175
176 /*
177  * Citadel DataBases (define one for each cdb we need to open)
178  */
179 enum {
180         CDB_MSGMAIN,            /* message base                  */
181         CDB_USERS,              /* user file                     */
182         CDB_ROOMS,              /* room index                    */
183         CDB_FLOORTAB,           /* floor index                   */
184         CDB_MSGLISTS,           /* room message lists            */
185         CDB_VISIT,              /* user/room relationships       */
186         CDB_DIRECTORY,          /* address book directory        */
187         CDB_USETABLE,           /* network use table             */
188         CDB_BIGMSGS,            /* larger message bodies         */
189         CDB_FULLTEXT,           /* full text search index        */
190         CDB_EUIDINDEX,          /* locate msgs by EUID           */
191         CDB_USERSBYNUMBER,      /* index of users by number      */
192         CDB_OPENID,             /* associates OpenIDs with users */
193         MAXCDB                  /* total number of CDB's defined */
194 };
195
196 struct cdbdata {
197         size_t len;
198         char *ptr;
199 };
200
201
202 /* 
203  * Event types can't be enum'ed, because they must remain consistent between
204  * builds (to allow for binary modules built somewhere else)
205  */
206 #define EVT_STOP        0       /* Session is terminating */
207 #define EVT_START       1       /* Session is starting */
208 #define EVT_LOGIN       2       /* A user is logging in */
209 #define EVT_NEWROOM     3       /* Changing rooms */
210 #define EVT_LOGOUT      4       /* A user is logging out */
211 #define EVT_SETPASS     5       /* Setting or changing password */
212 #define EVT_CMD         6       /* Called after each server command */
213 #define EVT_RWHO        7       /* An RWHO command is being executed */
214 #define EVT_ASYNC       8       /* Doing asynchronous messages */
215 #define EVT_STEALTH     9       /* Entering stealth mode */
216 #define EVT_UNSTEALTH   10      /* Exiting stealth mode */
217
218 #define EVT_TIMER       50      /* Timer events are called once per minute
219                                    and are not tied to any session */
220 #define EVT_HOUSE       51      /* as needed houskeeping stuff */
221 #define EVT_SHUTDOWN    52      /* Server is shutting down */
222
223 #define EVT_PURGEUSER   100     /* Deleting a user */
224 #define EVT_NEWUSER     102     /* Creating a user */
225
226 #define EVT_BEFOREREAD  200
227 #define EVT_BEFORESAVE  201
228 #define EVT_AFTERSAVE   202
229 #define EVT_SMTPSCAN    203     /* called before submitting a msg from SMTP */
230 /* Priority levels for paging functions (lower is better) */
231 enum {
232         XMSG_PRI_LOCAL,         /* Other users on -this- server */
233         XMSG_PRI_REMOTE,        /* Other users on a Citadel network (future) */
234         XMSG_PRI_FOREIGN,       /* Contacts on foreign instant message hosts */
235         MAX_XMSG_PRI
236 };
237
238
239 /* Defines the relationship of a user to a particular room */
240 typedef struct __visit {
241         long v_roomnum;
242         long v_roomgen;
243         long v_usernum;
244         long v_lastseen;
245         unsigned int v_flags;
246         char v_seen[SIZ];
247         char v_answered[SIZ];
248         int v_view;
249 } visit;
250
251 #define V_FORGET        1       /* User has zapped this room        */
252 #define V_LOCKOUT       2       /* User is locked out of this room  */
253 #define V_ACCESS        4       /* Access is granted to this room   */
254
255
256 /* Supplementary data for a message on disk
257  * These are kept separate from the message itself for one of two reasons:
258  * 1. Either their values may change at some point after initial save, or
259  * 2. They are merely caches of data which exist somewhere else, for speed.
260  */
261 struct MetaData {
262         long meta_msgnum;               /* Message number in *local* message base */
263         int meta_refcount;              /* Number of rooms pointing to this msg */
264         char meta_content_type[64];     /* Cached MIME content-type */
265         long meta_rfc822_length;        /* Cache of RFC822-translated msg length */
266         char mimetype[64];              /* if we were able to guess the mimetype for the data */ 
267 };
268
269 /* Calls to AdjRefCount() are queued and deferred, so the user doesn't
270  * have to wait for various disk-intensive operations to complete synchronously.
271  * This is the record format.
272  */
273 struct arcq {
274         long arcq_msgnum;               /* Message number being adjusted */
275         int arcq_delta;                 /* Adjustment ( usually 1 or -1 ) */
276 };
277
278
279 /* 
280  * Serialization routines use this struct to return a pointer and a length
281  */
282 struct ser_ret {
283         size_t len;
284         unsigned char *ser;
285 };
286
287
288 /*
289  * The S_USETABLE database is used in several modules now, so we define its format here.
290  */
291 struct UseTable {
292         char ut_msgid[SIZ];
293         time_t ut_timestamp;
294 };
295
296
297
298 /* Preferred field order                                                        */
299 /*               **********                     Important fields                */
300 /*                         ***************      Semi-important fields           */
301 /*                                        *     Message text (MUST be last)     */
302 #define FORDER  "IPTAFONHRDBCEWJGKLQSVXZYUM"
303
304 #endif /* SERVER_H */