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