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