* Added a new message function hook type EVT_SMTPSCAN which permits modules to
[citadel.git] / citadel / server.h
1 /* $Id$ */
2
3 /* Uncomment this if you want to track memory leaks.
4  * This incurs some overhead, so don't use it unless you're debugging the code!
5  */
6 /* #define DEBUG_MEMORY_LEAKS */
7
8 /*
9  * New format for a message in memory
10  */
11
12 #ifndef SERVER_H
13 #define SERVER_H
14
15 #ifdef __GNUC__
16 #define INLINE inline
17 #else
18 #define INLINE
19 #endif
20
21 #ifdef __CYGWIN__
22
23 #ifdef IN_LIBCIT
24 #define DLEXP __declspec(dllexport)
25 #else
26 #define DLEXP __declspec(dllimport)
27 #endif
28
29 #else
30 #define DLEXP
31
32 #endif /* __CYGWIN__ */
33
34 #include "citadel.h"
35 #ifdef HAVE_OPENSSL
36 #include <openssl/ssl.h>
37 #endif
38
39 #define CTDLMESSAGE_MAGIC               0x159d
40 struct CtdlMessage {
41         int cm_magic;                   /* Self-check */
42         char cm_anon_type;              /* Anonymous or author-visible */
43         char cm_format_type;            /* Format type */
44         char *cm_fields[256];           /* Data fields */
45         unsigned int cm_flags;          /* How to handle (NOT SAVED TO DISK) */
46 };
47
48 #define CM_SKIP_HOOKS   0x01            /* Don't run server-side handlers */
49
50
51 /*
52  * Generic per-session variable or data structure storage
53  */
54 struct CtdlSessData {
55         struct CtdlSessData *next;
56         unsigned long sym_id;
57         void *sym_data;
58 };
59
60 /*
61  * Static user data symbol types
62  */
63 enum {
64         SYM_DESIRED_SECTION,            /* Used by the MIME parser */
65         SYM_MA_INFO,                    /* Handles multipart/alternative */
66         SYM_REPL,                       /* Used for replication checking */
67         SYM_MAX
68 };
69
70
71 /*
72  * Here's the big one... the Citadel context structure.
73  *
74  * This structure keeps track of all information relating to a running 
75  * session on the server.  We keep one of these for each session thread.
76  *
77  * Note that the first element is "*next" so that it may be used without
78  * modification in a linked list.
79  */
80 struct CitContext {
81         struct CitContext *next;        /* Link to next session in the list */
82
83         struct usersupp usersupp;       /* Database record buffers */
84         struct quickroom quickroom;
85
86         int state;              /* thread state (see CON_ values below) */
87         int kill_me;            /* Set to nonzero to flag for termination */
88
89         char curr_user[USERNAME_SIZE];  /* name of current user */
90         int logged_in;          /* logged in */
91         int internal_pgm;       /* authenticated as internal program */
92         char temp[32];          /* temp file name */
93         int nologin;            /* not allowed to log in */
94         int is_local_socket;    /* set to 1 if client is on unix domain sock */
95
96         char net_node[32];      /* Is the client another Citadel server? */
97         int client_socket;
98         int cs_pid;             /* session ID */
99         time_t cs_lastupdt;     /* time of last update */
100         time_t lastcmd;         /* time of last command executed */
101         time_t lastidle;        /* For computing idle time */
102         char lastcmdname[5];    /* name of last command executed */
103         unsigned cs_flags;      /* miscellaneous flags */
104         void (*h_command_function) (void) ;     /* service command function */
105         int is_async;           /* Nonzero if client accepts async msgs */
106
107         /* feeping creaturisms... */
108         int cs_clientdev;       /* client developer ID */
109         int cs_clienttyp;       /* client type code */
110         int cs_clientver;       /* client version number */
111         char cs_clientname[32]; /* name of client software */
112         char cs_host[64];       /* host logged in from */
113
114         /* The Internet type of thing */
115         char *cs_inet_email;    /* Return address of outbound Internet mail */
116
117         FILE *download_fp;      /* Fields relating to file transfer */
118         FILE *upload_fp;
119         char upl_file[SIZ];
120         char upl_path[SIZ];
121         char upl_comment[SIZ];
122         char upl_filedir[SIZ];
123         char dl_is_net;
124         char upload_type;
125
126         /* Beginning of cryptography - session nonce */
127         char cs_nonce[NONCE_SIZE];      /* The nonce for this session's next auth transaction */
128
129         /* Redirect this session's output to somewhere else? */
130         FILE *redirect_fp;
131         int redirect_sock;
132 #ifdef HAVE_OPENSSL
133         SSL *ssl;
134         int redirect_ssl;
135 #endif
136
137         /* A linked list of all express messages sent to us. */
138         struct ExpressMessage *FirstExpressMessage;
139         int disable_exp;        /* Set to 1 to disable incoming pages */
140         int newmail;            /* Other sessions increment this */
141
142         /* Masquerade... */
143         char fake_username[USERNAME_SIZE];      /* Fake username <bc> */ 
144         char fake_postname[USERNAME_SIZE];      /* Fake postname <bc> */
145         char fake_hostname[64];                 /* Fake hostname <bc> */
146         char fake_roomname[ROOMNAMELEN];        /* Fake roomname <bc> */
147
148         /* Dynamically allocated session data */
149         struct CtdlSessData *FirstSessData;
150 };
151
152 typedef struct CitContext t_context;
153
154 /* Values for CitContext.state */
155 enum {
156         CON_IDLE,               /* This context is doing nothing */
157         CON_EXECUTING           /* This context is bound to a thread */
158 };
159
160
161 #define CS_STEALTH      1       /* stealth mode */
162 #define CS_CHAT         2       /* chat mode */
163 #define CS_POSTING      4       /* Posting */
164
165 struct CitContext *MyContext(void);
166 #define CC ((struct CitContext *)MyContext())
167
168 extern DLEXP struct CitContext *ContextList;
169 extern DLEXP int ScheduledShutdown;
170 extern DLEXP struct CitControl CitControl;
171
172
173 struct ExpressMessage {
174         struct ExpressMessage *next;
175         time_t timestamp;       /* When this message was sent */
176         unsigned flags;         /* Special instructions */
177         char sender[64];        /* Name of sending user */
178         char *text;             /* Message text (if applicable) */
179 };
180
181 #define EM_BROADCAST    1       /* Broadcast message */
182 #define EM_GO_AWAY      2       /* Server requests client log off */
183 #define EM_CHAT         4       /* Server requests client enter chat */
184
185 struct ChatLine {
186         struct ChatLine *next;
187         int chat_seq;
188         time_t chat_time;
189         char chat_text[SIZ];
190         char chat_username[USERNAME_SIZE];
191         char chat_room[ROOMNAMELEN];
192 };
193
194 /*
195  * Various things we need to lock and unlock
196  */
197 enum {
198         S_USERSUPP,
199         S_QUICKROOM,
200         S_SESSION_TABLE,
201         S_FLOORTAB,
202         S_CHATQUEUE,
203         S_CONTROL,
204         S_DATABASE,
205         S_NETDB,
206         S_SUPPMSGMAIN,
207         S_I_WANNA_SELECT,
208         S_CONFIG,
209         S_WORKER_LIST,
210         S_HOUSEKEEPING,
211         S_NTTLIST,
212         S_DIRECTORY,
213         MAX_SEMAPHORES
214 };
215
216
217 /*
218  * Upload types
219  */
220 #define UPL_FILE        0
221 #define UPL_NET         1
222 #define UPL_IMAGE       2
223
224
225 /*
226  * message transfer formats
227  */
228 enum {
229         MT_CITADEL,             /* Citadel proprietary */
230         MT_RFC822,              /* RFC822 */
231         MT_MIME,                /* MIME-formatted message */
232         MT_DOWNLOAD             /* Download a component */
233 };
234
235 /*
236  * Message format types in the database
237  */
238 #define FMT_CITADEL     0       /* Citadel vari-format (proprietary) */
239 #define FMT_FIXED       1       /* Fixed format (proprietary)        */
240 #define FMT_RFC822      4       /* Standard (headers are in M field) */
241
242
243 /*
244  * Citadel DataBases (define one for each cdb we need to open)
245  */
246 enum {
247         CDB_MSGMAIN,            /* message base                  */
248         CDB_USERSUPP,           /* user file                     */
249         CDB_QUICKROOM,          /* room index                    */
250         CDB_FLOORTAB,           /* floor index                   */
251         CDB_MSGLISTS,           /* room message lists            */
252         CDB_VISIT,              /* user/room relationships       */
253         CDB_DIRECTORY,          /* address book directory        */
254         CDB_USETABLE,           /* network use table             */
255         MAXCDB                  /* total number of CDB's defined */
256 };
257
258 struct cdbdata {
259         size_t len;
260         char *ptr;
261 };
262
263
264
265 /* Structures and declarations for function hooks of various types */
266
267 struct LogFunctionHook {
268         struct LogFunctionHook *next;
269         int loglevel;
270         void (*h_function_pointer) (char *);
271 };
272 extern DLEXP struct LogFunctionHook *LogHookTable;
273
274 struct CleanupFunctionHook {
275         struct CleanupFunctionHook *next;
276         void (*h_function_pointer) (void);
277 };
278 extern DLEXP struct CleanupFunctionHook *CleanupHookTable;
279
280
281
282
283 /*
284  * SessionFunctionHook extensions are used for any type of hook for which
285  * the context in which it's being called (which is determined by the event
286  * type) will make it obvious for the hook function to know where to look for
287  * pertinent data.
288  */
289 struct SessionFunctionHook {
290         struct SessionFunctionHook *next;
291         void (*h_function_pointer) (void);
292         int eventtype;
293 };
294 extern DLEXP struct SessionFunctionHook *SessionHookTable;
295
296 /* 
297  * Event types can't be enum'ed, because they must remain consistent between
298  * builds (to allow for binary modules built somewhere else)
299  */
300 #define EVT_STOP        0       /* Session is terminating */
301 #define EVT_START       1       /* Session is starting */
302 #define EVT_LOGIN       2       /* A user is logging in */
303 #define EVT_NEWROOM     3       /* Changing rooms */
304 #define EVT_LOGOUT      4       /* A user is logging out */
305 #define EVT_SETPASS     5       /* Setting or changing password */
306 #define EVT_CMD         6       /* Called after each server command */
307 #define EVT_RWHO        7       /* An RWHO command is being executed */
308
309 #define EVT_TIMER       50      /* Timer events are called once per minute
310                                    and are not tied to any session */
311
312 /*
313  * UserFunctionHook extensions are used for any type of hook which implements
314  * an operation on a user or username (potentially) other than the one
315  * operating the current session.
316  */
317 struct UserFunctionHook {
318         struct UserFunctionHook *next;
319         void (*h_function_pointer) (char *username, long usernum);
320         int eventtype;
321 };
322 extern DLEXP struct UserFunctionHook *UserHookTable;
323
324 #define EVT_PURGEUSER   100     /* Deleting a user */
325 #define EVT_OUTPUTMSG   101     /* Outputting a message */
326
327 /*
328  * MessageFunctionHook extensions are used for hooks which implement handlers
329  * for various types of message operations (save, read, etc.)
330  */
331 struct MessageFunctionHook {
332         struct MessageFunctionHook *next;
333         int (*h_function_pointer) (struct CtdlMessage *msg);
334         int eventtype;
335 };
336 extern DLEXP struct MessageFunctionHook *MessageHookTable;
337
338 #define EVT_BEFOREREAD  200
339 #define EVT_BEFORESAVE  201
340 #define EVT_AFTERSAVE   202
341 #define EVT_SMTPSCAN    203     /* called before submitting a msg from SMTP */
342
343
344
345 /*
346  * NetprocFunctionHook extensions are used for hooks which implement handlers
347  * for incoming network messages.
348  */
349 struct NetprocFunctionHook {
350         struct NetprocFunctionHook *next;
351         int (*h_function_pointer) (struct CtdlMessage *msg, char *target_room);
352 };
353 extern DLEXP struct NetprocFunctionHook *NetprocHookTable;
354
355
356 /*
357  * DeleteFunctionHook extensions are used for hooks which get called when a
358  * message is about to be deleted.
359  */
360 struct DeleteFunctionHook {
361         struct DeleteFunctionHook *next;
362         void (*h_function_pointer) (char *target_room, long msgnum);
363 };
364 extern DLEXP struct DeleteFunctionHook *DeleteHookTable;
365
366
367 /*
368  * ExpressMessageFunctionHook extensions are used for hooks which implement
369  * the sending of an express message through various channels.  Any function
370  * registered should return the number of recipients to whom the message was
371  * successfully transmitted.
372  */
373 struct XmsgFunctionHook {
374         struct XmsgFunctionHook *next;
375         int (*h_function_pointer) (char *, char *, char *);
376         int order;
377 };
378 extern DLEXP struct XmsgFunctionHook *XmsgHookTable;
379
380 /* Priority levels for paging functions (lower is better) */
381 enum {
382         XMSG_PRI_LOCAL,         /* Other users on -this- server */
383         XMSG_PRI_REMOTE,        /* Other users on a Citadel network (future) */
384         XMSG_PRI_FOREIGN,       /* Contacts on foreign instant message hosts */
385         MAX_XMSG_PRI
386 };
387
388
389
390 /*
391  * ServiceFunctionHook extensions are used for hooks which implement various
392  * non-Citadel services (on TCP protocols) directly in the Citadel server.
393  */
394 struct ServiceFunctionHook {
395         struct ServiceFunctionHook *next;
396         int tcp_port;
397         char *sockpath;
398         void (*h_greeting_function) (void) ;
399         void (*h_command_function) (void) ;
400         int msock;
401 };
402 extern DLEXP struct ServiceFunctionHook *ServiceHookTable;
403
404
405
406 /* Defines the relationship of a user to a particular room */
407 struct visit {
408         long v_roomnum;
409         long v_roomgen;
410         long v_usernum;
411         long v_lastseen;
412         unsigned int v_flags;
413         char v_seen[SIZ];
414         int v_view;
415 };
416
417 #define V_FORGET        1       /* User has zapped this room        */
418 #define V_LOCKOUT       2       /* User is locked out of this room  */
419 #define V_ACCESS        4       /* Access is granted to this room   */
420
421 #define UA_KNOWN                2
422 #define UA_GOTOALLOWED          4
423 #define UA_HASNEWMSGS           8
424 #define UA_ZAPPED               16
425
426
427 /* Supplementary data for a message on disk
428  * (These are kept separately from the message itself because they are
429  * fields whose values may change at some point after the message is saved.)
430  */
431 struct MetaData {
432         long meta_msgnum;       /* Message number in *local* message base */
433         int meta_refcount;      /* Number of rooms which point to this msg */
434         char meta_content_type[64];
435         /* more stuff will be added to this record in the future */
436 };
437
438
439
440 /* Built-in debuggable stuff for checking for memory leaks */
441 #ifdef DEBUG_MEMORY_LEAKS
442
443 #define mallok(howbig)          tracked_malloc(howbig, __FILE__, __LINE__)
444 #define phree(whichptr)                 tracked_free(whichptr)
445 #define reallok(whichptr,howbig)        tracked_realloc(whichptr,howbig)
446 #define strdoop(orig)           tracked_strdup(orig, __FILE__, __LINE__)
447
448 void *tracked_malloc(size_t, char *, int);
449 void tracked_free(void *);
450 void *tracked_realloc(void *, size_t);
451 void dump_tracked(void);
452 char *tracked_strdup(const char *, char *, int);
453
454 struct TheHeap {
455         struct TheHeap *next;
456         char h_file[32];
457         int h_line;
458         void *h_ptr;
459 };
460
461 extern DLEXP struct TheHeap *heap;
462
463 #else
464
465 #define mallok(howbig)                  malloc(howbig)
466 #define phree(whichptr)                 free(whichptr)
467 #define reallok(whichptr,howbig)        realloc(whichptr,howbig)
468 #define strdoop(orig)                   strdup(orig)
469
470
471 #endif
472
473
474 /* 
475  * Serialization routines use this struct to return a pointer and a length
476  */
477 struct ser_ret {
478         size_t len;
479         char *ser;
480 };
481
482
483 /* Preferred field order */
484 /*               **********                     Important fields */
485 /*                         ***************      Semi-important fields */
486 /*                                        *     Message text (MUST be last) */
487 #define FORDER  "IPTAFONHRDBCEGJKLQSUVWXYZM"
488
489 #endif /* SERVER_H */