* Began implementation of a networker use table that doesn't chew up oodles
[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         CDB_USETABLE,           /* network use table             */
254         MAXCDB                  /* total number of CDB's defined */
255 };
256
257 struct cdbdata {
258         size_t len;
259         char *ptr;
260 };
261
262
263
264 /* Structures and declarations for function hooks of various types */
265
266 struct LogFunctionHook {
267         struct LogFunctionHook *next;
268         int loglevel;
269         void (*h_function_pointer) (char *);
270 };
271 extern DLEXP struct LogFunctionHook *LogHookTable;
272
273 struct CleanupFunctionHook {
274         struct CleanupFunctionHook *next;
275         void (*h_function_pointer) (void);
276 };
277 extern DLEXP struct CleanupFunctionHook *CleanupHookTable;
278
279
280
281
282 /*
283  * SessionFunctionHook extensions are used for any type of hook for which
284  * the context in which it's being called (which is determined by the event
285  * type) will make it obvious for the hook function to know where to look for
286  * pertinent data.
287  */
288 struct SessionFunctionHook {
289         struct SessionFunctionHook *next;
290         void (*h_function_pointer) (void);
291         int eventtype;
292 };
293 extern DLEXP struct SessionFunctionHook *SessionHookTable;
294
295 /* 
296  * Event types can't be enum'ed, because they must remain consistent between
297  * builds (to allow for binary modules built somewhere else)
298  */
299 #define EVT_STOP        0       /* Session is terminating */
300 #define EVT_START       1       /* Session is starting */
301 #define EVT_LOGIN       2       /* A user is logging in */
302 #define EVT_NEWROOM     3       /* Changing rooms */
303 #define EVT_LOGOUT      4       /* A user is logging out */
304 #define EVT_SETPASS     5       /* Setting or changing password */
305 #define EVT_CMD         6       /* Called after each server command */
306 #define EVT_RWHO        7       /* An RWHO command is being executed */
307
308 #define EVT_TIMER       50      /* Timer events are called once per minute
309                                    and are not tied to any session */
310
311 /*
312  * UserFunctionHook extensions are used for any type of hook which implements
313  * an operation on a user or username (potentially) other than the one
314  * operating the current session.
315  */
316 struct UserFunctionHook {
317         struct UserFunctionHook *next;
318         void (*h_function_pointer) (char *username, long usernum);
319         int eventtype;
320 };
321 extern DLEXP struct UserFunctionHook *UserHookTable;
322
323 #define EVT_PURGEUSER   100     /* Deleting a user */
324 #define EVT_OUTPUTMSG   101     /* Outputting a message */
325
326 /*
327  * MessageFunctionHook extensions are used for hooks which implement handlers
328  * for various types of message operations (save, read, etc.)
329  */
330 struct MessageFunctionHook {
331         struct MessageFunctionHook *next;
332         int (*h_function_pointer) (struct CtdlMessage *msg);
333         int eventtype;
334 };
335 extern DLEXP struct MessageFunctionHook *MessageHookTable;
336
337 #define EVT_BEFOREREAD  200
338 #define EVT_BEFORESAVE  201
339 #define EVT_AFTERSAVE   202
340
341
342
343 /*
344  * NetprocFunctionHook extensions are used for hooks which implement handlers
345  * for incoming network messages.
346  */
347 struct NetprocFunctionHook {
348         struct NetprocFunctionHook *next;
349         int (*h_function_pointer) (struct CtdlMessage *msg, char *target_room);
350 };
351 extern DLEXP struct NetprocFunctionHook *NetprocHookTable;
352
353
354 /*
355  * DeleteFunctionHook extensions are used for hooks which get called when a
356  * message is about to be deleted.
357  */
358 struct DeleteFunctionHook {
359         struct DeleteFunctionHook *next;
360         void (*h_function_pointer) (char *target_room, long msgnum);
361 };
362 extern DLEXP struct DeleteFunctionHook *DeleteHookTable;
363
364
365 /*
366  * ExpressMessageFunctionHook extensions are used for hooks which implement
367  * the sending of an express message through various channels.  Any function
368  * registered should return the number of recipients to whom the message was
369  * successfully transmitted.
370  */
371 struct XmsgFunctionHook {
372         struct XmsgFunctionHook *next;
373         int (*h_function_pointer) (char *, char *, char *);
374         int order;
375 };
376 extern DLEXP struct XmsgFunctionHook *XmsgHookTable;
377
378 /* Priority levels for paging functions (lower is better) */
379 enum {
380         XMSG_PRI_LOCAL,         /* Other users on -this- server */
381         XMSG_PRI_REMOTE,        /* Other users on a Citadel network (future) */
382         XMSG_PRI_FOREIGN,       /* Contacts on foreign instant message hosts */
383         MAX_XMSG_PRI
384 };
385
386
387
388 /*
389  * ServiceFunctionHook extensions are used for hooks which implement various
390  * non-Citadel services (on TCP protocols) directly in the Citadel server.
391  */
392 struct ServiceFunctionHook {
393         struct ServiceFunctionHook *next;
394         int tcp_port;
395         char *sockpath;
396         void (*h_greeting_function) (void) ;
397         void (*h_command_function) (void) ;
398         int msock;
399 };
400 extern DLEXP struct ServiceFunctionHook *ServiceHookTable;
401
402
403
404 /* Defines the relationship of a user to a particular room */
405 struct visit {
406         long v_roomnum;
407         long v_roomgen;
408         long v_usernum;
409         long v_lastseen;
410         unsigned int v_flags;
411         char v_seen[SIZ];
412 };
413
414 #define V_FORGET        1       /* User has zapped this room        */
415 #define V_LOCKOUT       2       /* User is locked out of this room  */
416 #define V_ACCESS        4       /* Access is granted to this room   */
417
418 #define UA_KNOWN                2
419 #define UA_GOTOALLOWED          4
420 #define UA_HASNEWMSGS           8
421 #define UA_ZAPPED               16
422
423
424 /* Supplementary data for a message on disk
425  * (These are kept separately from the message itself because they are
426  * fields whose values may change at some point after the message is saved.)
427  */
428 struct MetaData {
429         long meta_msgnum;       /* Message number in *local* message base */
430         int meta_refcount;      /* Number of rooms which point to this msg */
431         char meta_content_type[64];
432         char meta_mod;          /* Moderated to what level? */
433         /* more stuff will be added to this record in the future */
434 };
435
436
437
438 /* Built-in debuggable stuff for checking for memory leaks */
439 #ifdef DEBUG_MEMORY_LEAKS
440
441 #define mallok(howbig)          tracked_malloc(howbig, __FILE__, __LINE__)
442 #define phree(whichptr)                 tracked_free(whichptr)
443 #define reallok(whichptr,howbig)        tracked_realloc(whichptr,howbig)
444 #define strdoop(orig)           tracked_strdup(orig, __FILE__, __LINE__)
445
446 void *tracked_malloc(size_t, char *, int);
447 void tracked_free(void *);
448 void *tracked_realloc(void *, size_t);
449 void dump_tracked(void);
450 char *tracked_strdup(const char *, char *, int);
451
452 struct TheHeap {
453         struct TheHeap *next;
454         char h_file[32];
455         int h_line;
456         void *h_ptr;
457 };
458
459 extern DLEXP struct TheHeap *heap;
460
461 #else
462
463 #define mallok(howbig)                  malloc(howbig)
464 #define phree(whichptr)                 free(whichptr)
465 #define reallok(whichptr,howbig)        realloc(whichptr,howbig)
466 #define strdoop(orig)                   strdup(orig)
467
468
469 #endif
470
471
472 /* 
473  * Serialization routines use this struct to return a pointer and a length
474  */
475 struct ser_ret {
476         size_t len;
477         char *ser;
478 };
479
480
481 /* Preferred field order */
482 /*               **********                     Important fields */
483 /*                         ***************      Semi-important fields */
484 /*                                        *     Message text (MUST be last) */
485 #define FORDER  "IPTAFONHRDBCEGJKLQSUVWXYZM"
486
487 #endif /* SERVER_H */