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