* typedef wcsession, so we don't always need to say gcc again its a struct.
[citadel.git] / webcit / webcit.h
1
2 /* $Id$ */
3
4 #include "sysdep.h"
5
6
7 #include <sys/select.h>
8
9 #include <ctype.h>
10 #include <stdlib.h>
11 #ifdef HAVE_UNISTD_H
12 #include <unistd.h>
13 #endif
14 #include <stdio.h>
15 #ifdef HAVE_FCNTL_H
16 #include <fcntl.h>
17 #endif
18 #include <signal.h>
19 #include <sys/types.h>
20 #include <sys/wait.h>
21 #include <sys/socket.h>
22 #ifdef HAVE_SYS_TIME_H
23 #include <sys/time.h>
24 #endif
25 #include <sys/stat.h>
26 #ifdef HAVE_LIMITS_H
27 #include <limits.h>
28 #endif
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
31 #include <sys/un.h>
32 #include <netdb.h>
33 #include <sys/poll.h>
34 #include <string.h>
35 #include <pwd.h>
36 #include <errno.h>
37 #include <stdarg.h>
38 #include <pthread.h>
39 #include <signal.h>
40 #include <sys/utsname.h>
41
42 #include <libcitadel.h>
43
44 #ifndef INADDR_NONE
45 #define INADDR_NONE 0xffffffff
46 #endif
47
48 #ifdef HAVE_ICONV
49 #include <iconv.h>
50 #endif
51
52 #ifdef ENABLE_NLS
53 #ifdef HAVE_XLOCALE_H
54 #include <xlocale.h>
55 #endif
56 #include <libintl.h>
57 #include <locale.h>
58 #define _(string)       gettext(string)
59 #else
60 #define _(string)       (string)
61 #endif
62
63 #define IsEmptyStr(a) ((a)[0] == '\0')
64 /*
65  * Uncomment to dump an HTTP trace to stderr
66 #define HTTP_TRACING 1
67  */
68
69 #ifdef HTTP_TRACING
70 #undef HAVE_ZLIB_H
71 #undef HAVE_ZLIB
72 #endif
73
74 #ifdef HAVE_ZLIB_H
75 #include <zlib.h>
76 #endif
77
78 #include <libical/ical.h>
79
80 #undef PACKAGE
81 #undef VERSION
82 #undef PACKAGE_NAME
83 #undef PACKAGE_STRING
84 #undef PACKAGE_TARNAME
85 #undef PACKAGE_VERSION
86 #undef PACKAGE_BUGREPORT
87 #include "sysdep.h"
88
89 ////////#include "hash.h"
90
91 #ifdef HAVE_OPENSSL
92 /* Work around RedHat's b0rken OpenSSL includes */
93 #define OPENSSL_NO_KRB5
94 #include <openssl/ssl.h>
95 #include <openssl/err.h>
96 #include <openssl/rand.h>
97 #endif
98
99 #define CALENDAR_ROOM_NAME      "Calendar"
100 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
101
102 #define SIZ                     4096            /* generic buffer size */
103
104 #define TRACE fprintf(stderr, "Checkpoint: %s, %d\n", __FILE__, __LINE__)
105
106 #define SLEEPING                180             /* TCP connection timeout */
107 #define WEBCIT_TIMEOUT          900             /* WebCit session timeout */
108 #define PORT_NUM                2000            /* port number to listen on */
109 #define DEVELOPER_ID            0
110 #define CLIENT_ID               4
111 #define CLIENT_VERSION          739             /* This version of WebCit */
112 #define MINIMUM_CIT_VERSION     739             /* min required Citadel ver */
113 #define LIBCITADEL_MIN          739             /* min required libcitadel ver */
114 #define DEFAULT_HOST            "localhost"     /* Default Citadel server */
115 #define DEFAULT_PORT            "504"
116 #define TARGET                  "webcit01"      /* Target for inline URL's */
117 #define HOUSEKEEPING            15              /* Housekeeping frequency */
118 #define MIN_WORKER_THREADS      5
119 #define MAX_WORKER_THREADS      250
120 #define LISTEN_QUEUE_LENGTH     100             /* listen() backlog queue */
121
122 #define USERCONFIGROOM          "My Citadel Config"
123 #define DEFAULT_MAXMSGS         20
124
125
126 #ifdef LIBCITADEL_VERSION_NUMBER
127 #if LIBCITADEL_VERSION_NUMBER < LIBCITADEL_MIN
128 #error libcitadel is too old.  Please upgrade it before continuing.
129 #endif
130 #endif
131
132
133 /*
134  * Room flags (from Citadel)
135  *
136  * bucket one...
137  */
138 #define QR_PERMANENT    1               /* Room does not purge          */
139 #define QR_INUSE        2               /* Set if in use, clear if avail        */
140 #define QR_PRIVATE      4               /* Set for any type of private room     */
141 #define QR_PASSWORDED   8               /* Set if there's a password too        */
142 #define QR_GUESSNAME    16              /* Set if it's a guessname room */
143 #define QR_DIRECTORY    32              /* Directory room                       */
144 #define QR_UPLOAD       64              /* Allowed to upload                    */
145 #define QR_DOWNLOAD     128             /* Allowed to download          */
146 #define QR_VISDIR       256             /* Visible directory                    */
147 #define QR_ANONONLY     512             /* Anonymous-Only room          */
148 #define QR_ANONOPT      1024            /* Anonymous-Option room                */
149 #define QR_NETWORK      2048            /* Shared network room          */
150 #define QR_PREFONLY     4096            /* Preferred status needed to enter     */
151 #define QR_READONLY     8192            /* Aide status required to post */
152 #define QR_MAILBOX      16384           /* Set if this is a private mailbox     */
153
154 /*
155  * bucket two...
156  */
157 #define QR2_SYSTEM      1               /* System room; hide by default */
158 #define QR2_SELFLIST    2               /* Self-service mailing list mgmt       */
159 #define QR2_COLLABDEL   4               /* Anyone who can post can also delete*/
160 #define QR2_SUBJECTREQ  8               /* Subject strongly recommended */
161 #define QR2_SMTP_PUBLIC 16              /* smtp public postable room */
162 #define QR2_MODERATED   32              /* Listservice aide has to permit posts  */
163
164 /*
165  * user/room access
166  */
167 #define UA_KNOWN        2
168 #define UA_GOTOALLOWED  4
169 #define UA_HASNEWMSGS   8
170 #define UA_ZAPPED       16
171
172
173 /*
174  * User flags (from Citadel)
175  */
176 #define US_NEEDVALID    1               /* User needs to be validated           */
177 #define US_PERM         4               /* Permanent user                       */
178 #define US_LASTOLD      16              /* Print last old message with new      */
179 #define US_EXPERT       32              /* Experienced user                     */
180 #define US_UNLISTED     64              /* Unlisted userlog entry               */
181 #define US_NOPROMPT     128             /* Don't prompt after each message      */
182 #define US_PROMPTCTL    256             /* <N>ext & <S>top work at prompt       */
183 #define US_DISAPPEAR    512             /* Use "disappearing msg prompts"       */
184 #define US_REGIS        1024            /* Registered user                      */
185 #define US_PAGINATOR    2048            /* Pause after each screen of text      */
186 #define US_INTERNET     4096            /* Internet mail privileges             */
187 #define US_FLOORS       8192            /* User wants to see floors             */
188 #define US_COLOR        16384           /* User wants ANSI color support        */
189 #define US_USER_SET     (US_LASTOLD | US_EXPERT | US_UNLISTED | \
190                         US_NOPROMPT | US_DISAPPEAR | US_PAGINATOR | \
191                         US_FLOORS | US_COLOR | US_PROMPTCTL )
192
193 /*
194  * NLI is the string that shows up in a who's online listing for sessions
195  * that are active, but for which no user has yet authenticated.
196  */
197 #define NLI     "(not logged in)"
198
199
200 /*
201  * \brief       Linked list of session variables encoded in an x-www-urlencoded content type
202  */
203 typedef struct urlcontent urlcontent;
204 struct urlcontent {
205         char url_key[32];          /* the variable name */
206         StrBuf *url_data;            /* its value */
207 };
208
209 /*
210  * \brief information about us ???
211  */ 
212 struct serv_info {
213         int serv_pid;                   /* Process ID of the Citadel server */
214         char serv_nodename[32];         /* Node name of the Citadel server */
215         char serv_humannode[64];        /* human readable node name of the Citadel server */
216         char serv_fqdn[64];             /* fully quallified Domain Name (such as uncensored.citadel.org) */
217         char serv_software[64];         /* What version does our connected citadel server use */
218         int serv_rev_level;             /* Whats the citadel server revision */
219         char serv_bbs_city[64];         /* Geographic location of the Citadel server */
220         char serv_sysadm[64];           /* Name of system administrator */
221         char serv_moreprompt[256];      /* Whats the commandline textprompt */
222         int serv_ok_floors;             /* nonzero == server supports floors */
223         int serv_supports_ldap;         /* is the server linked against an ldap tree for adresses? */
224         int serv_newuser_disabled;      /* Has the server disabled self-service new user creation? */
225         char serv_default_cal_zone[128];/* Default timezone for unspecified calendar items */
226         int serv_supports_sieve;        /* Does the server support Sieve mail filtering? */
227         int serv_fulltext_enabled;      /* Does the server have the full text index enabled? */
228         char serv_svn_revision[256];    /* SVN revision of the server */
229         int serv_supports_openid;       /* Does the server support authentication via OpenID? */
230 };
231
232
233
234 /*
235  * \brief This struct holds a list of rooms for \\\<G\\\>oto operations.
236  */
237 struct march {
238         struct march *next;       /* pointer to next in linked list */
239         char march_name[128];     /* name of room */
240         int march_floor;          /* floor number of room */
241         int march_order;          /* sequence in which we are to visit this room */
242 };
243
244 /* *
245  * \brief       This struct holds a list of rooms for client display.
246  *              It is a binary tree.
247  */
248 struct roomlisting {
249         struct roomlisting *lnext;      /* pointer to 'left' tree node */
250         struct roomlisting *rnext;      /* pointer to 'right' tree node */
251         char rlname[128];               /* name of room */
252         unsigned rlflags;               /* room flags */
253         int rlfloor;                    /* the floor it resides on */
254         int rlorder;                    /* room listing order */
255 };
256
257
258 #define TYPE_STR   1
259 #define TYPE_LONG  2
260 #define TYPE_PREFSTR 3
261 #define TYPE_PREFINT 4
262 #define TYPE_GETTEXT 5
263 #define TYPE_BSTR 6
264 #define MAXPARAM  20
265
266
267 typedef struct _TemplateParam {
268         const char *Start;
269         int Type;
270         long len;
271         long lvalue;
272 } TemplateParam;
273
274 typedef struct _TemplateToken {
275         const StrBuf *FileName; /* Reference to print error messages; not to be freed */
276         StrBuf *FlatToken;
277         long Line;
278         const char *pTokenStart;
279         size_t TokenStart;
280         size_t TokenEnd;
281         const char *pTokenEnd;
282         int Flags;
283         void *PreEval;
284
285         const char *pName;
286         size_t NameEnd;
287
288         int HaveParameters;
289         int nParameters;
290         TemplateParam *Params[MAXPARAM];
291 } WCTemplateToken;
292
293 typedef void (*WCHandlerFunc)();
294
295
296 /*
297  * \brief Dynamic content for variable substitution in templates
298  */
299 typedef struct _wcsubst {
300         int wcs_type;                       /* which type of Substitution are we */
301         char wcs_key[32];                   /* copy of our hashkey for debugging */
302         StrBuf *wcs_value;                  /* if we're a string, keep it here */
303         long lvalue;                        /* type long? keep data here */
304         int ContextRequired;                /* do we require a context type? */
305         WCHandlerFunc wcs_function; /* funcion hook ???*/
306 } wcsubst;
307
308 #define CTX_NONE 0
309 #define CTX_SITECFG 1
310 #define CTX_SESSION 2
311 #define CTX_INETCFG 3
312 #define CTX_VNOTE 4
313 #define CTX_WHO 5
314 #define CTX_PREF 6
315 #define CTX_NODECONF 7
316 #define CTX_USERLIST 8
317 #define CTX_MAILSUM 9
318 #define CTX_MIME_ATACH 10
319 #define CTX_STRBUF 12
320 #define CTX_LONGVECTOR 13
321
322
323 void RegisterNS(const char *NSName, long len, 
324                 int nMinArgs, 
325                 int nMaxArgs, 
326                 WCHandlerFunc HandlerFunc,
327                 int ContextRequired);
328 #define RegisterNamespace(a, b, c, d, e) RegisterNS(a, sizeof(a)-1, b, c, d, e)
329
330 typedef int (*WCConditionalFunc)(WCTemplateToken *Token, void *Context, int ContextType);
331 typedef struct _ConditionalStruct {
332         const char *PlainName;
333         int nParams;
334         int ContextRequired;
335         WCConditionalFunc CondF;
336 } ConditionalStruct;
337 void RegisterConditional(const char *Name, long len, 
338                          int nParams,
339                          WCConditionalFunc CondF, 
340                          int ContextRequired);
341
342
343
344 typedef void (*SubTemplFunc)(StrBuf *TemplBuffer, void *Context, WCTemplateToken *Token);
345 typedef HashList *(*RetrieveHashlistFunc)(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType);
346 typedef void (*HashDestructorFunc) (HashList **KillMe);
347 void RegisterITERATOR(const char *Name, long len, /* Our identifier */
348                       int AdditionalParams,       /* doe we use more parameters? */
349                       HashList *StaticList,       /* pointer to webcit lifetime hashlists */
350                       RetrieveHashlistFunc GetHash, /* else retrieve the hashlist by calling this function */
351                       SubTemplFunc DoSubTempl,       /* call this function on each iteration for svput & friends */
352                       HashDestructorFunc Destructor, /* use this function to shut down the hash; NULL if its a reference */
353                       int ContextType,               /* which context do we provide to the subtemplate? */
354                       int XPectContextType);         /* which context do we expct to be called in? */
355 #define RegisterIterator(a, b, c, d, e, f, g, h) RegisterITERATOR(a, sizeof(a)-1, b, c, d, e, f, g, h)
356
357 void GetTemplateTokenString(WCTemplateToken *Tokens,
358                             int N, 
359                             const char **Value, 
360                             long *len);
361
362
363 void SVPut(char *keyname, size_t keylen, int keytype, char *Data);
364 #define svput(a, b, c) SVPut(a, sizeof(a) - 1, b, c)
365 void SVPutLong(char *keyname, size_t keylen, long Data);
366 #define svputlong(a, b) SVPutLong(a, sizeof(a) - 1, b)
367 void svprintf(char *keyname, size_t keylen, int keytype, const char *format,...) __attribute__((__format__(__printf__,4,5)));
368 void SVPRINTF(char *keyname, int keytype, const char *format,...) __attribute__((__format__(__printf__,3,4)));
369 void SVCALLBACK(char *keyname, WCHandlerFunc fcn_ptr);
370 void SVCallback(char *keyname, size_t keylen,  WCHandlerFunc fcn_ptr);
371 #define svcallback(a, b) SVCallback(a, sizeof(a) - 1, b)
372
373 void SVPUTBuf(const char *keyname, int keylen, const StrBuf *Buf, int ref);
374 #define SVPutBuf(a, b, c); SVPUTBuf(a, sizeof(a) - 1, b, c)
375
376 void DoTemplate(const char *templatename, long len, StrBuf *Target, void *Context, int ContextType);
377 #define do_template(a, b) DoTemplate(a, sizeof(a) -1, NULL, b, 0);
378 void url_do_template(void);
379
380 int CompareSubstToToken(TemplateParam *ParamToCompare, TemplateParam *ParamToLookup);
381 int CompareSubstToStrBuf(StrBuf *Compare, TemplateParam *ParamToLookup);
382
383 void StrBufAppendTemplate(StrBuf *Target, 
384                           int nArgs, 
385                           WCTemplateToken *Tokens,
386                           void *Context, int ContextType,
387                           const StrBuf *Source, int FormatTypeIndex);
388 CompareFunc RetrieveSort(long ContextType, const char *OtherPrefix, 
389                          const char *Default, long ldefault, long DefaultDirection);
390 void RegisterSortFunc(const char *name, long len, 
391                       const char *prepend, long preplen,
392                       CompareFunc Forward, 
393                       CompareFunc Reverse, 
394                       long ContextType);
395
396
397 /*
398  * \brief Values for wcs_type
399  */
400 enum {
401         WCS_STRING,       /* its a string */
402         WCS_FUNCTION,     /* its a function callback */
403         WCS_SERVCMD,      /* its a command to send to the citadel server */
404         WCS_STRBUF,       /* its a strbuf we own */
405         WCS_STRBUF_REF,   /* its a strbuf we mustn't free */
406         WCS_LONG          /* its an integer */
407 };
408
409
410
411 typedef struct wc_mime_attachment wc_mime_attachment;
412 typedef void (*RenderMimeFunc)(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset);
413 struct wc_mime_attachment {
414         int level;
415         StrBuf *Name;
416         StrBuf *FileName;
417         StrBuf *PartNum;
418         StrBuf *Disposition;
419         StrBuf *ContentType;
420         StrBuf *Charset;
421         StrBuf *Data;
422         size_t length;                     /* length of the mimeatachment */
423         long size_known;
424         long lvalue;               /* if we put a long... */
425         long msgnum;            /**< the message number on the citadel server derived from message_summary */
426         RenderMimeFunc Renderer;
427 };
428 void DestroyMime(void *vMime);
429
430
431 /*
432  * \brief message summary structure. ???
433  */
434 typedef struct _message_summary {
435         time_t date;        /**< its creation date */
436         long msgnum;            /**< the message number on the citadel server */
437         int nhdr;
438         int format_type;
439         StrBuf *from;           /**< the author */
440         StrBuf *to;             /**< the recipient */
441         StrBuf *subj;           /**< the title / subject */
442         StrBuf *reply_inreplyto;
443         StrBuf *reply_references;
444         StrBuf *reply_to;
445         StrBuf *cccc;
446         StrBuf *hnod;
447         StrBuf *AllRcpt;
448         StrBuf *Room;
449         StrBuf *Rfca;
450         StrBuf *OtherNode;
451         const StrBuf *PartNum;
452
453         HashList *Attachments;  /**< list of Accachments */
454         HashList *Submessages;
455         HashList *AttachLinks;
456
457         HashList *AllAttach;
458
459         int is_new;         /**< is it yet read? */
460         int hasattachments;     /* does it have atachments? */
461
462
463         /** The mime part of the message */
464         wc_mime_attachment *MsgBody;
465 } message_summary;
466 void DestroyMessageSummary(void *vMsg);
467 inline message_summary* GetMessagePtrAt(int n, HashList *Summ);
468
469 typedef void (*ExamineMsgHeaderFunc)(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset);
470
471 void evaluate_mime_part(message_summary *Msg, wc_mime_attachment *Mime);
472
473
474
475 /**
476  * \brief  Data structure for roomlist-to-folderlist conversion 
477  */
478 struct folder {
479         int floor;      /* which floor is it on */
480         char room[SIZ]; /* which roomname ??? */
481         char name[SIZ]; /* which is its own name??? */
482         int hasnewmsgs; /* are there unread messages inside */
483         int is_mailbox; /* is it a mailbox?  */
484         int selectable; /* can we select it ??? */
485         int view;       /* whats its default view? inbox/calendar.... */
486         int num_rooms;  /* If this is a floor, how many rooms does it have */
487 };
488
489 typedef struct _disp_cal {                                      
490         icalcomponent *cal;             /* cal items for display */
491         long cal_msgnum;                /* cal msgids for display */
492         char *from;                     /* owner of this component */
493         int unread;                     /* already seen by the user? */
494
495         time_t event_start;
496         time_t event_end;
497
498         int multi_day_event;
499         int is_repeat;
500 } disp_cal;                                             
501
502
503
504 /*
505  * Address book entry (keep it short and sweet, it's just a quickie lookup
506  * which we can use to get to the real meat and bones later)
507  */
508 typedef struct _addrbookent {
509         char ab_name[64]; /**< name string */
510         long ab_msgnum;   /**< message number of address book entry */
511 } addrbookent;
512
513
514 typedef struct _headereval {
515         ExamineMsgHeaderFunc evaluator;
516         int Type;
517 } headereval;
518
519
520 struct attach_link {
521         char partnum[32];
522         char html[1024];
523 };
524
525
526 enum {
527         eUp,
528         eDown,
529         eNone
530 };
531
532 /*
533  * One of these is kept for each active Citadel session.
534  * HTTP transactions are bound to one at a time.
535  */
536 typedef struct wcsession wcsession;
537 struct wcsession {
538         wcsession *next;                        /**< Linked list */
539         int wc_session;                         /**< WebCit session ID */
540         char wc_username[128];                  /**< login name of current user */
541         char wc_fullname[128];                  /**< Screen name of current user */
542         char wc_password[128];                  /**< Password of current user */
543         char wc_roomname[256];                  /**< Room we are currently in */
544         int connected;                          /**< nonzero == we are connected to Citadel */
545         int logged_in;                          /**< nonzero == we are logged in  */
546         int axlevel;                            /**< this user's access level */
547         int is_aide;                            /**< nonzero == this user is an Aide */
548         int is_room_aide;                       /**< nonzero == this user is a Room Aide in this room */
549         int http_sock;                          /**< HTTP server socket */
550         int serv_sock;                          /**< Client socket to Citadel server */
551         int chat_sock;                          /**< Client socket to Citadel server - for chat */
552         unsigned room_flags;                    /**< flags associated with the current room */
553         unsigned room_flags2;                   /**< flags associated with the current room */
554         int wc_view;                            /**< view for the current room */
555         int wc_default_view;                    /**< default view for the current room */
556         int wc_is_trash;                        /**< nonzero == current room is a Trash folder */
557         int wc_floor;                           /**< floor number of current room */
558         char ugname[128];                       /**< where does 'ungoto' take us */
559         long uglsn;                             /**< last seen message number for ungoto */
560         int upload_length;                      /**< content length of http-uploaded data */
561         char *upload;                           /**< pointer to http-uploaded data */
562         char upload_filename[PATH_MAX];         /**< filename of http-uploaded data */
563         char upload_content_type[256];          /**< content type of http-uploaded data */
564         int new_mail;                           /**< user has new mail waiting */
565         int remember_new_mail;                  /**< last count of new mail messages */
566         int need_regi;                          /**< This user needs to register. */
567         int need_vali;                          /**< New users require validation. */
568         char cs_inet_email[256];                /**< User's preferred Internet addr. */
569         pthread_mutex_t SessionMutex;           /**< mutex for exclusive access */
570         time_t lastreq;                         /**< Timestamp of most recent HTTP */
571         int killthis;                           /**< Nonzero == purge this session */
572         struct march *march;                    /**< march mode room list */
573         char reply_to[512];                     /**< reply-to address */
574         HashList *summ;                         /**< list of messages for mailbox summary view */
575         int is_mobile;                  /**< Client is a handheld browser */
576         HashList *urlstrings;                   /**< variables passed to webcit in a URL */
577         HashList *vars;                         /**< HTTP variable substitutions for this page */
578         char this_page[512];                    /**< URL of current page */
579         char http_host[512];                    /**< HTTP Host: header */
580         HashList *hash_prefs;                   /**< WebCit preferences for this user */
581         HashList *disp_cal_items;               /**< sorted list of calendar items; startdate is the sort criteria. */
582         HashList *attachments;                  /**< list of attachments for 'enter message' */
583         char last_chat_user[256];               /**< ??? todo */
584         char ImportantMessage[SIZ];             /**< ??? todo */
585         int ctdl_pid;                           /**< Session ID on the Citadel server */
586         char httpauth_user[256];                /**< only for GroupDAV sessions */
587         char httpauth_pass[256];                /**< only for GroupDAV sessions */
588         int gzip_ok;                            /**< Nonzero if Accept-encoding: gzip */
589         int is_mailbox;                         /**< the current room is a private mailbox */
590         struct folder *cache_fold;              /**< cache the iconbar room list */
591         int cache_max_folders;                  /**< ??? todo */
592         int cache_num_floors;                   /**< ??? todo */
593         time_t cache_timestamp;                 /**< ??? todo */
594         HashList *IconBarSetttings;             /**< which icons should be shown / not shown? */
595         long current_iconbar;                   /**< What is currently in the iconbar? */
596         const StrBuf *floordiv_expanded;        /**< which floordiv currently expanded */
597         int selected_language;                  /**< Language selected by user */
598         time_t last_pager_check;                /**< last time we polled for instant msgs */
599         int nonce;                              /**< session nonce (to prevent session riding) */
600         int time_format_cache;                  /**< which timeformat does our user like? */
601         StrBuf *UrlFragment1;                   /**< first urlfragment, if NEED_URL is specified by the handler*/
602         StrBuf *UrlFragment2;                   /**< second urlfragment, if NEED_URL is specified by the handler*/
603         StrBuf *UrlFragment3;                   /**< third urlfragment, if NEED_URL is specified by the handler*/
604         StrBuf *WBuf;                           /**< Our output buffer */
605         StrBuf *HBuf;                           /**< Our HeaderBuffer */
606         StrBuf *CLineBuf;                       /**< linebuffering client stuff */
607         StrBuf *DefaultCharset;                 /**< Charset the user preferes */
608         HashList *ServCfg;                      /**< cache our server config for editing */
609         HashList *InetCfg;                      /**< Our inet server config for editing */
610
611         StrBuf *trailing_javascript;            /**< extra javascript to be appended to page */
612 };
613
614 /* values for WC->current_iconbar */
615 enum {
616         current_iconbar_menu,     /* view the icon menue */
617         current_iconbar_roomlist  /* view the roomtree */
618 };
619 enum {
620         S_SELECT,
621         S_SHUTDOWN,
622         MAX_SEMAPHORES
623 };
624
625
626 /*
627  * calview contains data passed back and forth between the message fetching loop
628  * and the calendar view renderer.
629  */
630 enum {
631         calview_month,
632         calview_day,
633         calview_week,
634         calview_brief
635 };
636
637 struct calview {
638         int view;
639         int year;
640         int month;
641         int day;
642         time_t lower_bound;
643         time_t upper_bound;
644 };
645
646 #ifndef num_parms
647 #define num_parms(source)               num_tokens(source, '|') 
648 #endif
649
650 /* Per-session data */
651 #define WC ((struct wcsession *)pthread_getspecific(MyConKey))
652 extern pthread_key_t MyConKey;
653
654 /* Per-thread SSL context */
655 #ifdef HAVE_OPENSSL
656 #define THREADSSL ((SSL *)pthread_getspecific(ThreadSSL))
657 extern pthread_key_t ThreadSSL;
658 extern char ctdl_key_dir[PATH_MAX];
659 extern char file_crpt_file_key[PATH_MAX];
660 extern char file_crpt_file_csr[PATH_MAX];
661 extern char file_crpt_file_cer[PATH_MAX];
662 #endif
663
664 struct serv_info serv_info;
665 extern char floorlist[128][SIZ];
666 extern char *axdefs[];
667 extern char *ctdlhost, *ctdlport;
668 extern int http_port;
669 extern char *server_cookie;
670 extern int is_https;
671 extern int setup_wizard;
672 extern char wizard_filename[];
673 extern time_t if_modified_since;
674 extern int follow_xff;
675 extern HashList *HandlerHash;
676 extern HashList *PreferenceHooks;
677 extern HashList *WirelessTemplateCache;
678 extern HashList *WirelessLocalTemplateCache;
679 extern HashList *TemplateCache;
680 extern HashList *LocalTemplateCache;
681 extern HashList *GlobalNS;
682 extern HashList *Iterators;
683 extern HashList *ZoneHash;
684 extern HashList *Conditionals;
685 extern HashList *MsgHeaderHandler;
686 extern HashList *MimeRenderHandler;
687 extern HashList *SortHash;
688
689 void InitialiseSemaphores(void);
690 void begin_critical_section(int which_one);
691 void end_critical_section(int which_one);
692
693
694 void stuff_to_cookie(char *cookie, size_t clen, int session,
695                         char *user, char *pass, char *room);
696 void cookie_to_stuff(StrBuf *cookie, int *session,
697                 char *user, size_t user_len,
698                 char *pass, size_t pass_len,
699                 char *room, size_t room_len);
700 void locate_host(char *, int);
701 void become_logged_in(char *, char *, char *);
702 void openid_manual_create(void);
703 void display_login();
704 void display_openids(void);
705 void do_welcome(void);
706 void do_logout(void);
707 void display_main_menu(void);
708 void display_aide_menu(void);
709 void display_advanced_menu(void);
710 void slrp_highest(void);
711 void get_serv_info(char *, char *);
712 int uds_connectsock(char *);
713 int tcp_connectsock(char *, char *);
714 int serv_getln(char *strbuf, int bufsize);
715 int StrBuf_ServGetln(StrBuf *buf);
716 int GetServerStatus(StrBuf *Line, long* FullState);
717 void serv_puts(const char *string);
718 void who(void);
719 void who_inner_div(void);
720 void ajax_mini_calendar(void);
721 void fmout(char *align);
722 void _fmout(StrBuf *Targt, char *align);
723 void FmOut(StrBuf *Target, char *align, StrBuf *Source);
724 void pullquote_fmout(void);
725 void wDumpContent(int);
726
727 int Flathash(const char *str, long len);
728
729
730
731 /* URL / Mime Post parsing -> paramhandling.c */
732 void upload_handler(char *name, char *filename, char *partnum, char *disp,
733                     void *content, char *cbtype, char *cbcharset,
734                     size_t length, char *encoding, char *cbid, void *userdata);
735
736 void ParseURLParams(StrBuf *url);
737
738
739 /* These may return NULL if not foud */
740 #define sbstr(a) SBstr(a, sizeof(a) - 1)
741 const StrBuf *SBSTR(const char *key);
742 const StrBuf *SBstr(const char *key, size_t keylen);
743
744 #define xbstr(a, b) (char*) XBstr(a, sizeof(a) - 1, b)
745 const char *XBstr(const char *key, size_t keylen, size_t *len);
746 const char *XBSTR(const char *key, size_t *len);
747
748 #define lbstr(a) LBstr(a, sizeof(a) - 1)
749 long LBstr(const char *key, size_t keylen);
750 long LBSTR(const char *key);
751
752 #define ibstr(a) IBstr(a, sizeof(a) - 1)
753 int IBstr(const char *key, size_t keylen);
754 int IBSTR(const char *key);
755
756 #define havebstr(a) HaveBstr(a, sizeof(a) - 1)
757 int HaveBstr(const char *key, size_t keylen);
758 int HAVEBSTR(const char *key);
759
760 #define yesbstr(a) YesBstr(a, sizeof(a) - 1)
761 int YesBstr(const char *key, size_t keylen);
762 int YESBSTR(const char *key);
763
764 /* TODO: get rid of the non-const-typecast */
765 #define bstr(a) (char*) Bstr(a, sizeof(a) - 1)
766 const char *BSTR(const char *key);
767 const char *Bstr(const char *key, size_t keylen);
768
769
770
771 void UrlescPutStrBuf(const StrBuf *strbuf);
772 void StrEscPuts(const StrBuf *strbuf);
773 void StrEscputs1(const StrBuf *strbuf, int nbsp, int nolinebreaks);
774
775 void urlescputs(const char *);
776 void hurlescputs(const char *);
777 void jsesc(char *, size_t, char *);
778 void jsescputs(char *);
779 void output_headers(    int do_httpheaders,
780                         int do_htmlhead,
781                         int do_room_banner,
782                         int unset_cookies,
783                         int suppress_check,
784                         int cache);
785 void wprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
786 void hprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
787 void output_static(char *what);
788
789 void print_menu_box(char* Title, char *Class, int nLines, ...);
790 long stresc(char *target, long tSize, char *strbuf, int nbsp, int nolinebreaks);
791 void escputs(char *strbuf);
792 void url(char *buf, size_t bufsize);
793 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf);
794 void escputs1(char *strbuf, int nbsp, int nolinebreaks);
795 void msgesc(char *target, size_t tlen, char *strbuf);
796 void msgescputs(char *strbuf);
797 void msgescputs1(char *strbuf);
798 void stripout(char *str, char leftboundary, char rightboundary);
799 void dump_vars(void);
800 void embed_main_menu(void);
801 void serv_read(char *buf, int bytes);
802
803 enum {
804         do_search,
805         headers,
806         readfwd,
807         readnew,
808         readold
809 };
810
811 typedef void (*readloop_servcmd)(char *buf, long bufsize);
812
813 typedef struct _readloopstruct {
814         ConstStr name;
815         readloop_servcmd cmd;
816 } readloop_struct;
817 void readloop(long oper);
818 int  read_message(StrBuf *Target, const char *tmpl, long tmpllen, long msgnum, int printable_view, const StrBuf *section);
819 void do_addrbook_view(addrbookent *addrbook, int num_ab);
820 void fetch_ab_name(message_summary *Msg, char *namebuf);
821 void display_vcard(StrBuf *Target, const char *vcard_source, char alpha, int full, char *storename, long msgnum);
822 void text_to_server(char *ptr);
823 void text_to_server_qp(char *ptr);
824 void confirm_delete_msg(void);
825 void display_success(char *);
826 void authorization_required(const char *message);
827 void server_to_text(void);
828 void save_edit(char *description, char *enter_cmd, int regoto);
829 void display_edit(char *description, char *check_cmd,
830                   char *read_cmd, char *save_cmd, int with_room_banner);
831 int gotoroom(char *gname);
832 void confirm_delete_room(void);
833 void validate(void);
834 void display_graphics_upload(char *, char *, char *);
835 void do_graphics_upload(char *upl_cmd);
836 void serv_read(char *buf, int bytes);
837 void serv_gets(char *strbuf);
838 void serv_write(const char *buf, int nbytes);
839 void serv_puts(const char *string);
840 void serv_putbuf(const StrBuf *string);
841 void serv_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
842 void load_floorlist(void);
843 void shutdown_sessions(void);
844 void do_housekeeping(void);
845 void smart_goto(char *);
846 void worker_entry(void);
847 void session_loop(HashList *HTTPHeaders, StrBuf *ReqLine, StrBuf *ReqType, StrBuf *ReadBuf);
848 size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm);
849 void fmt_time(char *buf, time_t thetime);
850 void httpdate(char *buf, time_t thetime);
851 time_t httpdate_to_timestamp(StrBuf *buf);
852 void end_webcit_session(void);
853 void page_popup(void);
854 void http_redirect(const char *);
855 void clear_substs(struct wcsession *wc);
856 void clear_local_substs(void);
857
858
859
860 int lingering_close(int fd);
861 char *memreadline(char *start, char *buf, int maxlen);
862 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
863 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
864 void remove_token(char *source, int parmnum, char separator);
865 char *load_mimepart(long msgnum, char *partnum);
866 void MimeLoadData(wc_mime_attachment *Mime);
867 int pattern2(char *search, char *patn);
868 void do_edit_vcard(long, char *, char *, char *);
869 void striplt(char *);
870 void stripltlen(char *, int *);
871 void select_user_to_edit(char *message, char *preselect);
872 void delete_user(char *);
873 void do_change_view(int);
874 void folders(void);
875
876
877 void load_preferences(void);
878 void save_preferences(void);
879 #define get_preference(a, b) get_PREFERENCE(a, sizeof(a) - 1, b)
880 #define get_pref(a, b)       get_PREFERENCE(ChrPtr(a), StrLength(a), b)
881 int get_PREFERENCE(const char *key, size_t keylen, StrBuf **value);
882 #define set_preference(a, b, c) set_PREFERENCE(a, sizeof(a) - 1, b, c)
883 #define set_pref(a, b, c)       set_PREFERENCE(ChrPtr(a), StrLength(a), b, c)
884 void set_PREFERENCE(const char *key, size_t keylen, StrBuf *value, int save_to_server);
885
886 #define get_pref_long(a, b, c) get_PREF_LONG(a, sizeof(a) - 1, b, c)
887 int get_PREF_LONG(const char *key, size_t keylen, long *value, long Default);
888 #define set_pref_long(a, b, c) set_PREF_LONG(a, sizeof(a) - 1, b, c)
889 void set_PREF_LONG(const char *key, size_t keylen, long value, int save_to_server);
890
891 #define get_pref_yesno(a, b, c) get_PREF_YESNO(a, sizeof(a) - 1, b, c)
892 int get_PREF_YESNO(const char *key, size_t keylen, int *value, int Default);
893 #define set_pref_yesno(a, b, c) set_PREF_YESNO(a, sizeof(a) - 1, b, c)
894 void set_PREF_YESNO(const char *key, size_t keylen, int value, int save_to_server);
895
896 #define get_room_pref(a) get_ROOM_PREFS(a, sizeof(a) - 1)
897 StrBuf *get_ROOM_PREFS(const char *key, size_t keylen);
898
899 #define set_room_pref(a, b, c) set_ROOM_PREFS(a, sizeof(a) - 1, b, c)
900 void set_ROOM_PREFS(const char *key, size_t keylen, StrBuf *value, int save_to_server);
901
902 int is_msg_in_mset(char *mset, long msgnum);
903 void display_addressbook(long msgnum, char alpha);
904 void offer_start_page(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType);
905 void convenience_page(char *titlebarcolor, char *titlebarmsg, char *messagetext);
906 void output_html(const char *, int, int, StrBuf *, StrBuf *);
907 void do_listsub(void);
908 ssize_t write(int fd, const void *buf, size_t count);
909 void cal_process_attachment(wc_mime_attachment *Mime);
910 void load_calendar_item(message_summary *Msg, int unread, struct calview *c);
911 void display_calendar(message_summary *Msg, int unread);
912 void display_task(message_summary *Msg, int unread);
913 void display_note(message_summary *Msg, int unread);
914 void updatenote(void);
915 void parse_calendar_view_request(struct calview *c);
916 void render_calendar_view(struct calview *c);
917 void do_tasks_view(void);
918 void calendar_summary_view(void);
919 int load_msg_ptrs(char *servcmd, int with_headers);
920 void free_attachments(wcsession *sess);
921 void free_march_list(wcsession *wcf);
922 void display_rules_editor_inner_div(void);
923 void generate_uuid(char *);
924 void CtdlMakeTempFileName(char *, int);
925 void address_book_popup(void);
926 void begin_ajax_response(void);
927 void end_ajax_response(void);
928 void initialize_viewdefs(void);
929 void initialize_axdefs(void);
930 void burn_folder_cache(time_t age);
931 void list_all_rooms_by_floor(const char *viewpref);
932 void display_pictureview(void);
933
934 void display_edit_task(void);
935 void display_edit_event(void);
936 icaltimezone *get_default_icaltimezone(void);
937 void display_icaltimetype_as_webform(struct icaltimetype *, char *, int);
938 void icaltime_from_webform(struct icaltimetype *result, char *prefix);
939 void icaltime_from_webform_dateonly(struct icaltimetype *result, char *prefix);
940 void display_edit_individual_event(icalcomponent *supplied_vtodo, long msgnum, char *from,
941         int unread, struct calview *calv);
942 void save_individual_event(icalcomponent *supplied_vtodo, long msgnum, char *from,
943         int unread, struct calview *calv);
944 void ical_dezonify(icalcomponent *cal);
945 void partstat_as_string(char *buf, icalproperty *attendee);
946 icalcomponent *ical_encapsulate_subcomponent(icalcomponent *subcomp);
947 void check_attendee_availability(icalcomponent *supplied_vevent);
948 void do_freebusy(const char *req);
949 int ical_ctdl_is_overlap(
950                         struct icaltimetype t1start,
951                         struct icaltimetype t1end,
952                         struct icaltimetype t2start,
953                         struct icaltimetype t2end
954 );
955
956 #ifdef ENABLE_NLS
957 void initialize_locales(void);
958 void ShutdownLocale(void);
959 #endif
960 void TmplGettext(StrBuf *Target, int nTokens, WCTemplateToken *Token);
961
962 extern char *months[];
963 extern char *days[];
964 int read_server_binary(StrBuf *Ret, size_t total_len);
965 int StrBuf_ServGetBLOB(StrBuf *buf, long BlobSize);
966 int read_server_text(StrBuf *Buf, long *nLines);;
967 int goto_config_room(void);
968 long locate_user_vcard(char *username, long usernum);
969 void sleeeeeeeeeep(int);
970 void http_transmit_thing(const char *content_type, int is_static);
971 long unescape_input(char *buf);
972 void do_selected_iconbar(void);
973 void spawn_another_worker_thread(void);
974 void display_rss(char *roomname, StrBuf *request_method);
975 void offer_languages(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType);
976 void set_selected_language(const char *);
977 void go_selected_language(void);
978 void stop_selected_language(void);
979 void preset_locale(void);
980 void httplang_to_locale(StrBuf *LocaleString);
981 void StrEndTab(StrBuf *Target, int tabnum, int num_tabs);
982 void StrBeginTab(StrBuf *Target, int tabnum, int num_tabs);
983 void StrTabbedDialog(StrBuf *Target, int num_tabs, StrBuf *tabnames[]);
984 void tabbed_dialog(int num_tabs, char *tabnames[]);
985 void begin_tab(int tabnum, int num_tabs);
986 void end_tab(int tabnum, int num_tabs);
987 void str_wiki_index(char *s);
988 int get_time_format_cached (void);
989 int xtoi(const char *in, size_t len);
990 const char *get_selected_language(void);
991 void webcit_fmt_date(char *buf, time_t thetime, int brief);
992 int fetch_http(char *url, char *target_buf, int maxbytes);
993
994 int is_mobile_ua(char *user_agent);
995
996 void embed_room_banner(char *, int);
997
998 /* navbar types that can be passed to embed_room_banner */
999 enum {
1000         navbar_none,
1001         navbar_default
1002 };
1003
1004
1005 #ifdef HAVE_OPENSSL
1006 void init_ssl(void);
1007 void endtls(void);
1008 void ssl_lock(int mode, int n, const char *file, int line);
1009 int starttls(int sock);
1010 extern SSL_CTX *ssl_ctx;  
1011 int client_read_sslbuffer(StrBuf *buf, int timeout);
1012 void client_write_ssl(const StrBuf *Buf);
1013 #endif
1014
1015 #ifdef HAVE_ZLIB
1016 #include <zlib.h>
1017 int ZEXPORT compress_gzip(Bytef * dest, size_t * destLen,
1018                           const Bytef * source, uLong sourceLen, int level);
1019 #endif
1020
1021 void utf8ify_rfc822_string(char *buf);
1022
1023 void begin_burst(void);
1024 long end_burst(void);
1025
1026 extern char *hourname[];        /* Names of hours (12am, 1am, etc.) */
1027
1028 void http_datestring(char *buf, size_t n, time_t xtime);
1029
1030
1031 typedef void (*WebcitHandlerFunc)(void);
1032 typedef struct  _WebcitHandler{
1033         WebcitHandlerFunc F;
1034         long Flags;
1035 } WebcitHandler;
1036 void WebcitAddUrlHandler(const char * UrlString, long UrlSLen, WebcitHandlerFunc F, long Flags);
1037
1038 #define AJAX (1<<0)
1039 #define ANONYMOUS (1<<1)
1040 #define NEED_URL (1<<2)
1041
1042
1043 /* These should be empty, but we have them for testing */
1044 #define DEFAULT_HTTPAUTH_USER   ""
1045 #define DEFAULT_HTTPAUTH_PASS   ""
1046
1047
1048 /* Exit codes 101 through 109 are initialization failures so we don't want to
1049  * just keep respawning indefinitely.
1050  */
1051 #define WC_EXIT_BIND            101     /* Can't bind to the port */
1052 #define WC_EXIT_SSL             102     /* Can't initialize SSL */
1053
1054
1055 #define WC_TIMEFORMAT_NONE 0
1056 #define WC_TIMEFORMAT_AMPM 1
1057 #define WC_TIMEFORMAT_24 2
1058
1059