* shortcut notation to tokens for hashkeys; TKEY(n) will make str,len for Hash access
[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 /* make a template token a lookup key: */
275 #define TKEY(a) Tokens->Params[a]->Start, Tokens->Params[a]->len
276 typedef struct _TemplateToken {
277         const StrBuf *FileName; /* Reference to print error messages; not to be freed */
278         StrBuf *FlatToken;
279         long Line;
280         const char *pTokenStart;
281         size_t TokenStart;
282         size_t TokenEnd;
283         const char *pTokenEnd;
284         int Flags;
285         void *PreEval;
286
287         const char *pName;
288         size_t NameEnd;
289
290         int HaveParameters;
291         int nParameters;
292         TemplateParam *Params[MAXPARAM];
293 } WCTemplateToken;
294
295 typedef void (*WCHandlerFunc)();
296
297
298 /*
299  * \brief Dynamic content for variable substitution in templates
300  */
301 typedef struct _wcsubst {
302         int wcs_type;                       /* which type of Substitution are we */
303         char wcs_key[32];                   /* copy of our hashkey for debugging */
304         StrBuf *wcs_value;                  /* if we're a string, keep it here */
305         long lvalue;                        /* type long? keep data here */
306         int ContextRequired;                /* do we require a context type? */
307         WCHandlerFunc wcs_function; /* funcion hook ???*/
308 } wcsubst;
309
310 #define CTX_NONE 0
311 #define CTX_SITECFG 1
312 #define CTX_SESSION 2
313 #define CTX_INETCFG 3
314 #define CTX_VNOTE 4
315 #define CTX_WHO 5
316 #define CTX_PREF 6
317 #define CTX_NODECONF 7
318 #define CTX_USERLIST 8
319 #define CTX_MAILSUM 9
320 #define CTX_MIME_ATACH 10
321 #define CTX_STRBUF 12
322 #define CTX_LONGVECTOR 13
323
324
325 void RegisterNS(const char *NSName, long len, 
326                 int nMinArgs, 
327                 int nMaxArgs, 
328                 WCHandlerFunc HandlerFunc,
329                 int ContextRequired);
330 #define RegisterNamespace(a, b, c, d, e) RegisterNS(a, sizeof(a)-1, b, c, d, e)
331
332 typedef int (*WCConditionalFunc)(WCTemplateToken *Token, void *Context, int ContextType);
333 typedef struct _ConditionalStruct {
334         const char *PlainName;
335         int nParams;
336         int ContextRequired;
337         WCConditionalFunc CondF;
338 } ConditionalStruct;
339 void RegisterConditional(const char *Name, long len, 
340                          int nParams,
341                          WCConditionalFunc CondF, 
342                          int ContextRequired);
343
344
345
346 typedef void (*SubTemplFunc)(StrBuf *TemplBuffer, void *Context, WCTemplateToken *Token);
347 typedef HashList *(*RetrieveHashlistFunc)(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType);
348 typedef void (*HashDestructorFunc) (HashList **KillMe);
349 void RegisterITERATOR(const char *Name, long len, /* Our identifier */
350                       int AdditionalParams,       /* doe we use more parameters? */
351                       HashList *StaticList,       /* pointer to webcit lifetime hashlists */
352                       RetrieveHashlistFunc GetHash, /* else retrieve the hashlist by calling this function */
353                       SubTemplFunc DoSubTempl,       /* call this function on each iteration for svput & friends */
354                       HashDestructorFunc Destructor, /* use this function to shut down the hash; NULL if its a reference */
355                       int ContextType,               /* which context do we provide to the subtemplate? */
356                       int XPectContextType);         /* which context do we expct to be called in? */
357 #define RegisterIterator(a, b, c, d, e, f, g, h) RegisterITERATOR(a, sizeof(a)-1, b, c, d, e, f, g, h)
358
359 void GetTemplateTokenString(WCTemplateToken *Tokens,
360                             int N, 
361                             const char **Value, 
362                             long *len);
363
364
365 void SVPut(char *keyname, size_t keylen, int keytype, char *Data);
366 #define svput(a, b, c) SVPut(a, sizeof(a) - 1, b, c)
367 void SVPutLong(char *keyname, size_t keylen, long Data);
368 #define svputlong(a, b) SVPutLong(a, sizeof(a) - 1, b)
369 void svprintf(char *keyname, size_t keylen, int keytype, const char *format,...) __attribute__((__format__(__printf__,4,5)));
370 void SVPRINTF(char *keyname, int keytype, const char *format,...) __attribute__((__format__(__printf__,3,4)));
371 void SVCALLBACK(char *keyname, WCHandlerFunc fcn_ptr);
372 void SVCallback(char *keyname, size_t keylen,  WCHandlerFunc fcn_ptr);
373 #define svcallback(a, b) SVCallback(a, sizeof(a) - 1, b)
374
375 void SVPUTBuf(const char *keyname, int keylen, const StrBuf *Buf, int ref);
376 #define SVPutBuf(a, b, c); SVPUTBuf(a, sizeof(a) - 1, b, c)
377
378 void DoTemplate(const char *templatename, long len, StrBuf *Target, void *Context, int ContextType);
379 #define do_template(a, b) DoTemplate(a, sizeof(a) -1, NULL, b, 0);
380 void url_do_template(void);
381
382 int CompareSubstToToken(TemplateParam *ParamToCompare, TemplateParam *ParamToLookup);
383 int CompareSubstToStrBuf(StrBuf *Compare, TemplateParam *ParamToLookup);
384
385 void StrBufAppendTemplate(StrBuf *Target, 
386                           int nArgs, 
387                           WCTemplateToken *Tokens,
388                           void *Context, int ContextType,
389                           const StrBuf *Source, int FormatTypeIndex);
390 CompareFunc RetrieveSort(long ContextType, const char *OtherPrefix, 
391                          const char *Default, long ldefault, long DefaultDirection);
392 void RegisterSortFunc(const char *name, long len, 
393                       const char *prepend, long preplen,
394                       CompareFunc Forward, 
395                       CompareFunc Reverse, 
396                       long ContextType);
397
398
399 /*
400  * \brief Values for wcs_type
401  */
402 enum {
403         WCS_STRING,       /* its a string */
404         WCS_FUNCTION,     /* its a function callback */
405         WCS_SERVCMD,      /* its a command to send to the citadel server */
406         WCS_STRBUF,       /* its a strbuf we own */
407         WCS_STRBUF_REF,   /* its a strbuf we mustn't free */
408         WCS_LONG          /* its an integer */
409 };
410
411
412
413 typedef struct wc_mime_attachment wc_mime_attachment;
414 typedef void (*RenderMimeFunc)(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset);
415 struct wc_mime_attachment {
416         int level;
417         StrBuf *Name;
418         StrBuf *FileName;
419         StrBuf *PartNum;
420         StrBuf *Disposition;
421         StrBuf *ContentType;
422         StrBuf *Charset;
423         StrBuf *Data;
424         size_t length;                     /* length of the mimeatachment */
425         long size_known;
426         long lvalue;               /* if we put a long... */
427         long msgnum;            /**< the message number on the citadel server derived from message_summary */
428         RenderMimeFunc Renderer;
429 };
430 void DestroyMime(void *vMime);
431
432
433 /*
434  * \brief message summary structure. ???
435  */
436 typedef struct _message_summary {
437         time_t date;        /**< its creation date */
438         long msgnum;            /**< the message number on the citadel server */
439         int nhdr;
440         int format_type;
441         StrBuf *from;           /**< the author */
442         StrBuf *to;             /**< the recipient */
443         StrBuf *subj;           /**< the title / subject */
444         StrBuf *reply_inreplyto;
445         StrBuf *reply_references;
446         StrBuf *reply_to;
447         StrBuf *cccc;
448         StrBuf *hnod;
449         StrBuf *AllRcpt;
450         StrBuf *Room;
451         StrBuf *Rfca;
452         StrBuf *OtherNode;
453         const StrBuf *PartNum;
454
455         HashList *Attachments;  /**< list of Accachments */
456         HashList *Submessages;
457         HashList *AttachLinks;
458
459         HashList *AllAttach;
460
461         int is_new;         /**< is it yet read? */
462         int hasattachments;     /* does it have atachments? */
463
464
465         /** The mime part of the message */
466         wc_mime_attachment *MsgBody;
467 } message_summary;
468 void DestroyMessageSummary(void *vMsg);
469 inline message_summary* GetMessagePtrAt(int n, HashList *Summ);
470
471 typedef void (*ExamineMsgHeaderFunc)(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset);
472
473 void evaluate_mime_part(message_summary *Msg, wc_mime_attachment *Mime);
474
475
476
477 /**
478  * \brief  Data structure for roomlist-to-folderlist conversion 
479  */
480 struct folder {
481         int floor;      /* which floor is it on */
482         char room[SIZ]; /* which roomname ??? */
483         char name[SIZ]; /* which is its own name??? */
484         int hasnewmsgs; /* are there unread messages inside */
485         int is_mailbox; /* is it a mailbox?  */
486         int selectable; /* can we select it ??? */
487         int view;       /* whats its default view? inbox/calendar.... */
488         int num_rooms;  /* If this is a floor, how many rooms does it have */
489 };
490
491 typedef struct _disp_cal {                                      
492         icalcomponent *cal;             /* cal items for display */
493         long cal_msgnum;                /* cal msgids for display */
494         char *from;                     /* owner of this component */
495         int unread;                     /* already seen by the user? */
496
497         time_t event_start;
498         time_t event_end;
499
500         int multi_day_event;
501         int is_repeat;
502 } disp_cal;                                             
503
504
505
506 /*
507  * Address book entry (keep it short and sweet, it's just a quickie lookup
508  * which we can use to get to the real meat and bones later)
509  */
510 typedef struct _addrbookent {
511         char ab_name[64]; /**< name string */
512         long ab_msgnum;   /**< message number of address book entry */
513 } addrbookent;
514
515
516 typedef struct _headereval {
517         ExamineMsgHeaderFunc evaluator;
518         int Type;
519 } headereval;
520
521
522 struct attach_link {
523         char partnum[32];
524         char html[1024];
525 };
526
527
528 enum {
529         eUp,
530         eDown,
531         eNone
532 };
533
534 /*
535  * One of these is kept for each active Citadel session.
536  * HTTP transactions are bound to one at a time.
537  */
538 typedef struct wcsession wcsession;
539 struct wcsession {
540         wcsession *next;                        /**< Linked list */
541         int wc_session;                         /**< WebCit session ID */
542         char wc_username[128];                  /**< login name of current user */
543         char wc_fullname[128];                  /**< Screen name of current user */
544         char wc_password[128];                  /**< Password of current user */
545         char wc_roomname[256];                  /**< Room we are currently in */
546         int connected;                          /**< nonzero == we are connected to Citadel */
547         int logged_in;                          /**< nonzero == we are logged in  */
548         int axlevel;                            /**< this user's access level */
549         int is_aide;                            /**< nonzero == this user is an Aide */
550         int is_room_aide;                       /**< nonzero == this user is a Room Aide in this room */
551         int http_sock;                          /**< HTTP server socket */
552         int serv_sock;                          /**< Client socket to Citadel server */
553         int chat_sock;                          /**< Client socket to Citadel server - for chat */
554         unsigned room_flags;                    /**< flags associated with the current room */
555         unsigned room_flags2;                   /**< flags associated with the current room */
556         int wc_view;                            /**< view for the current room */
557         int wc_default_view;                    /**< default view for the current room */
558         int wc_is_trash;                        /**< nonzero == current room is a Trash folder */
559         int wc_floor;                           /**< floor number of current room */
560         char ugname[128];                       /**< where does 'ungoto' take us */
561         long uglsn;                             /**< last seen message number for ungoto */
562         int upload_length;                      /**< content length of http-uploaded data */
563         char *upload;                           /**< pointer to http-uploaded data */
564         char upload_filename[PATH_MAX];         /**< filename of http-uploaded data */
565         char upload_content_type[256];          /**< content type of http-uploaded data */
566         int new_mail;                           /**< user has new mail waiting */
567         int remember_new_mail;                  /**< last count of new mail messages */
568         int need_regi;                          /**< This user needs to register. */
569         int need_vali;                          /**< New users require validation. */
570         char cs_inet_email[256];                /**< User's preferred Internet addr. */
571         pthread_mutex_t SessionMutex;           /**< mutex for exclusive access */
572         time_t lastreq;                         /**< Timestamp of most recent HTTP */
573         int killthis;                           /**< Nonzero == purge this session */
574         struct march *march;                    /**< march mode room list */
575         char reply_to[512];                     /**< reply-to address */
576         HashList *summ;                         /**< list of messages for mailbox summary view */
577         int is_mobile;                  /**< Client is a handheld browser */
578         HashList *urlstrings;                   /**< variables passed to webcit in a URL */
579         HashList *vars;                         /**< HTTP variable substitutions for this page */
580         char this_page[512];                    /**< URL of current page */
581         char http_host[512];                    /**< HTTP Host: header */
582         HashList *hash_prefs;                   /**< WebCit preferences for this user */
583         HashList *disp_cal_items;               /**< sorted list of calendar items; startdate is the sort criteria. */
584         HashList *attachments;                  /**< list of attachments for 'enter message' */
585         char last_chat_user[256];               /**< ??? todo */
586         char ImportantMessage[SIZ];             /**< ??? todo */
587         int ctdl_pid;                           /**< Session ID on the Citadel server */
588         char httpauth_user[256];                /**< only for GroupDAV sessions */
589         char httpauth_pass[256];                /**< only for GroupDAV sessions */
590         int gzip_ok;                            /**< Nonzero if Accept-encoding: gzip */
591         int is_mailbox;                         /**< the current room is a private mailbox */
592         struct folder *cache_fold;              /**< cache the iconbar room list */
593         int cache_max_folders;                  /**< ??? todo */
594         int cache_num_floors;                   /**< ??? todo */
595         time_t cache_timestamp;                 /**< ??? todo */
596         HashList *IconBarSetttings;             /**< which icons should be shown / not shown? */
597         long current_iconbar;                   /**< What is currently in the iconbar? */
598         const StrBuf *floordiv_expanded;        /**< which floordiv currently expanded */
599         int selected_language;                  /**< Language selected by user */
600         time_t last_pager_check;                /**< last time we polled for instant msgs */
601         int nonce;                              /**< session nonce (to prevent session riding) */
602         int time_format_cache;                  /**< which timeformat does our user like? */
603         StrBuf *UrlFragment1;                   /**< first urlfragment, if NEED_URL is specified by the handler*/
604         StrBuf *UrlFragment2;                   /**< second urlfragment, if NEED_URL is specified by the handler*/
605         StrBuf *UrlFragment3;                   /**< third urlfragment, if NEED_URL is specified by the handler*/
606         StrBuf *WBuf;                           /**< Our output buffer */
607         StrBuf *HBuf;                           /**< Our HeaderBuffer */
608         StrBuf *CLineBuf;                       /**< linebuffering client stuff */
609         StrBuf *DefaultCharset;                 /**< Charset the user preferes */
610         HashList *ServCfg;                      /**< cache our server config for editing */
611         HashList *InetCfg;                      /**< Our inet server config for editing */
612
613         StrBuf *trailing_javascript;            /**< extra javascript to be appended to page */
614 };
615
616 /* values for WC->current_iconbar */
617 enum {
618         current_iconbar_menu,     /* view the icon menue */
619         current_iconbar_roomlist  /* view the roomtree */
620 };
621 enum {
622         S_SELECT,
623         S_SHUTDOWN,
624         MAX_SEMAPHORES
625 };
626
627
628 /*
629  * calview contains data passed back and forth between the message fetching loop
630  * and the calendar view renderer.
631  */
632 enum {
633         calview_month,
634         calview_day,
635         calview_week,
636         calview_brief
637 };
638
639 struct calview {
640         int view;
641         int year;
642         int month;
643         int day;
644         time_t lower_bound;
645         time_t upper_bound;
646 };
647
648 #ifndef num_parms
649 #define num_parms(source)               num_tokens(source, '|') 
650 #endif
651
652 /* Per-session data */
653 #define WC ((struct wcsession *)pthread_getspecific(MyConKey))
654 extern pthread_key_t MyConKey;
655
656 /* Per-thread SSL context */
657 #ifdef HAVE_OPENSSL
658 #define THREADSSL ((SSL *)pthread_getspecific(ThreadSSL))
659 extern pthread_key_t ThreadSSL;
660 extern char ctdl_key_dir[PATH_MAX];
661 extern char file_crpt_file_key[PATH_MAX];
662 extern char file_crpt_file_csr[PATH_MAX];
663 extern char file_crpt_file_cer[PATH_MAX];
664 #endif
665
666 struct serv_info serv_info;
667 extern char floorlist[128][SIZ];
668 extern char *axdefs[];
669 extern char *ctdlhost, *ctdlport;
670 extern int http_port;
671 extern char *server_cookie;
672 extern int is_https;
673 extern int setup_wizard;
674 extern char wizard_filename[];
675 extern time_t if_modified_since;
676 extern int follow_xff;
677 extern HashList *HandlerHash;
678 extern HashList *PreferenceHooks;
679 extern HashList *WirelessTemplateCache;
680 extern HashList *WirelessLocalTemplateCache;
681 extern HashList *TemplateCache;
682 extern HashList *LocalTemplateCache;
683 extern HashList *GlobalNS;
684 extern HashList *Iterators;
685 extern HashList *ZoneHash;
686 extern HashList *Conditionals;
687 extern HashList *MsgHeaderHandler;
688 extern HashList *MimeRenderHandler;
689 extern HashList *SortHash;
690
691 void InitialiseSemaphores(void);
692 void begin_critical_section(int which_one);
693 void end_critical_section(int which_one);
694
695
696 void stuff_to_cookie(char *cookie, size_t clen, int session,
697                         char *user, char *pass, char *room);
698 void cookie_to_stuff(StrBuf *cookie, int *session,
699                 char *user, size_t user_len,
700                 char *pass, size_t pass_len,
701                 char *room, size_t room_len);
702 void locate_host(char *, int);
703 void become_logged_in(char *, char *, char *);
704 void openid_manual_create(void);
705 void display_login();
706 void display_openids(void);
707 void do_welcome(void);
708 void do_logout(void);
709 void display_main_menu(void);
710 void display_aide_menu(void);
711 void display_advanced_menu(void);
712 void slrp_highest(void);
713 void get_serv_info(char *, char *);
714 int uds_connectsock(char *);
715 int tcp_connectsock(char *, char *);
716 int serv_getln(char *strbuf, int bufsize);
717 int StrBuf_ServGetln(StrBuf *buf);
718 int GetServerStatus(StrBuf *Line, long* FullState);
719 void serv_puts(const char *string);
720 void who(void);
721 void who_inner_div(void);
722 void ajax_mini_calendar(void);
723 void fmout(char *align);
724 void _fmout(StrBuf *Targt, char *align);
725 void FmOut(StrBuf *Target, char *align, StrBuf *Source);
726 void pullquote_fmout(void);
727 void wDumpContent(int);
728
729 int Flathash(const char *str, long len);
730
731
732
733 /* URL / Mime Post parsing -> paramhandling.c */
734 void upload_handler(char *name, char *filename, char *partnum, char *disp,
735                     void *content, char *cbtype, char *cbcharset,
736                     size_t length, char *encoding, char *cbid, void *userdata);
737
738 void ParseURLParams(StrBuf *url);
739
740
741 /* These may return NULL if not foud */
742 #define sbstr(a) SBstr(a, sizeof(a) - 1)
743 const StrBuf *SBSTR(const char *key);
744 const StrBuf *SBstr(const char *key, size_t keylen);
745
746 #define xbstr(a, b) (char*) XBstr(a, sizeof(a) - 1, b)
747 const char *XBstr(const char *key, size_t keylen, size_t *len);
748 const char *XBSTR(const char *key, size_t *len);
749
750 #define lbstr(a) LBstr(a, sizeof(a) - 1)
751 long LBstr(const char *key, size_t keylen);
752 long LBSTR(const char *key);
753
754 #define ibstr(a) IBstr(a, sizeof(a) - 1)
755 int IBstr(const char *key, size_t keylen);
756 int IBSTR(const char *key);
757
758 #define havebstr(a) HaveBstr(a, sizeof(a) - 1)
759 int HaveBstr(const char *key, size_t keylen);
760 int HAVEBSTR(const char *key);
761
762 #define yesbstr(a) YesBstr(a, sizeof(a) - 1)
763 int YesBstr(const char *key, size_t keylen);
764 int YESBSTR(const char *key);
765
766 /* TODO: get rid of the non-const-typecast */
767 #define bstr(a) (char*) Bstr(a, sizeof(a) - 1)
768 const char *BSTR(const char *key);
769 const char *Bstr(const char *key, size_t keylen);
770 /* if you want to ease some parts by just parametring yourself... */
771 #define putbstr(a, b) PutBstr(a, sizeof(a) - 1, b)
772 void PutBstr(const char *key, long keylen, StrBuf *Value);
773
774
775
776 void UrlescPutStrBuf(const StrBuf *strbuf);
777 void StrEscPuts(const StrBuf *strbuf);
778 void StrEscputs1(const StrBuf *strbuf, int nbsp, int nolinebreaks);
779
780 void urlescputs(const char *);
781 void hurlescputs(const char *);
782 void jsesc(char *, size_t, char *);
783 void jsescputs(char *);
784 void output_headers(    int do_httpheaders,
785                         int do_htmlhead,
786                         int do_room_banner,
787                         int unset_cookies,
788                         int suppress_check,
789                         int cache);
790 void wprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
791 void hprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
792 void output_static(char *what);
793
794 void print_menu_box(char* Title, char *Class, int nLines, ...);
795 long stresc(char *target, long tSize, char *strbuf, int nbsp, int nolinebreaks);
796 void escputs(char *strbuf);
797 void url(char *buf, size_t bufsize);
798 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf);
799 void escputs1(char *strbuf, int nbsp, int nolinebreaks);
800 void msgesc(char *target, size_t tlen, char *strbuf);
801 void msgescputs(char *strbuf);
802 void msgescputs1(char *strbuf);
803 void stripout(char *str, char leftboundary, char rightboundary);
804 void dump_vars(void);
805 void embed_main_menu(void);
806 void serv_read(char *buf, int bytes);
807
808 enum {
809         do_search,
810         headers,
811         readfwd,
812         readnew,
813         readold
814 };
815
816 typedef void (*readloop_servcmd)(char *buf, long bufsize);
817
818 typedef struct _readloopstruct {
819         ConstStr name;
820         readloop_servcmd cmd;
821 } readloop_struct;
822 void readloop(long oper);
823 int  read_message(StrBuf *Target, const char *tmpl, long tmpllen, long msgnum, int printable_view, const StrBuf *section);
824 void do_addrbook_view(addrbookent *addrbook, int num_ab);
825 void fetch_ab_name(message_summary *Msg, char *namebuf);
826 void display_vcard(StrBuf *Target, const char *vcard_source, char alpha, int full, char *storename, long msgnum);
827 void text_to_server(char *ptr);
828 void text_to_server_qp(char *ptr);
829 void confirm_delete_msg(void);
830 void display_success(char *);
831 void authorization_required(const char *message);
832 void server_to_text(void);
833 void save_edit(char *description, char *enter_cmd, int regoto);
834 void display_edit(char *description, char *check_cmd,
835                   char *read_cmd, char *save_cmd, int with_room_banner);
836 int gotoroom(char *gname);
837 void confirm_delete_room(void);
838 void validate(void);
839 void display_graphics_upload(char *, char *, char *);
840 void do_graphics_upload(char *upl_cmd);
841 void serv_read(char *buf, int bytes);
842 void serv_gets(char *strbuf);
843 void serv_write(const char *buf, int nbytes);
844 void serv_puts(const char *string);
845 void serv_putbuf(const StrBuf *string);
846 void serv_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
847 void load_floorlist(void);
848 void shutdown_sessions(void);
849 void do_housekeeping(void);
850 void smart_goto(char *);
851 void worker_entry(void);
852 void session_loop(HashList *HTTPHeaders, StrBuf *ReqLine, StrBuf *ReqType, StrBuf *ReadBuf);
853 size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm);
854 void fmt_time(char *buf, time_t thetime);
855 void httpdate(char *buf, time_t thetime);
856 time_t httpdate_to_timestamp(StrBuf *buf);
857 void end_webcit_session(void);
858 void page_popup(void);
859 void http_redirect(const char *);
860 void clear_substs(struct wcsession *wc);
861 void clear_local_substs(void);
862
863
864
865 int lingering_close(int fd);
866 char *memreadline(char *start, char *buf, int maxlen);
867 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
868 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
869 void remove_token(char *source, int parmnum, char separator);
870 char *load_mimepart(long msgnum, char *partnum);
871 void MimeLoadData(wc_mime_attachment *Mime);
872 int pattern2(char *search, char *patn);
873 void do_edit_vcard(long, char *, char *, char *);
874 void striplt(char *);
875 void stripltlen(char *, int *);
876 void select_user_to_edit(char *message, char *preselect);
877 void delete_user(char *);
878 void do_change_view(int);
879 void folders(void);
880
881
882 void load_preferences(void);
883 void save_preferences(void);
884 #define get_preference(a, b) get_PREFERENCE(a, sizeof(a) - 1, b)
885 #define get_pref(a, b)       get_PREFERENCE(ChrPtr(a), StrLength(a), b)
886 int get_PREFERENCE(const char *key, size_t keylen, StrBuf **value);
887 #define set_preference(a, b, c) set_PREFERENCE(a, sizeof(a) - 1, b, c)
888 #define set_pref(a, b, c)       set_PREFERENCE(ChrPtr(a), StrLength(a), b, c)
889 void set_PREFERENCE(const char *key, size_t keylen, StrBuf *value, int save_to_server);
890
891 #define get_pref_long(a, b, c) get_PREF_LONG(a, sizeof(a) - 1, b, c)
892 int get_PREF_LONG(const char *key, size_t keylen, long *value, long Default);
893 #define set_pref_long(a, b, c) set_PREF_LONG(a, sizeof(a) - 1, b, c)
894 void set_PREF_LONG(const char *key, size_t keylen, long value, int save_to_server);
895
896 #define get_pref_yesno(a, b, c) get_PREF_YESNO(a, sizeof(a) - 1, b, c)
897 int get_PREF_YESNO(const char *key, size_t keylen, int *value, int Default);
898 #define set_pref_yesno(a, b, c) set_PREF_YESNO(a, sizeof(a) - 1, b, c)
899 void set_PREF_YESNO(const char *key, size_t keylen, int value, int save_to_server);
900
901 #define get_room_pref(a) get_ROOM_PREFS(a, sizeof(a) - 1)
902 StrBuf *get_ROOM_PREFS(const char *key, size_t keylen);
903
904 #define set_room_pref(a, b, c) set_ROOM_PREFS(a, sizeof(a) - 1, b, c)
905 void set_ROOM_PREFS(const char *key, size_t keylen, StrBuf *value, int save_to_server);
906
907 void display_addressbook(long msgnum, char alpha);
908 void offer_start_page(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType);
909 void convenience_page(char *titlebarcolor, char *titlebarmsg, char *messagetext);
910 void output_html(const char *, int, int, StrBuf *, StrBuf *);
911 void do_listsub(void);
912 ssize_t write(int fd, const void *buf, size_t count);
913 void cal_process_attachment(wc_mime_attachment *Mime);
914 void load_calendar_item(message_summary *Msg, int unread, struct calview *c);
915 void display_calendar(message_summary *Msg, int unread);
916 void display_task(message_summary *Msg, int unread);
917 void display_note(message_summary *Msg, int unread);
918 void updatenote(void);
919 void parse_calendar_view_request(struct calview *c);
920 void render_calendar_view(struct calview *c);
921 void do_tasks_view(void);
922 void calendar_summary_view(void);
923 int load_msg_ptrs(char *servcmd, int with_headers);
924 void free_attachments(wcsession *sess);
925 void free_march_list(wcsession *wcf);
926 void display_rules_editor_inner_div(void);
927 void generate_uuid(char *);
928 void CtdlMakeTempFileName(char *, int);
929 void address_book_popup(void);
930 void begin_ajax_response(void);
931 void end_ajax_response(void);
932 void initialize_viewdefs(void);
933 void initialize_axdefs(void);
934 void burn_folder_cache(time_t age);
935 void list_all_rooms_by_floor(const char *viewpref);
936 void display_pictureview(void);
937
938 void display_edit_task(void);
939 void display_edit_event(void);
940 icaltimezone *get_default_icaltimezone(void);
941 void display_icaltimetype_as_webform(struct icaltimetype *, char *, int);
942 void icaltime_from_webform(struct icaltimetype *result, char *prefix);
943 void icaltime_from_webform_dateonly(struct icaltimetype *result, char *prefix);
944 void display_edit_individual_event(icalcomponent *supplied_vtodo, long msgnum, char *from,
945         int unread, struct calview *calv);
946 void save_individual_event(icalcomponent *supplied_vtodo, long msgnum, char *from,
947         int unread, struct calview *calv);
948 void ical_dezonify(icalcomponent *cal);
949 void partstat_as_string(char *buf, icalproperty *attendee);
950 icalcomponent *ical_encapsulate_subcomponent(icalcomponent *subcomp);
951 void check_attendee_availability(icalcomponent *supplied_vevent);
952 void do_freebusy(const char *req);
953 int ical_ctdl_is_overlap(
954                         struct icaltimetype t1start,
955                         struct icaltimetype t1end,
956                         struct icaltimetype t2start,
957                         struct icaltimetype t2end
958 );
959
960 #ifdef ENABLE_NLS
961 void initialize_locales(void);
962 void ShutdownLocale(void);
963 #endif
964 void TmplGettext(StrBuf *Target, int nTokens, WCTemplateToken *Token);
965
966 extern char *months[];
967 extern char *days[];
968 int read_server_binary(StrBuf *Ret, size_t total_len);
969 int StrBuf_ServGetBLOB(StrBuf *buf, long BlobSize);
970 int read_server_text(StrBuf *Buf, long *nLines);;
971 int goto_config_room(void);
972 long locate_user_vcard(char *username, long usernum);
973 void sleeeeeeeeeep(int);
974 void http_transmit_thing(const char *content_type, int is_static);
975 long unescape_input(char *buf);
976 void do_selected_iconbar(void);
977 void spawn_another_worker_thread(void);
978 void display_rss(char *roomname, StrBuf *request_method);
979 void offer_languages(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType);
980 void set_selected_language(const char *);
981 void go_selected_language(void);
982 void stop_selected_language(void);
983 void preset_locale(void);
984 void httplang_to_locale(StrBuf *LocaleString);
985 void StrEndTab(StrBuf *Target, int tabnum, int num_tabs);
986 void StrBeginTab(StrBuf *Target, int tabnum, int num_tabs);
987 void StrTabbedDialog(StrBuf *Target, int num_tabs, StrBuf *tabnames[]);
988 void tabbed_dialog(int num_tabs, char *tabnames[]);
989 void begin_tab(int tabnum, int num_tabs);
990 void end_tab(int tabnum, int num_tabs);
991 void str_wiki_index(char *s);
992 int get_time_format_cached (void);
993 int xtoi(const char *in, size_t len);
994 const char *get_selected_language(void);
995 void webcit_fmt_date(char *buf, time_t thetime, int brief);
996 int fetch_http(char *url, char *target_buf, int maxbytes);
997
998 int is_mobile_ua(char *user_agent);
999
1000 void embed_room_banner(char *, int);
1001
1002 /* navbar types that can be passed to embed_room_banner */
1003 enum {
1004         navbar_none,
1005         navbar_default
1006 };
1007
1008
1009 #ifdef HAVE_OPENSSL
1010 void init_ssl(void);
1011 void endtls(void);
1012 void ssl_lock(int mode, int n, const char *file, int line);
1013 int starttls(int sock);
1014 extern SSL_CTX *ssl_ctx;  
1015 int client_read_sslbuffer(StrBuf *buf, int timeout);
1016 void client_write_ssl(const StrBuf *Buf);
1017 #endif
1018
1019 #ifdef HAVE_ZLIB
1020 #include <zlib.h>
1021 int ZEXPORT compress_gzip(Bytef * dest, size_t * destLen,
1022                           const Bytef * source, uLong sourceLen, int level);
1023 #endif
1024
1025 void utf8ify_rfc822_string(char *buf);
1026
1027 void begin_burst(void);
1028 long end_burst(void);
1029
1030 extern char *hourname[];        /* Names of hours (12am, 1am, etc.) */
1031
1032 void http_datestring(char *buf, size_t n, time_t xtime);
1033
1034
1035 typedef void (*WebcitHandlerFunc)(void);
1036 typedef struct  _WebcitHandler{
1037         WebcitHandlerFunc F;
1038         long Flags;
1039 } WebcitHandler;
1040 void WebcitAddUrlHandler(const char * UrlString, long UrlSLen, WebcitHandlerFunc F, long Flags);
1041
1042 #define AJAX (1<<0)
1043 #define ANONYMOUS (1<<1)
1044 #define NEED_URL (1<<2)
1045
1046
1047 /* These should be empty, but we have them for testing */
1048 #define DEFAULT_HTTPAUTH_USER   ""
1049 #define DEFAULT_HTTPAUTH_PASS   ""
1050
1051
1052 /* Exit codes 101 through 109 are initialization failures so we don't want to
1053  * just keep respawning indefinitely.
1054  */
1055 #define WC_EXIT_BIND            101     /* Can't bind to the port */
1056 #define WC_EXIT_SSL             102     /* Can't initialize SSL */
1057
1058
1059 #define WC_TIMEFORMAT_NONE 0
1060 #define WC_TIMEFORMAT_AMPM 1
1061 #define WC_TIMEFORMAT_24 2
1062
1063