Performed a bunch of markup fixes suggested by validator.w3.org
[citadel.git] / webcit / webcit.h
1 /*
2  * Copyright (c) 1987-2010 by the citadel.org team
3  *
4  * This program is open source software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #include "sysdep.h"
20 #include <sys/select.h>
21 #include <ctype.h>
22 #include <stdlib.h>
23 #ifdef HAVE_UNISTD_H
24 #include <unistd.h>
25 #endif
26 #include <stdio.h>
27 #ifdef HAVE_FCNTL_H
28 #include <fcntl.h>
29 #endif
30 #include <signal.h>
31 #include <sys/types.h>
32 #include <sys/wait.h>
33 #include <sys/socket.h>
34 #ifdef HAVE_SYS_TIME_H
35 #include <sys/time.h>
36 #endif
37 #include <sys/stat.h>
38 #ifdef HAVE_LIMITS_H
39 #include <limits.h>
40 #endif
41 #include <sys/socket.h>
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
44 #include <netdb.h>
45 #include <sys/un.h>
46 #include <sys/poll.h>
47 #include <string.h>
48 #include <pwd.h>
49 #include <errno.h>
50 #include <stdarg.h>
51 #include <pthread.h>
52 #include <signal.h>
53 #include <sys/utsname.h>
54 #include <libcitadel.h>
55
56 #ifdef HAVE_ICONV
57 #include <iconv.h>
58 #endif
59
60 #ifdef ENABLE_NLS
61 #ifdef HAVE_XLOCALE_H
62 #include <xlocale.h>
63 #endif
64 #include <libintl.h>
65 #include <locale.h>
66 #define _(string)       gettext(string)
67 #else
68 #define _(string)       (string)
69 #endif
70
71 #define IsEmptyStr(a) ((a)[0] == '\0')
72 /*
73  * Uncomment to dump an HTTP trace to stderr
74 #define HTTP_TRACING 1
75  */
76
77 #define DO_DBG_QR 0
78 #define DBG_QR(x) if(DO_DBG_QR) _DBG_QR(x)
79 #define DBG_QR2(x) if(DO_DBG_QR) _DBG_QR2(x)
80
81 #ifdef HTTP_TRACING
82 #undef HAVE_ZLIB_H
83 #undef HAVE_ZLIB
84 #endif
85
86 #ifdef HAVE_ZLIB_H
87 #include <zlib.h>
88 #endif
89
90 #include <libical/ical.h>
91
92 #undef PACKAGE
93 #undef VERSION
94 #undef PACKAGE_NAME
95 #undef PACKAGE_STRING
96 #undef PACKAGE_TARNAME
97 #undef PACKAGE_VERSION
98 #undef PACKAGE_BUGREPORT
99 #include "sysdep.h"
100
101 #include "subst.h"
102 #include "messages.h"
103 #include "paramhandling.h"
104 #include "roomops.h"
105 #include "preferences.h"
106
107 #ifdef HAVE_OPENSSL
108 /* Work around RedHat's b0rken OpenSSL includes */
109 #define OPENSSL_NO_KRB5
110 #include <openssl/ssl.h>
111 #include <openssl/err.h>
112 #include <openssl/rand.h>
113 extern char *ssl_cipher_list;
114 #define DEFAULT_SSL_CIPHER_LIST "DEFAULT"       /* See http://openssl.org/docs/apps/ciphers.html */
115 #endif
116
117 #if SIZEOF_SIZE_T == SIZEOF_INT 
118 #define SIZE_T_FMT "%d"
119 #else
120 #define SIZE_T_FMT "%ld"
121 #endif
122
123 #if SIZEOF_LONG_UNSIGNED_INT == SIZEOF_INT
124 #define ULONG_FMT "%d"
125 #else
126 #define ULONG_FMT "%ld"
127 #endif
128
129 #define CALENDAR_ROOM_NAME      "Calendar"
130 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
131
132 #define SIZ                     4096            /* generic buffer size */
133
134 #define TRACE fprintf(stderr, "\033[7mCheckpoint: %s, %d\033[0m\n", __FILE__, __LINE__)
135
136 #define SLEEPING                180             /* TCP connection timeout */
137 #define WEBCIT_TIMEOUT          900             /* WebCit session timeout */
138 #define PORT_NUM                2000            /* port number to listen on */
139 #define DEVELOPER_ID            0
140 #define CLIENT_ID               4
141 #define CLIENT_VERSION          800             /* This version of WebCit */
142 #define MINIMUM_CIT_VERSION     800             /* min required Citadel ver */
143 #define LIBCITADEL_MIN          800             /* min required libcitadel ver */
144 #define DEFAULT_HOST            "localhost"     /* Default Citadel server */
145 #define DEFAULT_PORT            "504"
146 #define TARGET                  "webcit01"      /* Target for inline URL's */
147 #define HOUSEKEEPING            15              /* Housekeeping frequency */
148 #define MAX_WORKER_THREADS      250
149 #define LISTEN_QUEUE_LENGTH     100             /* listen() backlog queue */
150
151 #define USERCONFIGROOM          "My Citadel Config"
152 #define DEFAULT_MAXMSGS         20
153
154
155 #ifdef LIBCITADEL_VERSION_NUMBER
156 #if LIBCITADEL_VERSION_NUMBER < LIBCITADEL_MIN
157 #error libcitadel is too old.  Please upgrade it before continuing.
158 #endif
159 #endif
160
161
162 /*
163  * Room flags (from Citadel)
164  *
165  * bucket one...
166  */
167 #define QR_PERMANENT    1               /* Room does not purge          */
168 #define QR_INUSE        2               /* Set if in use, clear if avail        */
169 #define QR_PRIVATE      4               /* Set for any type of private room     */
170 #define QR_PASSWORDED   8               /* Set if there's a password too        */
171 #define QR_GUESSNAME    16              /* Set if it's a guessname room */
172 #define QR_DIRECTORY    32              /* Directory room                       */
173 #define QR_UPLOAD       64              /* Allowed to upload                    */
174 #define QR_DOWNLOAD     128             /* Allowed to download          */
175 #define QR_VISDIR       256             /* Visible directory                    */
176 #define QR_ANONONLY     512             /* Anonymous-Only room          */
177 #define QR_ANONOPT      1024            /* Anonymous-Option room                */
178 #define QR_NETWORK      2048            /* Shared network room          */
179 #define QR_PREFONLY     4096            /* Preferred status needed to enter     */
180 #define QR_READONLY     8192            /* Aide status required to post */
181 #define QR_MAILBOX      16384           /* Set if this is a private mailbox     */
182
183 /*
184  * bucket two...
185  */
186 #define QR2_SYSTEM      1               /* System room; hide by default */
187 #define QR2_SELFLIST    2               /* Self-service mailing list mgmt       */
188 #define QR2_COLLABDEL   4               /* Anyone who can post can also delete*/
189 #define QR2_SUBJECTREQ  8               /* Subject strongly recommended */
190 #define QR2_SMTP_PUBLIC 16              /* smtp public postable room */
191 #define QR2_MODERATED   32              /* Listservice aide has to permit posts  */
192
193 /*
194  * user/room access
195  */
196 #define UA_KNOWN        2
197 #define UA_GOTOALLOWED  4
198 #define UA_HASNEWMSGS   8
199 #define UA_ZAPPED       16
200 #define UA_POSTALLOWED          32
201 #define UA_ADMINALLOWED         64
202 #define UA_DELETEALLOWED        128
203 #define UA_ISTRASH              256 /* Only available in room view... */
204
205
206 /*
207  * User flags (from Citadel)
208  */
209 #define US_NEEDVALID    1               /* User needs to be validated           */
210 #define US_PERM         4               /* Permanent user                       */
211 #define US_LASTOLD      16              /* Print last old message with new      */
212 #define US_EXPERT       32              /* Experienced user                     */
213 #define US_UNLISTED     64              /* Unlisted userlog entry               */
214 #define US_NOPROMPT     128             /* Don't prompt after each message      */
215 #define US_PROMPTCTL    256             /* <N>ext & <S>top work at prompt       */
216 #define US_DISAPPEAR    512             /* Use "disappearing msg prompts"       */
217 #define US_REGIS        1024            /* Registered user                      */
218 #define US_PAGINATOR    2048            /* Pause after each screen of text      */
219 #define US_INTERNET     4096            /* Internet mail privileges             */
220 #define US_FLOORS       8192            /* User wants to see floors             */
221 #define US_COLOR        16384           /* User wants ANSI color support        */
222 #define US_USER_SET     (US_LASTOLD | US_EXPERT | US_UNLISTED | \
223                         US_NOPROMPT | US_DISAPPEAR | US_PAGINATOR | \
224                         US_FLOORS | US_COLOR | US_PROMPTCTL )
225
226
227
228 #define SRV_STATUS_MSG(ServerLineBuf) (ChrPtr(ServerLineBuf) + 4), (StrLength(ServerLineBuf) - 4)
229 #define MAJORCODE(a) (((int)(a / 100) ) * 100)
230
231 #define LISTING_FOLLOWS 100
232 #define CIT_OK          200     
233 #define MORE_DATA       300
234 #define SEND_LISTING    400
235 #define ERROR           500
236 #define BINARY_FOLLOWS  600
237 #define SEND_BINARY     700
238 #define START_CHAT_MODE 800
239 #define ASYNC_MSG       900
240
241 #define MINORCODE(a) (a % 100)
242 #define ASYNC_GEXP                      02      
243 #define INTERNAL_ERROR                  10      
244 #define TOO_BIG                         11      
245 #define ILLEGAL_VALUE                   12      
246 #define NOT_LOGGED_IN                   20      
247 #define CMD_NOT_SUPPORTED               30      
248 #define SERVER_SHUTTING_DOWN            31      
249 #define PASSWORD_REQUIRED               40      
250 #define ALREADY_LOGGED_IN               41      
251 #define USERNAME_REQUIRED               42      
252 #define HIGHER_ACCESS_REQUIRED          50      
253 #define MAX_SESSIONS_EXCEEDED           51      
254 #define RESOURCE_BUSY                   52      
255 #define RESOURCE_NOT_OPEN               53      
256 #define NOT_HERE                        60      
257 #define INVALID_FLOOR_OPERATION         61      
258 #define NO_SUCH_USER                    70      
259 #define FILE_NOT_FOUND                  71      
260 #define ROOM_NOT_FOUND                  72      
261 #define NO_SUCH_SYSTEM                  73      
262 #define ALREADY_EXISTS                  74      
263 #define MESSAGE_NOT_FOUND               75
264 /*
265  * NLI is the string that shows up in a who's online listing for sessions
266  * that are active, but for which no user has yet authenticated.
267  */
268 #define NLI     "(not logged in)"
269
270 /*
271  * Expiry policy for the autopurger
272  */
273 #define EXPIRE_NEXTLEVEL        0       /* Inherit expiration policy    */
274 #define EXPIRE_MANUAL           1       /* Don't expire messages at all */
275 #define EXPIRE_NUMMSGS          2       /* Keep only latest n messages  */
276 #define EXPIRE_AGE              3       /* Expire messages after n days */
277 typedef struct __ExpirePolicy {
278         int loaded; /* has this been loaded from the server? */
279         int expire_mode;
280         int expire_value;
281 }ExpirePolicy;
282 void LoadExpirePolicy(GPEXWhichPolicy which);
283 void SaveExpirePolicyFromHTTP(GPEXWhichPolicy which);
284
285 /*
286  * Linked list of session variables encoded in an x-www-urlencoded content type
287  */
288 typedef struct urlcontent urlcontent;
289 struct urlcontent {
290         char url_key[32];               /* key */
291         StrBuf *url_data;               /* value */
292 };
293
294 /*
295  * Information about the Citadel server to which we are connected
296  */ 
297 typedef struct _serv_info {
298         int serv_pid;                   /* Process ID of the Citadel server */
299         StrBuf *serv_nodename;          /* Node name of the Citadel server */
300         StrBuf *serv_humannode;         /* Juman readable node name of the Citadel server */
301         StrBuf *serv_fqdn;              /* Fully qualified Domain Name (such as uncensored.citadel.org) */
302         StrBuf *serv_software;          /* Free form text description of the server software in use */
303         int serv_rev_level;             /* Server version number (times 100) */
304         StrBuf *serv_bbs_city;          /* Geographic location of the Citadel server */
305         StrBuf *serv_sysadm;            /* Name of system administrator */
306         int serv_supports_ldap;         /* is the server linked against an ldap tree for adresses? */
307         int serv_newuser_disabled;      /* Has the server disabled self-service new user creation? */
308         StrBuf *serv_default_cal_zone;  /* Default timezone for unspecified calendar items */
309         int serv_supports_sieve;        /* Server supports Sieve mail filtering */
310         int serv_fulltext_enabled;      /* Full text index is enabled */
311         StrBuf *serv_svn_revision;      /* svn or git revision of the server */
312         int serv_supports_openid;       /* Server supports authentication via OpenID */
313         int serv_supports_guest;        /* Server supports unauthenticated guest logins */
314 } ServInfo;
315
316
317 typedef struct _disp_cal {                                      
318         icalcomponent *cal;             /* cal items for display */
319         long cal_msgnum;                /* cal msgids for display */
320         char *from;                     /* owner of this component */
321         int unread;                     /* already seen by the user? */
322
323         time_t event_start;
324         time_t event_end;
325
326         int multi_day_event;
327         int is_repeat;
328         icalcomponent *SortBy;          /* cal items for display */
329         icalproperty_status Status;
330 } disp_cal;                                             
331
332 typedef struct _IcalEnumMap {
333         const char *Name;
334         long NameLen;
335         icalproperty_kind map;
336 } IcalEnumMap;
337
338 /*
339  * Address book entry (keep it short and sweet, it's just a quickie lookup
340  * which we can use to get to the real meat and bones later)
341  */
342 typedef struct _addrbookent {
343         char ab_name[64];       /* name string */
344         long ab_msgnum;         /* message number of address book entry */
345 } addrbookent;
346
347
348 #define AJAX (1<<0)
349 #define ANONYMOUS (1<<1)
350 #define NEED_URL (1<<2)
351 #define XHTTP_COMMANDS (1<<3)
352 #define BOGUS (1<<4)
353 #define URLNAMESPACE (1<<4)
354 #define LOGCHATTY (1<<5)
355 #define COOKIEUNNEEDED (1<<6)
356 #define ISSTATIC (1<<7)
357 #define FORCE_SESSIONCLOSE (1<<8)
358 #define PARSE_REST_URL (1<<9)
359 #define PROHIBIT_STARTPAGE (1<<10)
360
361 typedef enum _RESTDispatchID {
362         ExistsID,
363         PutID,
364         DeleteID
365 } RESTDispatchID;
366
367 typedef int (*WebcitRESTDispatchID)(RESTDispatchID WhichAction, int IgnoreFloor);
368 typedef void (*WebcitHandlerFunc)(void);
369 typedef struct  _WebcitHandler{
370         WebcitHandlerFunc F;
371         WebcitRESTDispatchID RID;
372         long Flags;
373         StrBuf *Name;
374         StrBuf *DisplayName;
375 } WebcitHandler;
376
377
378 void WebcitAddUrlHandler(const char * UrlString, long UrlSLen, const char *DisplayName, long dslen, WebcitHandlerFunc F, long Flags);
379
380 typedef struct _headereval {
381         ExamineMsgHeaderFunc evaluator;
382         int Type;
383 } headereval;
384
385
386 struct attach_link {
387         char partnum[32];
388         char html[1024];
389 };
390
391
392 enum {
393         eUp,
394         eDown,
395         eNone
396 };
397
398 enum {
399         eGET,
400         ePOST,
401         eOPTIONS,
402         ePROPFIND,
403         ePUT,
404         eDELETE,
405         eHEAD,
406         eMOVE,
407         eCOPY,
408         eNONE
409 };
410 extern const char *ReqStrs[eNONE];
411
412 #define NO_AUTH 0
413 #define AUTH_COOKIE 1
414 #define AUTH_BASIC 2
415
416
417
418 typedef struct _HdrRefs {
419         long eReqType;                          /* HTTP method */
420         int desired_session;
421         int SessionKey;
422
423         int got_auth;
424         int DontNeedAuth;
425         long ContentLength;
426         time_t if_modified_since;
427         int gzip_ok;                            /* Nonzero if Accept-encoding: gzip */
428         int prohibit_caching;
429         int dav_depth;
430         int Static;
431
432         /* these are references into Hdr->HTTPHeaders, so we don't need to free them. */
433         StrBuf *ContentType;
434         StrBuf *RawCookie;
435         StrBuf *ReqLine;
436         StrBuf *browser_host;
437         StrBuf *browser_language;
438         StrBuf *user_agent;
439         StrBuf *plainauth;
440         StrBuf *dav_ifmatch;
441
442         const WebcitHandler *Handler;
443 } HdrRefs;
444
445 typedef struct _ParsedHttpHdrs {
446         int http_sock;                          /* HTTP server socket */
447         const char *Pos;
448         StrBuf *ReadBuf;
449
450         StrBuf *c_username;
451         StrBuf *c_password;
452         StrBuf *c_roomname;
453         StrBuf *c_language;
454         StrBuf *this_page;                      /* URL of current page */
455         StrBuf *PlainArgs; 
456
457         HashList *urlstrings;                   /* variables passed to webcit in a URL */
458         HashList *HTTPHeaders;                  /* the headers the client sent us */
459         int nWildfireHeaders;                   /* how many wildfire headers did we already send? */
460
461         HdrRefs HR;
462 } ParsedHttpHdrs;
463
464
465 /*
466  * One of these is kept for each active Citadel session.
467  * HTTP transactions are bound to one at a time.
468  */
469 typedef struct wcsession wcsession;
470 struct wcsession {
471 /* infrastructural members */
472         wcsession *next;                        /* Linked list */
473         pthread_mutex_t SessionMutex;           /* mutex for exclusive access */
474         int wc_session;                         /* WebCit session ID */
475         int killthis;                           /* Nonzero == purge this session */
476         int is_mobile;                          /* Client is a handheld browser */
477         int ctdl_pid;                           /* Session ID on the Citadel server */
478         int nonce;                              /* session nonce (to prevent session riding) */
479         int SessionKey;
480
481 /* Session local Members */
482         int serv_sock;                          /* Client socket to Citadel server */
483         StrBuf *ReadBuf;                        /* here we keep our stuff while reading linebuffered from the server. */
484         StrBuf *MigrateReadLineBuf;             /* here we buffer legacy server read stuff */
485         const char *ReadPos;                    /* whats our read position in ReadBuf? */
486         int last_chat_seq;                      /* When in chat - last message seq# we saw */
487         time_t lastreq;                         /* Timestamp of most recent HTTP */
488         time_t last_pager_check;                /* last time we polled for instant msgs */
489         ServInfo *serv_info;                    /* Information about the citserver we're connected to */
490         int is_ajax;                            /* are we doing an ajax request? */
491
492 /* Request local Members */
493         StrBuf *CLineBuf;                       /* linebuffering client stuff */
494         ParsedHttpHdrs *Hdr;
495         StrBuf *WBuf;                           /* Our output buffer */
496         StrBuf *HBuf;                           /* Our HeaderBuffer */
497         StrBuf *WFBuf;                          /* Wildfire error logging buffer */
498
499         StrBuf *trailing_javascript;            /* extra javascript to be appended to page */
500         char ImportantMessage[SIZ];
501         StrBuf *ImportantMsg;
502         HashList *Directory;                    /* Parts of the directory URL in snippets */
503         const Floor *CurrentFloor;              /**< when Parsing REST, which floor are we on? */
504
505 /* accounting */
506         StrBuf *wc_username;                    /* login name of current user */
507         StrBuf *wc_fullname;                    /* Screen name of current user */
508         StrBuf *wc_password;                    /* Password of current user */
509         StrBuf *httpauth_pass;                  /* only for GroupDAV sessions */
510         int axlevel;                            /* this user's access level */
511         int is_aide;                            /* nonzero == this user is an Aide */
512         int connected;                          /* nonzero == we are connected to Citadel */
513         int logged_in;                          /* nonzero == we are logged in  */
514         int need_regi;                          /* This user needs to register. */
515         int need_vali;                          /* New users require validation. */
516
517 /* Preferences */
518         StrBuf *cs_inet_email;                  /* User's preferred Internet addr. */
519         HashList *hash_prefs;                   /* WebCit preferences for this user */
520         StrBuf *DefaultCharset;                 /* Charset the user preferes */
521         int downloaded_prefs;                   /* Has the client download its prefs yet? */
522         int SavePrefsToServer;                  /* Should we save our preferences to the server at the end of the request? */
523         int selected_language;                  /* Language selected by user */
524         int time_format_cache;                  /* which timeformat does our user like? */
525
526         folder CurRoom;                         /* information about our current room */
527         const folder *ThisRoom;                 /* if REST found a room, remember it here. */
528 /* next/previous room thingabob */
529         struct march *march;                    /* march mode room list */
530         char ugname[128];                       /* where does 'ungoto' take us */
531         long uglsn;                             /* last seen message number for ungoto */
532
533 /* Uploading; mime attachments for composing messages */
534         HashList *attachments;                  /* list of attachments for 'enter message' */
535         int upload_length;                      /* content length of http-uploaded data */
536         StrBuf *upload;                         /* pointer to http-uploaded data */
537         StrBuf *upload_filename;                /* filename of http-uploaded data */
538         char upload_content_type[256];          /* content type of http-uploaded data */
539
540         int remember_new_mail;                  /* last count of new mail messages */
541
542 /* Roomiew control */
543         HashList *Floors;                       /* floors our citserver has hashed numeric for quicker access*/
544         HashList *FloorsByName;                 /* same but hashed by its name */
545         HashList *Rooms;                        /* our directory structure as loaded by LKRA */
546         HashList *summ;                         /* list of messages for mailbox summary view */
547   /** Perhaps these should be within a struct instead */
548         long startmsg;                          /* message number to start at */
549         long maxmsgs;                           /* maximum messages to display */
550         long num_displayed;                     /* number of messages actually displayed */
551         HashList *disp_cal_items;               /* sorted list of calendar items; startdate is the sort criteria. */
552
553
554         char last_chat_user[256];
555
556 /* Iconbar controls */
557         int cache_max_folders;
558         int cache_num_floors;
559         long *IBSettingsVec;                    /* which icons should be shown / not shown? */
560         const StrBuf *floordiv_expanded;        /* which floordiv currently expanded */
561
562 /* Transcoding cache buffers; used to avoid to frequent realloc */
563         StrBuf *ConvertBuf1;
564         StrBuf *ConvertBuf2;
565
566 /* cache stuff for templates. TODO: find a smartrer way */
567         HashList *ServCfg;                      /* cache our server config for editing */
568         HashList *InetCfg;                      /* Our inet server config for editing */
569         ExpirePolicy Policy[maxpolicy];
570
571 /* used by the blog viewer */
572         int bptlid;                             /* hash of thread currently being rendered */
573 };
574
575
576 typedef void (*Header_Evaluator)(StrBuf *Line, ParsedHttpHdrs *hdr);
577
578 typedef struct _HttpHeader {
579         Header_Evaluator H;
580         StrBuf *Val;
581         int HaveEvaluator;
582 } OneHttpHeader;
583
584 void RegisterHeaderHandler(const char *Name, long Len, Header_Evaluator F);
585
586
587 enum {
588         S_SHUTDOWN,
589         S_SPAWNER,
590         MAX_SEMAPHORES
591 };
592
593 #ifndef num_parms
594 #define num_parms(source)               num_tokens(source, '|') 
595 #endif
596
597 /* Per-session data */
598 #define WC ((struct wcsession *)pthread_getspecific(MyConKey))
599 extern pthread_key_t MyConKey;
600
601 /* Per-thread SSL context */
602 #ifdef HAVE_OPENSSL
603 #define THREADSSL ((SSL *)pthread_getspecific(ThreadSSL))
604 extern pthread_key_t ThreadSSL;
605 extern char ctdl_key_dir[PATH_MAX];
606 extern char file_crpt_file_key[PATH_MAX];
607 extern char file_crpt_file_csr[PATH_MAX];
608 extern char file_crpt_file_cer[PATH_MAX];
609 #endif
610
611 extern char floorlist[128][SIZ];
612 extern char *axdefs[];
613 extern char *ctdlhost, *ctdlport;
614 extern int http_port;
615 extern char *server_cookie;
616 extern int is_https;
617 extern int setup_wizard;
618 extern char wizard_filename[];
619 extern int follow_xff;
620 extern int num_threads_existing;
621 extern int num_threads_executing;
622 extern StrBuf *site_prefix;
623
624 void InitialiseSemaphores(void);
625 void begin_critical_section(int which_one);
626 void end_critical_section(int which_one);
627
628 void stuff_to_cookie(int unset_cookie);
629
630 void cookie_to_stuff(StrBuf *cookie,
631                 int *session,
632                 StrBuf *user,
633                 StrBuf *pass,
634                 StrBuf *room,
635                 StrBuf *language
636 );
637 void locate_host(StrBuf *TBuf, int);
638 void become_logged_in(const StrBuf *user, const StrBuf *pass, StrBuf *serv_response);
639 void openid_manual_create(void);
640 void display_login(void);
641 void display_openids(void);
642 void display_default_landing_page(void);
643 void do_welcome(void);
644 void do_logout(void);
645 void display_main_menu(void);
646 void display_aide_menu(void);
647 void slrp_highest(void);
648 ServInfo *get_serv_info(StrBuf *, StrBuf *);
649 void RegisterEmbeddableMimeType(const char *MimeType, long MTLen, int Priority);
650 void CreateMimeStr(void);
651 int GetConnected(void);
652 void DeleteServInfo(ServInfo **FreeMe);
653 int uds_connectsock(char *);
654 int tcp_connectsock(char *, char *);
655 int serv_getln(char *strbuf, int bufsize);
656 int StrBuf_ServGetln(StrBuf *buf);
657 int GetServerStatus(StrBuf *Line, long* FullState);
658 void serv_puts(const char *string);
659 void who(void);
660
661 void ajax_mini_calendar(void);
662 void fmout(char *align);
663 void _fmout(StrBuf *Targt, char *align);
664 void FmOut(StrBuf *Target, char *align, StrBuf *Source);
665 void pullquote_fmout(void);
666 void wDumpContent(int);
667
668
669 void PutRequestLocalMem(void *Data, DeleteHashDataFunc DeleteIt);
670
671 void UrlescPutStrBuf(const StrBuf *strbuf);
672 void StrEscPuts(const StrBuf *strbuf);
673 void StrEscputs1(const StrBuf *strbuf, int nbsp, int nolinebreaks);
674
675 void urlescputs(const char *);
676 void hurlescputs(const char *);
677 void jsesc(char *, size_t, char *);
678 void jsescputs(char *);
679 void output_headers(    int do_httpheaders,
680                         int do_htmlhead,
681                         int do_room_banner,
682                         int unset_cookies,
683                         int suppress_check,
684                         int cache);
685 void output_custom_content_header(const char *ctype);
686
687 #ifdef UBER_VERBOSE_DEBUGGING
688 #define wc_printf(...) wcc_printf(__FILE__, __FUNCTION__, __LINE__, __VA_ARGS__)
689 void wcc_printf(const char *FILE, const char *FUNCTION, long LINE, const char *format, ...);
690 #else 
691 void wc_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
692 #endif
693
694 void hprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
695 void output_static(const char* What);
696
697 long stresc(char *target, long tSize, char *strbuf, int nbsp, int nolinebreaks);
698 void escputs(const char *strbuf);
699 void url(char *buf, size_t bufsize);
700 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf);
701 void escputs1(const char *strbuf, int nbsp, int nolinebreaks);
702 void msgesc(char *target, size_t tlen, char *strbuf);
703 void msgescputs(char *strbuf);
704 void msgescputs1(char *strbuf);
705 void dump_vars(void);
706
707 void do_addrbook_view(addrbookent *addrbook, int num_ab);
708 void fetch_ab_name(message_summary *Msg, char **namebuf);
709 void display_vcard(StrBuf *Target, wc_mime_attachment *Mime, char alpha, int full, char **storename, long msgnum);
710 void jsonMessageList(void);
711 void new_summary_view(void);
712 void text_to_server(char *ptr);
713 void text_to_server_qp(char *ptr);
714 void display_success(char *);
715 void CheckAuthBasic(ParsedHttpHdrs *hdr);
716 void GetAuthBasic(ParsedHttpHdrs *hdr);
717 void server_to_text(void);
718 void save_edit(char *description, char *enter_cmd, int regoto);
719 void display_edit(char *description, char *check_cmd,
720                   char *read_cmd, char *save_cmd, int with_room_banner);
721 long gotoroom(const StrBuf *gname);
722 void remove_march(const StrBuf *aaa);
723 void dotskip(void);
724 void validate(void);
725 void display_graphics_upload(char *, char *, char *);
726 void do_graphics_upload(char *upl_cmd);
727 void serv_write(const char *buf, int nbytes);
728 void serv_putbuf(const StrBuf *string);
729 void serv_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
730 void shutdown_sessions(void);
731 void do_housekeeping(void);
732 void smart_goto(const StrBuf *);
733 void worker_entry(void);
734 void session_loop(void);
735 size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm);
736 void fmt_time(char *buf, size_t siz, time_t thetime);
737 void httpdate(char *buf, time_t thetime);
738 time_t httpdate_to_timestamp(StrBuf *buf);
739 void end_webcit_session(void);
740 void page_popup(void);
741 void http_redirect(const char *);
742 void clear_substs(struct wcsession *wc);
743 void clear_local_substs(void);
744
745
746
747 int lingering_close(int fd);
748 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
749 void remove_token(char *source, int parmnum, char separator);
750 StrBuf *load_mimepart(long msgnum, char *partnum);
751 void MimeLoadData(wc_mime_attachment *Mime);
752 void do_edit_vcard(long msgnum, char *partnum, 
753                    message_summary *VCMsg,
754                    wc_mime_attachment *VCAtt,
755                    const char *return_to, 
756                    const char *force_room);
757
758 void select_user_to_edit(const char *preselect);
759 void delete_user(char *);
760 void do_change_view(int);
761 void folders(void);
762
763
764
765 void offer_start_page(StrBuf *Target, WCTemplputParams *TP);
766 void convenience_page(const char *titlebarcolor, const char *titlebarmsg, const char *messagetext);
767 void output_html(const char *, int, int, StrBuf *, StrBuf *);
768 void do_listsub(void);
769 ssize_t write(int fd, const void *buf, size_t count);
770 void cal_process_attachment(wc_mime_attachment *Mime);
771 void do_tasks_view(void);
772 int calendar_summary_view(void);
773 void free_march_list(wcsession *wcf);
774 void display_rules_editor_inner_div(void);
775 void generate_uuid(char *);
776 void CtdlMakeTempFileName(char *, int);
777 void address_book_popup(void);
778 void begin_ajax_response(void);
779 void end_ajax_response(void);
780
781 void display_edit_task(void);
782 void display_edit_event(void);
783 icaltimezone *get_default_icaltimezone(void);
784 void display_icaltimetype_as_webform(struct icaltimetype *, char *, int);
785 void icaltime_from_webform(struct icaltimetype *result, char *prefix);
786 void icaltime_from_webform_dateonly(struct icaltimetype *result, char *prefix);
787 void partstat_as_string(char *buf, icalproperty *attendee);
788 icalcomponent *ical_encapsulate_subcomponent(icalcomponent *subcomp);
789 void check_attendee_availability(icalcomponent *supplied_vevent);
790 int ical_ctdl_is_overlap(
791                         struct icaltimetype t1start,
792                         struct icaltimetype t1end,
793                         struct icaltimetype t2start,
794                         struct icaltimetype t2end
795 );
796
797
798 extern char *months[];
799 extern char *days[];
800 int serv_read_binary(StrBuf *Ret, size_t total_len, StrBuf *Buf);
801 int StrBuf_ServGetBLOB(StrBuf *buf, long BlobSize);
802 int StrBuf_ServGetBLOBBuffered(StrBuf *buf, long BlobSize);
803 int read_server_text(StrBuf *Buf, long *nLines);
804 long locate_user_vcard_in_this_room(message_summary **VCMsg,
805                                     wc_mime_attachment **VCAtt);
806 void sleeeeeeeeeep(int);
807 void http_transmit_thing(const char *content_type, int is_static);
808 long unescape_input(char *buf);
809 void check_thread_pool_size(void);
810 void spawn_another_worker_thread(void);
811 void StrEndTab(StrBuf *Target, int tabnum, int num_tabs);
812 void StrBeginTab(StrBuf *Target, int tabnum, int num_tabs, StrBuf **Names);
813 void StrTabbedDialog(StrBuf *Target, int num_tabs, StrBuf *tabnames[]);
814 void tabbed_dialog(int num_tabs, char *tabnames[]);
815 void begin_tab(int tabnum, int num_tabs);
816 void end_tab(int tabnum, int num_tabs);
817 void str_wiki_index(char *s);
818 long guess_calhourformat(void);
819 int get_time_format_cached (void);
820 const char *get_selected_language(void);
821 void display_wiki_pagelist(void);
822 HashList *GetRoomListHashLKRA(StrBuf *Target, WCTemplputParams *TP);
823
824 #define DATEFMT_FULL 0
825 #define DATEFMT_BRIEF 1
826 #define DATEFMT_RAWDATE 2
827 #define DATEFMT_LOCALEDATE 3
828 void webcit_fmt_date(char *buf, size_t siz, time_t thetime, int Format);
829 void summary(void);
830
831 int is_mobile_ua(char *user_agent);
832
833 /* actual supported locales */
834 void TmplGettext(StrBuf *Target, WCTemplputParams *TP);
835 void offer_languages(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType);
836 void set_selected_language(const char *);
837 void go_selected_language(void);
838 void stop_selected_language(void);
839
840 #ifdef HAVE_OPENSSL
841 void init_ssl(void);
842 void endtls(void);
843 void ssl_lock(int mode, int n, const char *file, int line);
844 int starttls(int sock);
845 extern SSL_CTX *ssl_ctx;  
846 int client_read_sslbuffer(StrBuf *buf, int timeout);
847 void client_write_ssl(const StrBuf *Buf);
848 #endif
849
850 void utf8ify_rfc822_string(char **buf);
851
852 void begin_burst(void);
853 long end_burst(void);
854
855 void AppendImportantMessage(const char *pch, long len);
856
857 extern char *hourname[];        /* Names of hours (12am, 1am, etc.) */
858
859 void http_datestring(char *buf, size_t n, time_t xtime);
860
861
862 /* These should be empty, but we have them for testing */
863 #define DEFAULT_HTTPAUTH_USER   ""
864 #define DEFAULT_HTTPAUTH_PASS   ""
865
866
867 /* Exit codes 101 through 109 are initialization failures so we don't want to
868  * just keep respawning indefinitely.
869  */
870 #define WC_EXIT_BIND            101     /* Can't bind to the port */
871 #define WC_EXIT_SSL             102     /* Can't initialize SSL */
872
873
874 #define WC_TIMEFORMAT_NONE 0
875 #define WC_TIMEFORMAT_AMPM 1
876 #define WC_TIMEFORMAT_24 2
877
878 extern int time_to_die;                 /* Nonzero if server is shutting down */