583f55a2ccf4ad5f5d0fce97ee0b39c3b4815b1c
[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
141         /* Masquerade... */
142         char fake_username[USERNAME_SIZE];      /* Fake username <bc> */ 
143         char fake_postname[USERNAME_SIZE];      /* Fake postname <bc> */
144         char fake_hostname[64];                 /* Fake hostname <bc> */
145         char fake_roomname[ROOMNAMELEN];        /* Fake roomname <bc> */
146
147         /* Dynamically allocated session data */
148         struct CtdlSessData *FirstSessData;
149 };
150
151 typedef struct CitContext t_context;
152
153 /* Values for CitContext.state */
154 enum {
155         CON_IDLE,               /* This context is doing nothing */
156         CON_EXECUTING           /* This context is bound to a thread */
157 };
158
159
160 #define CS_STEALTH      1       /* stealth mode */
161 #define CS_CHAT         2       /* chat mode */
162 #define CS_POSTING      4       /* Posting */
163
164 struct CitContext *MyContext(void);
165 #define CC ((struct CitContext *)MyContext())
166
167 extern DLEXP struct CitContext *ContextList;
168 extern DLEXP int ScheduledShutdown;
169 extern DLEXP struct CitControl CitControl;
170
171
172 struct ExpressMessage {
173         struct ExpressMessage *next;
174         time_t timestamp;       /* When this message was sent */
175         unsigned flags;         /* Special instructions */
176         char sender[64];        /* Name of sending user */
177         char *text;             /* Message text (if applicable) */
178 };
179
180 #define EM_BROADCAST    1       /* Broadcast message */
181 #define EM_GO_AWAY      2       /* Server requests client log off */
182 #define EM_CHAT         4       /* Server requests client enter chat */
183
184 struct ChatLine {
185         struct ChatLine *next;
186         int chat_seq;
187         time_t chat_time;
188         char chat_text[SIZ];
189         char chat_username[USERNAME_SIZE];
190         char chat_room[ROOMNAMELEN];
191 };
192
193 /*
194  * Various things we need to lock and unlock
195  */
196 enum {
197         S_USERSUPP,
198         S_QUICKROOM,
199         S_SESSION_TABLE,
200         S_FLOORTAB,
201         S_CHATQUEUE,
202         S_CONTROL,
203         S_DATABASE,
204         S_NETDB,
205         S_SUPPMSGMAIN,
206         S_I_WANNA_SELECT,
207         S_CONFIG,
208         S_WORKER_LIST,
209         S_HOUSEKEEPING,
210         S_NTTLIST,
211         S_DIRECTORY,
212         MAX_SEMAPHORES
213 };
214
215
216 /*
217  * Upload types
218  */
219 #define UPL_FILE        0
220 #define UPL_NET         1
221 #define UPL_IMAGE       2
222
223
224 /*
225  * message transfer formats
226  */
227 enum {
228         MT_CITADEL,             /* Citadel proprietary */
229         MT_RFC822,              /* RFC822 */
230         MT_MIME,                /* MIME-formatted message */
231         MT_DOWNLOAD             /* Download a component */
232 };
233
234 /*
235  * Message format types in the database
236  */
237 #define FMT_CITADEL     0       /* Citadel vari-format (proprietary) */
238 #define FMT_FIXED       1       /* Fixed format (proprietary)        */
239 #define FMT_RFC822      4       /* Standard (headers are in M field) */
240
241
242 /*
243  * Citadel DataBases (define one for each cdb we need to open)
244  */
245 enum {
246         CDB_MSGMAIN,            /* message base                  */
247         CDB_USERSUPP,           /* user file                     */
248         CDB_QUICKROOM,          /* room index                    */
249         CDB_FLOORTAB,           /* floor index                   */
250         CDB_MSGLISTS,           /* room message lists            */
251         CDB_VISIT,              /* user/room relationships       */
252         CDB_DIRECTORY,          /* address book directory        */
253         MAXCDB                  /* total number of CDB's defined */
254 };
255
256 struct cdbdata {
257         size_t len;
258         char *ptr;
259 };
260
261
262
263 /* Structures and declarations for function hooks of various types */
264
265 struct LogFunctionHook {
266         struct LogFunctionHook *next;
267         int loglevel;
268         void (*h_function_pointer) (char *);
269 };
270 extern DLEXP struct LogFunctionHook *LogHookTable;
271
272 struct CleanupFunctionHook {
273         struct CleanupFunctionHook *next;
274         void (*h_function_pointer) (void);
275 };
276 extern DLEXP struct CleanupFunctionHook *CleanupHookTable;
277
278
279
280
281 /*
282  * SessionFunctionHook extensions are used for any type of hook for which
283  * the context in which it's being called (which is determined by the event
284  * type) will make it obvious for the hook function to know where to look for
285  * pertinent data.
286  */
287 struct SessionFunctionHook {
288         struct SessionFunctionHook *next;
289         void (*h_function_pointer) (void);
290         int eventtype;
291 };
292 extern DLEXP struct SessionFunctionHook *SessionHookTable;
293
294 /* 
295  * Event types can't be enum'ed, because they must remain consistent between
296  * builds (to allow for binary modules built somewhere else)
297  */
298 #define EVT_STOP        0       /* Session is terminating */
299 #define EVT_START       1       /* Session is starting */
300 #define EVT_LOGIN       2       /* A user is logging in */
301 #define EVT_NEWROOM     3       /* Changing rooms */
302 #define EVT_LOGOUT      4       /* A user is logging out */
303 #define EVT_SETPASS     5       /* Setting or changing password */
304 #define EVT_CMD         6       /* Called after each server command */
305 #define EVT_RWHO        7       /* An RWHO command is being executed */
306
307 #define EVT_TIMER       50      /* Timer events are called once per minute
308                                    and are not tied to any session */
309
310 /*
311  * UserFunctionHook extensions are used for any type of hook which implements
312  * an operation on a user or username (potentially) other than the one
313  * operating the current session.
314  */
315 struct UserFunctionHook {
316         struct UserFunctionHook *next;
317         void (*h_function_pointer) (char *username, long usernum);
318         int eventtype;
319 };
320 extern DLEXP struct UserFunctionHook *UserHookTable;
321
322 #define EVT_PURGEUSER   100     /* Deleting a user */
323 #define EVT_OUTPUTMSG   101     /* Outputting a message */
324
325 /*
326  * MessageFunctionHook extensions are used for hooks which implement handlers
327  * for various types of message operations (save, read, etc.)
328  */
329 struct MessageFunctionHook {
330         struct MessageFunctionHook *next;
331         int (*h_function_pointer) (struct CtdlMessage *msg);
332         int eventtype;
333 };
334 extern DLEXP struct MessageFunctionHook *MessageHookTable;
335
336 #define EVT_BEFOREREAD  200
337 #define EVT_BEFORESAVE  201
338 #define EVT_AFTERSAVE   202
339
340
341
342 /*
343  * NetprocFunctionHook extensions are used for hooks which implement handlers
344  * for incoming network messages.
345  */
346 struct NetprocFunctionHook {
347         struct NetprocFunctionHook *next;
348         int (*h_function_pointer) (struct CtdlMessage *msg, char *target_room);
349 };
350 extern DLEXP struct NetprocFunctionHook *NetprocHookTable;
351
352
353 /*
354  * DeleteFunctionHook extensions are used for hooks which get called when a
355  * message is about to be deleted.
356  */
357 struct DeleteFunctionHook {
358         struct DeleteFunctionHook *next;
359         void (*h_function_pointer) (char *target_room, long msgnum);
360 };
361 extern DLEXP struct DeleteFunctionHook *DeleteHookTable;
362
363
364 /*
365  * ExpressMessageFunctionHook extensions are used for hooks which implement
366  * the sending of an express message through various channels.  Any function
367  * registered should return the number of recipients to whom the message was
368  * successfully transmitted.
369  */
370 struct XmsgFunctionHook {
371         struct XmsgFunctionHook *next;
372         int (*h_function_pointer) (char *, char *, char *);
373         int order;
374 };
375 extern DLEXP struct XmsgFunctionHook *XmsgHookTable;
376
377 /* Priority levels for paging functions (lower is better) */
378 enum {
379         XMSG_PRI_LOCAL,         /* Other users on -this- server */
380         XMSG_PRI_REMOTE,        /* Other users on a Citadel network (future) */
381         XMSG_PRI_FOREIGN,       /* Contacts on foreign instant message hosts */
382         MAX_XMSG_PRI
383 };
384
385
386
387 /*
388  * ServiceFunctionHook extensions are used for hooks which implement various
389  * non-Citadel services (on TCP protocols) directly in the Citadel server.
390  */
391 struct ServiceFunctionHook {
392         struct ServiceFunctionHook *next;
393         int tcp_port;
394         char *sockpath;
395         void (*h_greeting_function) (void) ;
396         void (*h_command_function) (void) ;
397         int msock;
398 };
399 extern DLEXP struct ServiceFunctionHook *ServiceHookTable;
400
401
402
403 /* Defines the relationship of a user to a particular room */
404 struct visit {
405         long v_roomnum;
406         long v_roomgen;
407         long v_usernum;
408         long v_lastseen;
409         unsigned int v_flags;
410         char v_seen[SIZ];
411 };
412
413 #define V_FORGET        1       /* User has zapped this room        */
414 #define V_LOCKOUT       2       /* User is locked out of this room  */
415 #define V_ACCESS        4       /* Access is granted to this room   */
416
417 #define UA_KNOWN                2
418 #define UA_GOTOALLOWED          4
419 #define UA_HASNEWMSGS           8
420 #define UA_ZAPPED               16
421
422
423 /* Supplementary data for a message on disk
424  * (These are kept separately from the message itself because they are
425  * fields whose values may change at some point after the message is saved.)
426  */
427 struct MetaData {
428         long meta_msgnum;       /* Message number in *local* message base */
429         int meta_refcount;      /* Number of rooms which point to this msg */
430         char meta_content_type[64];
431         char meta_mod;          /* Moderated to what level? */
432         /* more stuff will be added to this record in the future */
433 };
434
435
436
437 /* Built-in debuggable stuff for checking for memory leaks */
438 #ifdef DEBUG_MEMORY_LEAKS
439
440 #define mallok(howbig)          tracked_malloc(howbig, __FILE__, __LINE__)
441 #define phree(whichptr)                 tracked_free(whichptr)
442 #define reallok(whichptr,howbig)        tracked_realloc(whichptr,howbig)
443 #define strdoop(orig)           tracked_strdup(orig, __FILE__, __LINE__)
444
445 void *tracked_malloc(size_t, char *, int);
446 void tracked_free(void *);
447 void *tracked_realloc(void *, size_t);
448 void dump_tracked(void);
449 char *tracked_strdup(const char *, char *, int);
450
451 struct TheHeap {
452         struct TheHeap *next;
453         char h_file[32];
454         int h_line;
455         void *h_ptr;
456 };
457
458 extern DLEXP struct TheHeap *heap;
459
460 #else
461
462 #define mallok(howbig)                  malloc(howbig)
463 #define phree(whichptr)                 free(whichptr)
464 #define reallok(whichptr,howbig)        realloc(whichptr,howbig)
465 #define strdoop(orig)                   strdup(orig)
466
467
468 #endif
469
470
471 /* 
472  * Serialization routines use this struct to return a pointer and a length
473  */
474 struct ser_ret {
475         size_t len;
476         char *ser;
477 };
478
479
480 /* Preferred field order */
481 /*               **********                     Important fields */
482 /*                         ***************      Semi-important fields */
483 /*                                        *     Message text (MUST be last) */
484 #define FORDER  "IPTAFONHRDBCEGJKLQSUVWXYZM"
485
486 #endif /* SERVER_H */