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