* print the header of the tab into the comment before the tab starts.
[citadel.git] / webcit / webcit.h
1 /* $Id$
2  *
3  * Copyright (c) 1987-2010 by the citadel.org team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include "sysdep.h"
21 #include <sys/select.h>
22 #include <ctype.h>
23 #include <stdlib.h>
24 #ifdef HAVE_UNISTD_H
25 #include <unistd.h>
26 #endif
27 #include <stdio.h>
28 #ifdef HAVE_FCNTL_H
29 #include <fcntl.h>
30 #endif
31 #include <signal.h>
32 #include <sys/types.h>
33 #include <sys/wait.h>
34 #include <sys/socket.h>
35 #ifdef HAVE_SYS_TIME_H
36 #include <sys/time.h>
37 #endif
38 #include <sys/stat.h>
39 #ifdef HAVE_LIMITS_H
40 #include <limits.h>
41 #endif
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
44 #include <sys/un.h>
45 #include <netdb.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 #ifndef INADDR_NONE
57 #define INADDR_NONE 0xffffffff
58 #endif
59
60 #ifdef HAVE_ICONV
61 #include <iconv.h>
62 #endif
63
64 #ifdef ENABLE_NLS
65 #ifdef HAVE_XLOCALE_H
66 #include <xlocale.h>
67 #endif
68 #include <libintl.h>
69 #include <locale.h>
70 #define _(string)       gettext(string)
71 #else
72 #define _(string)       (string)
73 #endif
74
75 #define IsEmptyStr(a) ((a)[0] == '\0')
76 /*
77  * Uncomment to dump an HTTP trace to stderr
78 #define HTTP_TRACING 1
79  */
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, "Checkpoint: %s, %d\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          783             /* This version of WebCit */
142 #define MINIMUM_CIT_VERSION     781             /* min required Citadel ver */
143 #define LIBCITADEL_MIN          781             /* 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
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;         /* human readable node name of the Citadel server */
301         StrBuf *serv_fqdn;              /* fully quallified Domain Name (such as uncensored.citadel.org) */
302         StrBuf *serv_software;          /* What version does our connected citadel server use */
303         int serv_rev_level;             /* Whats the citadel server revision */
304         StrBuf *serv_bbs_city;          /* Geographic location of the Citadel server */
305         StrBuf *serv_sysadm;            /* Name of system administrator */
306         StrBuf *serv_moreprompt;        /* Whats the commandline textprompt */
307         int serv_supports_ldap;         /* is the server linked against an ldap tree for adresses? */
308         int serv_newuser_disabled;      /* Has the server disabled self-service new user creation? */
309         StrBuf *serv_default_cal_zone;  /* Default timezone for unspecified calendar items */
310         int serv_supports_sieve;        /* Does the server support Sieve mail filtering? */
311         int serv_fulltext_enabled;      /* Does the server have the full text index enabled? */
312         StrBuf *serv_svn_revision;      /* SVN revision of the server */
313         int serv_supports_openid;       /* Does the server support authentication via OpenID? */
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 *http_host;                      /* HTTP Host: header */
437         StrBuf *browser_host;
438         StrBuf *browser_language;
439         StrBuf *user_agent;
440         StrBuf *plainauth;
441         StrBuf *dav_ifmatch;
442
443         const WebcitHandler *Handler;
444 } HdrRefs;
445
446 typedef struct _ParsedHttpHdrs {
447         int http_sock;                          /* HTTP server socket */
448         const char *Pos;
449         StrBuf *ReadBuf;
450
451         StrBuf *c_username;
452         StrBuf *c_password;
453         StrBuf *c_roomname;
454         StrBuf *c_language;
455         StrBuf *this_page;                      /* URL of current page */
456         StrBuf *PlainArgs; 
457
458         HashList *urlstrings;                   /* variables passed to webcit in a URL */
459         HashList *HTTPHeaders;                  /* the headers the client sent us */
460         int nWildfireHeaders;                   /* how many wildfire headers did we already send? */
461
462         HdrRefs HR;
463 } ParsedHttpHdrs;
464
465
466 /*
467  * One of these is kept for each active Citadel session.
468  * HTTP transactions are bound to one at a time.
469  */
470 typedef struct wcsession wcsession;
471 struct wcsession {
472 /* infrastructural members */
473         wcsession *next;                        /* Linked list */
474         pthread_mutex_t SessionMutex;           /* mutex for exclusive access */
475         int wc_session;                         /* WebCit session ID */
476         int killthis;                           /* Nonzero == purge this session */
477         int is_mobile;                          /* Client is a handheld browser */
478         int ctdl_pid;                           /* Session ID on the Citadel server */
479         int nonce;                              /* session nonce (to prevent session riding) */
480         int SessionKey;
481
482 /* Session local Members */
483         int serv_sock;                          /* Client socket to Citadel server */
484         StrBuf *ReadBuf;                        /* here we keep our stuff while reading linebuffered from the server. */
485         StrBuf *MigrateReadLineBuf;             /* here we buffer legacy server read stuff */
486         const char *ReadPos;                    /* whats our read position in ReadBuf? */
487         int last_chat_seq;                      /* When in chat - last message seq# we saw */
488         time_t lastreq;                         /* Timestamp of most recent HTTP */
489         time_t last_pager_check;                /* last time we polled for instant msgs */
490         ServInfo *serv_info;                    /* Information about the citserver we're connected to */
491         int is_ajax;                            /* are we doing an ajax request? */
492
493 /* Request local Members */
494         StrBuf *CLineBuf;                       /* linebuffering client stuff */
495         ParsedHttpHdrs *Hdr;
496         StrBuf *WBuf;                           /* Our output buffer */
497         StrBuf *HBuf;                           /* Our HeaderBuffer */
498         StrBuf *WFBuf;                          /* Wildfire error logging buffer */
499
500         HashList *vars;                         /* HTTP variable substitutions for this page */
501         StrBuf *trailing_javascript;            /* extra javascript to be appended to page */
502         char ImportantMessage[SIZ];
503         StrBuf *ImportantMsg;
504         HashList *Directory;                    /* Parts of the directory URL in snippets */
505         const Floor *CurrentFloor;              /**< when Parsing REST, which floor are we on? */
506
507 /* accounting */
508         StrBuf *wc_username;                    /* login name of current user */
509         StrBuf *wc_fullname;                    /* Screen name of current user */
510         StrBuf *wc_password;                    /* Password of current user */
511         StrBuf *httpauth_pass;                  /* only for GroupDAV sessions */
512         int axlevel;                            /* this user's access level */
513         int is_aide;                            /* nonzero == this user is an Aide */
514         int connected;                          /* nonzero == we are connected to Citadel */
515         int logged_in;                          /* nonzero == we are logged in  */
516         int need_regi;                          /* This user needs to register. */
517         int need_vali;                          /* New users require validation. */
518
519 /* Preferences */
520         StrBuf *cs_inet_email;                  /* User's preferred Internet addr. */
521         HashList *hash_prefs;                   /* WebCit preferences for this user */
522         StrBuf *DefaultCharset;                 /* Charset the user preferes */
523         int downloaded_prefs;                   /* Has the client download its prefs yet? */
524         int SavePrefsToServer;                  /* Should we save our preferences to the server at the end of the request? */
525         int selected_language;                  /* Language selected by user */
526         int time_format_cache;                  /* which timeformat does our user like? */
527
528         folder CurRoom;                         /* information about our current room */
529         const folder *ThisRoom;                 /* if REST found a room, remember it here. */
530 /* next/previous room thingabob */
531         struct march *march;                    /* march mode room list */
532         char ugname[128];                       /* where does 'ungoto' take us */
533         long uglsn;                             /* last seen message number for ungoto */
534
535 /* Uploading; mime attachments for composing messages */
536         HashList *attachments;                  /* list of attachments for 'enter message' */
537         int upload_length;                      /* content length of http-uploaded data */
538         StrBuf *upload;                         /* pointer to http-uploaded data */
539         StrBuf *upload_filename;                /* filename of http-uploaded data */
540         char upload_content_type[256];          /* content type of http-uploaded data */
541
542         int remember_new_mail;                  /* last count of new mail messages */
543
544 /* Roomiew control */
545         HashList *Floors;                       /* floors our citserver has hashed numeric for quicker access*/
546         HashList *FloorsByName;                 /* same but hashed by its name */
547         HashList *Rooms;                        /* our directory structure as loaded by LKRA */
548         HashList *summ;                         /* list of messages for mailbox summary view */
549   /** Perhaps these should be within a struct instead */
550         long startmsg;                          /* message number to start at */
551         long maxmsgs;                           /* maximum messages to display */
552         long num_displayed;                     /* number of messages actually displayed */
553         HashList *disp_cal_items;               /* sorted list of calendar items; startdate is the sort criteria. */
554
555
556         char last_chat_user[256];
557
558 /* Iconbar controls */
559         struct __ofolder *cache_fold;           /* cache the iconbar room list */
560         int cache_max_folders;
561         int cache_num_floors;
562         time_t cache_timestamp;
563         long *IBSettingsVec;                    /* which icons should be shown / not shown? */
564         const StrBuf *floordiv_expanded;        /* which floordiv currently expanded */
565
566
567
568 /* cache stuff for templates. TODO: find a smartrer way */
569         HashList *ServCfg;                      /* cache our server config for editing */
570         HashList *InetCfg;                      /* Our inet server config for editing */
571         ExpirePolicy Policy[maxpolicy];
572 };
573
574
575 typedef void (*Header_Evaluator)(StrBuf *Line, ParsedHttpHdrs *hdr);
576
577 typedef struct _HttpHeader {
578         Header_Evaluator H;
579         StrBuf *Val;
580         int HaveEvaluator;
581 } OneHttpHeader;
582
583 void RegisterHeaderHandler(const char *Name, long Len, Header_Evaluator F);
584
585
586 enum {
587         S_SHUTDOWN,
588         S_SPAWNER,
589         MAX_SEMAPHORES
590 };
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
623 void InitialiseSemaphores(void);
624 void begin_critical_section(int which_one);
625 void end_critical_section(int which_one);
626
627 void stuff_to_cookie(int unset_cookie);
628
629 void cookie_to_stuff(StrBuf *cookie,
630                 int *session,
631                 StrBuf *user,
632                 StrBuf *pass,
633                 StrBuf *room,
634                 StrBuf *language
635 );
636 void locate_host(StrBuf *TBuf, int);
637 void become_logged_in(const StrBuf *user, const StrBuf *pass, StrBuf *serv_response);
638 void openid_manual_create(void);
639 void display_login(void);
640 void display_openids(void);
641 void do_welcome(void);
642 void do_logout(void);
643 void display_main_menu(void);
644 void display_aide_menu(void);
645 void slrp_highest(void);
646 ServInfo *get_serv_info(StrBuf *, StrBuf *);
647 void RegisterEmbeddableMimeType(const char *MimeType, long MTLen, int Priority);
648 void CreateMimeStr(void);
649 int GetConnected(void);
650 void DeleteServInfo(ServInfo **FreeMe);
651 int uds_connectsock(char *);
652 int tcp_connectsock(char *, int);
653 int serv_getln(char *strbuf, int bufsize);
654 int StrBuf_ServGetln(StrBuf *buf);
655 int GetServerStatus(StrBuf *Line, long* FullState);
656 void serv_puts(const char *string);
657 void who(void);
658
659 void ajax_mini_calendar(void);
660 void fmout(char *align);
661 void _fmout(StrBuf *Targt, char *align);
662 void FmOut(StrBuf *Target, char *align, StrBuf *Source);
663 void pullquote_fmout(void);
664 void wDumpContent(int);
665
666
667
668 void UrlescPutStrBuf(const StrBuf *strbuf);
669 void StrEscPuts(const StrBuf *strbuf);
670 void StrEscputs1(const StrBuf *strbuf, int nbsp, int nolinebreaks);
671
672 void urlescputs(const char *);
673 void hurlescputs(const char *);
674 void jsesc(char *, size_t, char *);
675 void jsescputs(char *);
676 void output_headers(    int do_httpheaders,
677                         int do_htmlhead,
678                         int do_room_banner,
679                         int unset_cookies,
680                         int suppress_check,
681                         int cache);
682 void output_custom_content_header(const char *ctype);
683
684 #ifdef UBER_VERBOSE_DEBUGGING
685 #define wc_printf(...) wcc_printf(__FILE__, __FUNCTION__, __LINE__, __VA_ARGS__)
686 void wcc_printf(const char *FILE, const char *FUNCTION, long LINE, const char *format, ...);
687 #else 
688 void wc_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
689 #endif
690
691 void hprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
692 void output_static(const char* What);
693
694 long stresc(char *target, long tSize, char *strbuf, int nbsp, int nolinebreaks);
695 void escputs(const char *strbuf);
696 void url(char *buf, size_t bufsize);
697 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf);
698 void escputs1(const char *strbuf, int nbsp, int nolinebreaks);
699 void msgesc(char *target, size_t tlen, char *strbuf);
700 void msgescputs(char *strbuf);
701 void msgescputs1(char *strbuf);
702 void dump_vars(void);
703
704 void do_addrbook_view(addrbookent *addrbook, int num_ab);
705 void fetch_ab_name(message_summary *Msg, char **namebuf);
706 void display_vcard(StrBuf *Target, wc_mime_attachment *Mime, char alpha, int full, char **storename, long msgnum);
707 void jsonMessageList(void);
708 void new_summary_view(void);
709 void text_to_server(char *ptr);
710 void text_to_server_qp(char *ptr);
711 void display_success(char *);
712 void CheckAuthBasic(ParsedHttpHdrs *hdr);
713 void GetAuthBasic(ParsedHttpHdrs *hdr);
714 void server_to_text(void);
715 void save_edit(char *description, char *enter_cmd, int regoto);
716 void display_edit(char *description, char *check_cmd,
717                   char *read_cmd, char *save_cmd, int with_room_banner);
718 long gotoroom(const StrBuf *gname);
719 void remove_march(const StrBuf *aaa);
720 void dotskip(void);
721 void validate(void);
722 void display_graphics_upload(char *, char *, char *);
723 void do_graphics_upload(char *upl_cmd);
724 void serv_write(const char *buf, int nbytes);
725 void serv_putbuf(const StrBuf *string);
726 void serv_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
727 void shutdown_sessions(void);
728 void do_housekeeping(void);
729 void smart_goto(const StrBuf *);
730 void worker_entry(void);
731 void session_loop(void);
732 size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm);
733 void fmt_time(char *buf, size_t siz, time_t thetime);
734 void httpdate(char *buf, time_t thetime);
735 time_t httpdate_to_timestamp(StrBuf *buf);
736 void end_webcit_session(void);
737 void page_popup(void);
738 void http_redirect(const char *);
739 void clear_substs(struct wcsession *wc);
740 void clear_local_substs(void);
741
742
743
744 int lingering_close(int fd);
745 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
746 void remove_token(char *source, int parmnum, char separator);
747 StrBuf *load_mimepart(long msgnum, char *partnum);
748 void MimeLoadData(wc_mime_attachment *Mime);
749 void do_edit_vcard(long msgnum, char *partnum, 
750                    message_summary *VCMsg,
751                    wc_mime_attachment *VCAtt,
752                    const char *return_to, 
753                    const char *force_room);
754
755 void select_user_to_edit(const char *preselect);
756 void delete_user(char *);
757 void do_change_view(int);
758 void folders(void);
759
760
761
762 void offer_start_page(StrBuf *Target, WCTemplputParams *TP);
763 void convenience_page(const char *titlebarcolor, const char *titlebarmsg, const char *messagetext);
764 void output_html(const char *, int, int, StrBuf *, StrBuf *);
765 void do_listsub(void);
766 ssize_t write(int fd, const void *buf, size_t count);
767 void cal_process_attachment(wc_mime_attachment *Mime);
768 void do_tasks_view(void);
769 int calendar_summary_view(void);
770 void free_march_list(wcsession *wcf);
771 void display_rules_editor_inner_div(void);
772 void generate_uuid(char *);
773 void CtdlMakeTempFileName(char *, int);
774 void address_book_popup(void);
775 void begin_ajax_response(void);
776 void end_ajax_response(void);
777 void burn_folder_cache(time_t age);
778
779 void display_edit_task(void);
780 void display_edit_event(void);
781 icaltimezone *get_default_icaltimezone(void);
782 void display_icaltimetype_as_webform(struct icaltimetype *, char *, int);
783 void icaltime_from_webform(struct icaltimetype *result, char *prefix);
784 void icaltime_from_webform_dateonly(struct icaltimetype *result, char *prefix);
785 void partstat_as_string(char *buf, icalproperty *attendee);
786 icalcomponent *ical_encapsulate_subcomponent(icalcomponent *subcomp);
787 void check_attendee_availability(icalcomponent *supplied_vevent);
788 int ical_ctdl_is_overlap(
789                         struct icaltimetype t1start,
790                         struct icaltimetype t1end,
791                         struct icaltimetype t2start,
792                         struct icaltimetype t2end
793 );
794
795
796 extern char *months[];
797 extern char *days[];
798 int serv_read_binary(StrBuf *Ret, size_t total_len, StrBuf *Buf);
799 int StrBuf_ServGetBLOB(StrBuf *buf, long BlobSize);
800 int StrBuf_ServGetBLOBBuffered(StrBuf *buf, long BlobSize);
801 int read_server_text(StrBuf *Buf, long *nLines);
802 long locate_user_vcard_in_this_room(message_summary **VCMsg,
803                                     wc_mime_attachment **VCAtt);
804 void sleeeeeeeeeep(int);
805 void http_transmit_thing(const char *content_type, int is_static);
806 long unescape_input(char *buf);
807 void check_thread_pool_size(void);
808 void spawn_another_worker_thread(void);
809 void StrEndTab(StrBuf *Target, int tabnum, int num_tabs);
810 void StrBeginTab(StrBuf *Target, int tabnum, int num_tabs, StrBuf **Names);
811 void StrTabbedDialog(StrBuf *Target, int num_tabs, StrBuf *tabnames[]);
812 void tabbed_dialog(int num_tabs, char *tabnames[]);
813 void begin_tab(int tabnum, int num_tabs);
814 void end_tab(int tabnum, int num_tabs);
815 void str_wiki_index(char *s);
816 long guess_calhourformat(void);
817 int get_time_format_cached (void);
818 const char *get_selected_language(void);
819 void display_wiki_pagelist(void);
820
821 #define DATEFMT_FULL 0
822 #define DATEFMT_BRIEF 1
823 #define DATEFMT_RAWDATE 2
824 #define DATEFMT_LOCALEDATE 3
825 void webcit_fmt_date(char *buf, size_t siz, time_t thetime, int Format);
826 void summary(void);
827
828 int is_mobile_ua(char *user_agent);
829
830 void embed_room_banner(void);
831 HashList *GetFloorListHash(StrBuf *Target, WCTemplputParams *TP);
832 HashList *GetRoomListHash(StrBuf *Target, WCTemplputParams *TP);
833 int SortRoomsByListOrder(const void *room1, const void *room2);
834
835 /* actual supported locales */
836 void TmplGettext(StrBuf *Target, WCTemplputParams *TP);
837 void offer_languages(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType);
838 void set_selected_language(const char *);
839 void go_selected_language(void);
840 void stop_selected_language(void);
841
842 #ifdef HAVE_OPENSSL
843 void init_ssl(void);
844 void endtls(void);
845 void ssl_lock(int mode, int n, const char *file, int line);
846 int starttls(int sock);
847 extern SSL_CTX *ssl_ctx;  
848 int client_read_sslbuffer(StrBuf *buf, int timeout);
849 void client_write_ssl(const StrBuf *Buf);
850 #endif
851
852 void utf8ify_rfc822_string(char **buf);
853
854 void begin_burst(void);
855 long end_burst(void);
856
857 void AppendImportantMessage(const char *pch, long len);
858
859 extern char *hourname[];        /* Names of hours (12am, 1am, etc.) */
860
861 void http_datestring(char *buf, size_t n, time_t xtime);
862
863
864 /* These should be empty, but we have them for testing */
865 #define DEFAULT_HTTPAUTH_USER   ""
866 #define DEFAULT_HTTPAUTH_PASS   ""
867
868
869 /* Exit codes 101 through 109 are initialization failures so we don't want to
870  * just keep respawning indefinitely.
871  */
872 #define WC_EXIT_BIND            101     /* Can't bind to the port */
873 #define WC_EXIT_SSL             102     /* Can't initialize SSL */
874
875
876 #define WC_TIMEFORMAT_NONE 0
877 #define WC_TIMEFORMAT_AMPM 1
878 #define WC_TIMEFORMAT_24 2
879
880 extern int time_to_die;                 /* Nonzero if server is shutting down */