* Change to main server loop. All threads block on accept() instead of using a mutex...
[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
118 #define CALENDAR_ROOM_NAME      "Calendar"
119 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
120
121 #define SIZ                     4096            /* generic buffer size */
122
123 #define TRACE fprintf(stderr, "Checkpoint: %s, %d\n", __FILE__, __LINE__)
124
125 #define SLEEPING                180             /* TCP connection timeout */
126 #define WEBCIT_TIMEOUT          900             /* WebCit session timeout */
127 #define PORT_NUM                2000            /* port number to listen on */
128 #define DEVELOPER_ID            0
129 #define CLIENT_ID               4
130 #define CLIENT_VERSION          780             /* This version of WebCit */
131 #define MINIMUM_CIT_VERSION     780             /* min required Citadel ver */
132 #define LIBCITADEL_MIN          780             /* min required libcitadel ver */
133 #define DEFAULT_HOST            "localhost"     /* Default Citadel server */
134 #define DEFAULT_PORT            "504"
135 #define TARGET                  "webcit01"      /* Target for inline URL's */
136 #define HOUSEKEEPING            15              /* Housekeeping frequency */
137 #define MIN_WORKER_THREADS      5
138 #define MAX_WORKER_THREADS      250
139 #define LISTEN_QUEUE_LENGTH     100             /* listen() backlog queue */
140
141 #define USERCONFIGROOM          "My Citadel Config"
142 #define DEFAULT_MAXMSGS         20
143
144
145 #ifdef LIBCITADEL_VERSION_NUMBER
146 #if LIBCITADEL_VERSION_NUMBER < LIBCITADEL_MIN
147 #error libcitadel is too old.  Please upgrade it before continuing.
148 #endif
149 #endif
150
151
152 /*
153  * Room flags (from Citadel)
154  *
155  * bucket one...
156  */
157 #define QR_PERMANENT    1               /* Room does not purge          */
158 #define QR_INUSE        2               /* Set if in use, clear if avail        */
159 #define QR_PRIVATE      4               /* Set for any type of private room     */
160 #define QR_PASSWORDED   8               /* Set if there's a password too        */
161 #define QR_GUESSNAME    16              /* Set if it's a guessname room */
162 #define QR_DIRECTORY    32              /* Directory room                       */
163 #define QR_UPLOAD       64              /* Allowed to upload                    */
164 #define QR_DOWNLOAD     128             /* Allowed to download          */
165 #define QR_VISDIR       256             /* Visible directory                    */
166 #define QR_ANONONLY     512             /* Anonymous-Only room          */
167 #define QR_ANONOPT      1024            /* Anonymous-Option room                */
168 #define QR_NETWORK      2048            /* Shared network room          */
169 #define QR_PREFONLY     4096            /* Preferred status needed to enter     */
170 #define QR_READONLY     8192            /* Aide status required to post */
171 #define QR_MAILBOX      16384           /* Set if this is a private mailbox     */
172
173 /*
174  * bucket two...
175  */
176 #define QR2_SYSTEM      1               /* System room; hide by default */
177 #define QR2_SELFLIST    2               /* Self-service mailing list mgmt       */
178 #define QR2_COLLABDEL   4               /* Anyone who can post can also delete*/
179 #define QR2_SUBJECTREQ  8               /* Subject strongly recommended */
180 #define QR2_SMTP_PUBLIC 16              /* smtp public postable room */
181 #define QR2_MODERATED   32              /* Listservice aide has to permit posts  */
182
183 /*
184  * user/room access
185  */
186 #define UA_KNOWN        2
187 #define UA_GOTOALLOWED  4
188 #define UA_HASNEWMSGS   8
189 #define UA_ZAPPED       16
190 #define UA_POSTALLOWED          32
191 #define UA_ADMINALLOWED         64
192 #define UA_DELETEALLOWED        128
193 #define UA_ISTRASH              256 /* Only available in room view... */
194
195
196 /*
197  * User flags (from Citadel)
198  */
199 #define US_NEEDVALID    1               /* User needs to be validated           */
200 #define US_PERM         4               /* Permanent user                       */
201 #define US_LASTOLD      16              /* Print last old message with new      */
202 #define US_EXPERT       32              /* Experienced user                     */
203 #define US_UNLISTED     64              /* Unlisted userlog entry               */
204 #define US_NOPROMPT     128             /* Don't prompt after each message      */
205 #define US_PROMPTCTL    256             /* <N>ext & <S>top work at prompt       */
206 #define US_DISAPPEAR    512             /* Use "disappearing msg prompts"       */
207 #define US_REGIS        1024            /* Registered user                      */
208 #define US_PAGINATOR    2048            /* Pause after each screen of text      */
209 #define US_INTERNET     4096            /* Internet mail privileges             */
210 #define US_FLOORS       8192            /* User wants to see floors             */
211 #define US_COLOR        16384           /* User wants ANSI color support        */
212 #define US_USER_SET     (US_LASTOLD | US_EXPERT | US_UNLISTED | \
213                         US_NOPROMPT | US_DISAPPEAR | US_PAGINATOR | \
214                         US_FLOORS | US_COLOR | US_PROMPTCTL )
215
216
217
218
219 #define MAJORCODE(a) (((int)(a / 100) ) * 100)
220
221 #define LISTING_FOLLOWS 100
222 #define CIT_OK          200     
223 #define MORE_DATA       300
224 #define SEND_LISTING    400
225 #define ERROR           500
226 #define BINARY_FOLLOWS  600
227 #define SEND_BINARY     700
228 #define START_CHAT_MODE 800
229 #define ASYNC_MSG       900
230
231 #define MINORCODE(a) (a % 100)
232 #define ASYNC_GEXP                      02      
233 #define INTERNAL_ERROR                  10      
234 #define TOO_BIG                         11      
235 #define ILLEGAL_VALUE                   12      
236 #define NOT_LOGGED_IN                   20      
237 #define CMD_NOT_SUPPORTED               30      
238 #define SERVER_SHUTTING_DOWN            31      
239 #define PASSWORD_REQUIRED               40      
240 #define ALREADY_LOGGED_IN               41      
241 #define USERNAME_REQUIRED               42      
242 #define HIGHER_ACCESS_REQUIRED          50      
243 #define MAX_SESSIONS_EXCEEDED           51      
244 #define RESOURCE_BUSY                   52      
245 #define RESOURCE_NOT_OPEN               53      
246 #define NOT_HERE                        60      
247 #define INVALID_FLOOR_OPERATION         61      
248 #define NO_SUCH_USER                    70      
249 #define FILE_NOT_FOUND                  71      
250 #define ROOM_NOT_FOUND                  72      
251 #define NO_SUCH_SYSTEM                  73      
252 #define ALREADY_EXISTS                  74      
253 #define MESSAGE_NOT_FOUND               75
254 /*
255  * NLI is the string that shows up in a who's online listing for sessions
256  * that are active, but for which no user has yet authenticated.
257  */
258 #define NLI     "(not logged in)"
259
260 /*
261  * Expiry policy for the autopurger
262  */
263 #define EXPIRE_NEXTLEVEL        0       /* Inherit expiration policy    */
264 #define EXPIRE_MANUAL           1       /* Don't expire messages at all */
265 #define EXPIRE_NUMMSGS          2       /* Keep only latest n messages  */
266 #define EXPIRE_AGE              3       /* Expire messages after n days */
267 typedef struct __ExpirePolicy {
268         int loaded; /* has this been loaded from the server? */
269         int expire_mode;
270         int expire_value;
271 }ExpirePolicy;
272 void LoadExpirePolicy(GPEXWhichPolicy which);
273 void SaveExpirePolicyFromHTTP(GPEXWhichPolicy which);
274
275 /*
276  * Linked list of session variables encoded in an x-www-urlencoded content type
277  */
278 typedef struct urlcontent urlcontent;
279 struct urlcontent {
280         char url_key[32];               /* key */
281         StrBuf *url_data;               /* value */
282 };
283
284 /*
285  * Information about the Citadel server to which we are connected
286  */ 
287 typedef struct _serv_info {
288         int serv_pid;                   /* Process ID of the Citadel server */
289         StrBuf *serv_nodename;          /* Node name of the Citadel server */
290         StrBuf *serv_humannode;         /* human readable node name of the Citadel server */
291         StrBuf *serv_fqdn;              /* fully quallified Domain Name (such as uncensored.citadel.org) */
292         StrBuf *serv_software;          /* What version does our connected citadel server use */
293         int serv_rev_level;             /* Whats the citadel server revision */
294         StrBuf *serv_bbs_city;          /* Geographic location of the Citadel server */
295         StrBuf *serv_sysadm;            /* Name of system administrator */
296         StrBuf *serv_moreprompt;        /* Whats the commandline textprompt */
297         int serv_supports_ldap;         /* is the server linked against an ldap tree for adresses? */
298         int serv_newuser_disabled;      /* Has the server disabled self-service new user creation? */
299         StrBuf *serv_default_cal_zone;  /* Default timezone for unspecified calendar items */
300         int serv_supports_sieve;        /* Does the server support Sieve mail filtering? */
301         int serv_fulltext_enabled;      /* Does the server have the full text index enabled? */
302         StrBuf *serv_svn_revision;      /* SVN revision of the server */
303         int serv_supports_openid;       /* Does the server support authentication via OpenID? */
304 } ServInfo;
305
306
307 typedef struct _disp_cal {                                      
308         icalcomponent *cal;             /* cal items for display */
309         long cal_msgnum;                /* cal msgids for display */
310         char *from;                     /* owner of this component */
311         int unread;                     /* already seen by the user? */
312
313         time_t event_start;
314         time_t event_end;
315
316         int multi_day_event;
317         int is_repeat;
318         icalcomponent *SortBy;          /* cal items for display */
319         icalproperty_status Status;
320 } disp_cal;                                             
321
322 typedef struct _IcalEnumMap {
323         const char *Name;
324         long NameLen;
325         icalproperty_kind map;
326 } IcalEnumMap;
327
328 /*
329  * Address book entry (keep it short and sweet, it's just a quickie lookup
330  * which we can use to get to the real meat and bones later)
331  */
332 typedef struct _addrbookent {
333         char ab_name[64];       /* name string */
334         long ab_msgnum;         /* message number of address book entry */
335 } addrbookent;
336
337
338 #define AJAX (1<<0)
339 #define ANONYMOUS (1<<1)
340 #define NEED_URL (1<<2)
341 #define XHTTP_COMMANDS (1<<3)
342 #define BOGUS (1<<4)
343 #define URLNAMESPACE (1<<4)
344 #define LOGCHATTY (1<<5)
345 #define COOKIEUNNEEDED (1<<6)
346 #define ISSTATIC (1<<7)
347 #define FORCE_SESSIONCLOSE (1<<8)
348 #define PARSE_REST_URL (1<<9)
349 #define PROHIBIT_STARTPAGE (1<<10)
350
351 typedef enum _RESTDispatchID {
352         ExistsID,
353         PutID,
354         DeleteID
355 } RESTDispatchID;
356
357 typedef int (*WebcitRESTDispatchID)(RESTDispatchID WhichAction, int IgnoreFloor);
358 typedef void (*WebcitHandlerFunc)(void);
359 typedef struct  _WebcitHandler{
360         WebcitHandlerFunc F;
361         WebcitRESTDispatchID RID;
362         long Flags;
363         StrBuf *Name;
364         StrBuf *DisplayName;
365 } WebcitHandler;
366
367
368 void WebcitAddUrlHandler(const char * UrlString, long UrlSLen, const char *DisplayName, long dslen, WebcitHandlerFunc F, long Flags);
369
370 typedef struct _headereval {
371         ExamineMsgHeaderFunc evaluator;
372         int Type;
373 } headereval;
374
375
376 struct attach_link {
377         char partnum[32];
378         char html[1024];
379 };
380
381
382 enum {
383         eUp,
384         eDown,
385         eNone
386 };
387
388 enum {
389         eGET,
390         ePOST,
391         eOPTIONS,
392         ePROPFIND,
393         ePUT,
394         eDELETE,
395         eHEAD,
396         eMOVE,
397         eCOPY,
398         eNONE
399 };
400 const char *ReqStrs[eNONE];
401
402 #define NO_AUTH 0
403 #define AUTH_COOKIE 1
404 #define AUTH_BASIC 2
405
406
407
408 typedef struct _HdrRefs {
409         long eReqType;                          /* HTTP method */
410         int desired_session;
411         int SessionKey;
412
413         int got_auth;
414         int DontNeedAuth;
415         long ContentLength;
416         time_t if_modified_since;
417         int gzip_ok;                            /* Nonzero if Accept-encoding: gzip */
418         int prohibit_caching;
419         int dav_depth;
420         int Static;
421
422         /* these are references into Hdr->HTTPHeaders, so we don't need to free them. */
423         StrBuf *ContentType;
424         StrBuf *RawCookie;
425         StrBuf *ReqLine;
426         StrBuf *http_host;                      /* HTTP Host: header */
427         StrBuf *browser_host;
428         StrBuf *browser_language;
429         StrBuf *user_agent;
430         StrBuf *plainauth;
431         StrBuf *dav_ifmatch;
432
433         const WebcitHandler *Handler;
434 } HdrRefs;
435
436 typedef struct _ParsedHttpHdrs {
437         int http_sock;                          /* HTTP server socket */
438         const char *Pos;
439         StrBuf *ReadBuf;
440
441         StrBuf *c_username;
442         StrBuf *c_password;
443         StrBuf *c_roomname;
444         StrBuf *c_language;
445         StrBuf *this_page;                      /* URL of current page */
446         StrBuf *PlainArgs; 
447
448         HashList *urlstrings;                   /* variables passed to webcit in a URL */
449         HashList *HTTPHeaders;                  /* the headers the client sent us */
450         int nWildfireHeaders;                   /* how many wildfire headers did we already send? */
451
452         HdrRefs HR;
453 } ParsedHttpHdrs;
454
455
456 /*
457  * One of these is kept for each active Citadel session.
458  * HTTP transactions are bound to one at a time.
459  */
460 typedef struct wcsession wcsession;
461 struct wcsession {
462 /* infrastructural members */
463         wcsession *next;                        /* Linked list */
464         pthread_mutex_t SessionMutex;           /* mutex for exclusive access */
465         int wc_session;                         /* WebCit session ID */
466         int killthis;                           /* Nonzero == purge this session */
467         int is_mobile;                          /* Client is a handheld browser */
468         int ctdl_pid;                           /* Session ID on the Citadel server */
469         int nonce;                              /* session nonce (to prevent session riding) */
470         int SessionKey;
471
472 /* Session local Members */
473         int serv_sock;                          /* Client socket to Citadel server */
474         StrBuf *ReadBuf;                        /* here we keep our stuff while reading linebuffered from the server. */
475         StrBuf *MigrateReadLineBuf;             /* here we buffer legacy server read stuff */
476         const char *ReadPos;                    /* whats our read position in ReadBuf? */
477         int last_chat_seq;                      /* When in chat - last message seq# we saw */
478         time_t lastreq;                         /* Timestamp of most recent HTTP */
479         time_t last_pager_check;                /* last time we polled for instant msgs */
480         ServInfo *serv_info;                    /* Information about the citserver we're connected to */
481         int is_ajax;                            /* are we doing an ajax request? */
482
483 /* Request local Members */
484         StrBuf *CLineBuf;                       /* linebuffering client stuff */
485         ParsedHttpHdrs *Hdr;
486         StrBuf *WBuf;                           /* Our output buffer */
487         StrBuf *HBuf;                           /* Our HeaderBuffer */
488         StrBuf *WFBuf;                          /* Wildfire error logging buffer */
489
490         HashList *vars;                         /* HTTP variable substitutions for this page */
491         StrBuf *trailing_javascript;            /* extra javascript to be appended to page */
492         char ImportantMessage[SIZ];
493         StrBuf *ImportantMsg;
494         HashList *Directory;                    /* Parts of the directory URL in snippets */
495         const Floor *CurrentFloor;              /**< when Parsing REST, which floor are we on? */
496
497 /* accounting */
498         StrBuf *wc_username;                    /* login name of current user */
499         StrBuf *wc_fullname;                    /* Screen name of current user */
500         StrBuf *wc_password;                    /* Password of current user */
501         StrBuf *httpauth_pass;                  /* only for GroupDAV sessions */
502         int axlevel;                            /* this user's access level */
503         int is_aide;                            /* nonzero == this user is an Aide */
504         int is_room_aide;                       /* nonzero == this user is a Room Aide in this room */
505         int connected;                          /* nonzero == we are connected to Citadel */
506         int logged_in;                          /* nonzero == we are logged in  */
507         int need_regi;                          /* This user needs to register. */
508         int need_vali;                          /* New users require validation. */
509
510 /* Preferences */
511         StrBuf *cs_inet_email;                  /* User's preferred Internet addr. */
512         char reply_to[512];                     /* reply-to address */
513         HashList *hash_prefs;                   /* WebCit preferences for this user */
514         StrBuf *DefaultCharset;                 /* Charset the user preferes */
515         int downloaded_prefs;                   /* Has the client download its prefs yet? */
516         int SavePrefsToServer;                  /* Should we save our preferences to the server at the end of the request? */
517         int selected_language;                  /* Language selected by user */
518         int time_format_cache;                  /* which timeformat does our user like? */
519
520 /* current room related */
521 /*      StrBuf *wc_roomname;                    / * Room we are currently in */
522 /*      unsigned room_flags;                    / * flags associated with the current room */
523 /*      unsigned room_flags2;                   / * flags associated with the current room */
524 /*      int wc_view;                            / * view for the current room */
525 /*      int wc_default_view;                    / * default view for the current room */
526 /*      int wc_is_trash;                        / * nonzero == current room is a Trash folder */
527 /*      int wc_floor;                           / * floor number of current room */
528 /*      int is_mailbox;                         / * the current room is a private mailbox */
529
530         folder CurRoom;                         /* information about our current room */
531         const folder *ThisRoom;                 /* if REST found a room, remember it here. */
532 /* next/previous room thingabob */
533         struct march *march;                    /* march mode room list */
534         char ugname[128];                       /* where does 'ungoto' take us */
535         long uglsn;                             /* last seen message number for ungoto */
536
537 /* Uploading; mime attachments for composing messages */
538         HashList *attachments;                  /* list of attachments for 'enter message' */
539         int upload_length;                      /* content length of http-uploaded data */
540         StrBuf *upload;                         /* pointer to http-uploaded data */
541         char upload_filename[PATH_MAX];         /* filename of http-uploaded data */
542         char upload_content_type[256];          /* content type of http-uploaded data */
543
544         int new_mail;                           /* user has new mail waiting */
545         int remember_new_mail;                  /* last count of new mail messages */
546
547 /* Roomiew control */
548         HashList *Floors;                       /* floors our citserver has hashed numeric for quicker access*/
549         HashList *FloorsByName;                 /* same but hashed by its name */
550         HashList *Rooms;                        /* our directory structure as loaded by LKRA */
551         HashList *summ;                         /* list of messages for mailbox summary view */
552   /** Perhaps these should be within a struct instead */
553         long startmsg;                          /* message number to start at */
554         long maxmsgs;                           /* maximum messages to display */
555         long num_displayed;                     /* number of messages actually displayed */
556         HashList *disp_cal_items;               /* sorted list of calendar items; startdate is the sort criteria. */
557
558
559         char last_chat_user[256];
560
561 /* Iconbar controls */
562         struct __ofolder *cache_fold;           /* cache the iconbar room list */
563         int cache_max_folders;
564         int cache_num_floors;
565         time_t cache_timestamp;
566         long *IBSettingsVec;                    /* which icons should be shown / not shown? */
567         const StrBuf *floordiv_expanded;        /* which floordiv currently expanded */
568
569
570
571 /* cache stuff for templates. TODO: find a smartrer way */
572         HashList *ServCfg;                      /* cache our server config for editing */
573         HashList *InetCfg;                      /* Our inet server config for editing */
574         ExpirePolicy Policy[maxpolicy];
575 };
576
577
578 typedef void (*Header_Evaluator)(StrBuf *Line, ParsedHttpHdrs *hdr);
579
580 typedef struct _HttpHeader {
581         Header_Evaluator H;
582         StrBuf *Val;
583         int HaveEvaluator;
584 } OneHttpHeader;
585
586 void RegisterHeaderHandler(const char *Name, long Len, Header_Evaluator F);
587
588
589 enum {
590         S_SHUTDOWN,
591         MAX_SEMAPHORES
592 };
593
594
595 #ifndef num_parms
596 #define num_parms(source)               num_tokens(source, '|') 
597 #endif
598
599 /* Per-session data */
600 #define WC ((struct wcsession *)pthread_getspecific(MyConKey))
601 extern pthread_key_t MyConKey;
602
603 /* Per-thread SSL context */
604 #ifdef HAVE_OPENSSL
605 #define THREADSSL ((SSL *)pthread_getspecific(ThreadSSL))
606 extern pthread_key_t ThreadSSL;
607 extern char ctdl_key_dir[PATH_MAX];
608 extern char file_crpt_file_key[PATH_MAX];
609 extern char file_crpt_file_csr[PATH_MAX];
610 extern char file_crpt_file_cer[PATH_MAX];
611 #endif
612
613 extern char floorlist[128][SIZ];
614 extern char *axdefs[];
615 extern char *ctdlhost, *ctdlport;
616 extern int http_port;
617 extern char *server_cookie;
618 extern int is_https;
619 extern int setup_wizard;
620 extern char wizard_filename[];
621 extern int follow_xff;
622 extern int num_threads;
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 do_welcome(void);
643 void do_logout(void);
644 void display_main_menu(void);
645 void display_aide_menu(void);
646 void display_advanced_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 void who_inner_div(void);
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
670 void UrlescPutStrBuf(const StrBuf *strbuf);
671 void StrEscPuts(const StrBuf *strbuf);
672 void StrEscputs1(const StrBuf *strbuf, int nbsp, int nolinebreaks);
673
674 void urlescputs(const char *);
675 void hurlescputs(const char *);
676 void jsesc(char *, size_t, char *);
677 void jsescputs(char *);
678 void output_headers(    int do_httpheaders,
679                         int do_htmlhead,
680                         int do_room_banner,
681                         int unset_cookies,
682                         int suppress_check,
683                         int cache);
684 void output_custom_content_header(const char *ctype);
685
686 #ifdef UBER_VERBOSE_DEBUGGING
687 #define wc_printf(...) wcc_printf(__FILE__, __FUNCTION__, __LINE__, __VA_ARGS__)
688 void wcc_printf(const char *FILE, const char *FUNCTION, long LINE, const char *format, ...);
689 #else 
690 void wc_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
691 #endif
692
693 void hprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
694 void output_static(const char* What);
695
696 long stresc(char *target, long tSize, char *strbuf, int nbsp, int nolinebreaks);
697 void escputs(const char *strbuf);
698 void url(char *buf, size_t bufsize);
699 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf);
700 void escputs1(const char *strbuf, int nbsp, int nolinebreaks);
701 void msgesc(char *target, size_t tlen, char *strbuf);
702 void msgescputs(char *strbuf);
703 void msgescputs1(char *strbuf);
704 void dump_vars(void);
705 void embed_main_menu(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 getseen(void);
713 void text_to_server(char *ptr);
714 void text_to_server_qp(char *ptr);
715 void confirm_delete_msg(void);
716 void display_success(char *);
717 void CheckAuthBasic(ParsedHttpHdrs *hdr);
718 void GetAuthBasic(ParsedHttpHdrs *hdr);
719 void server_to_text(void);
720 void save_edit(char *description, char *enter_cmd, int regoto);
721 void display_edit(char *description, char *check_cmd,
722                   char *read_cmd, char *save_cmd, int with_room_banner);
723 long gotoroom(const StrBuf *gname);
724 void remove_march(const StrBuf *aaa);
725 void dotskip(void);
726 void confirm_delete_room(void);
727 void validate(void);
728 void display_graphics_upload(char *, char *, char *);
729 void do_graphics_upload(char *upl_cmd);
730 void serv_gets(char *strbuf);
731 void serv_write(const char *buf, int nbytes);
732 void serv_putbuf(const StrBuf *string);
733 void serv_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
734 void load_floorlist(StrBuf *Buf);
735 void shutdown_sessions(void);
736 void do_housekeeping(void);
737 void smart_goto(const StrBuf *);
738 void worker_entry(void);
739 void session_loop(void);
740 size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm);
741 void fmt_time(char *buf, size_t siz, time_t thetime);
742 void httpdate(char *buf, time_t thetime);
743 time_t httpdate_to_timestamp(StrBuf *buf);
744 void end_webcit_session(void);
745 void page_popup(void);
746 void http_redirect(const char *);
747 void clear_substs(struct wcsession *wc);
748 void clear_local_substs(void);
749
750
751
752 int lingering_close(int fd);
753 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
754 void remove_token(char *source, int parmnum, char separator);
755 StrBuf *load_mimepart(long msgnum, char *partnum);
756 void MimeLoadData(wc_mime_attachment *Mime);
757 int pattern2(char *search, char *patn);
758 void do_edit_vcard(long msgnum, char *partnum, 
759                    message_summary *VCMsg,
760                    wc_mime_attachment *VCAtt,
761                    const char *return_to, 
762                    const char *force_room);
763
764 void select_user_to_edit(const char *preselect);
765 void delete_user(char *);
766 void do_change_view(int);
767 void folders(void);
768
769
770
771 void offer_start_page(StrBuf *Target, WCTemplputParams *TP);
772 void convenience_page(const char *titlebarcolor, const char *titlebarmsg, const char *messagetext);
773 void output_html(const char *, int, int, StrBuf *, StrBuf *);
774 void do_listsub(void);
775 ssize_t write(int fd, const void *buf, size_t count);
776 void cal_process_attachment(wc_mime_attachment *Mime);
777 void display_calendar(message_summary *Msg, int unread);
778 void display_note(message_summary *Msg, int unread);
779 void updatenote(void);
780 void do_tasks_view(void);
781 int calendar_summary_view(void);
782 void free_march_list(wcsession *wcf);
783 void display_rules_editor_inner_div(void);
784 void generate_uuid(char *);
785 void CtdlMakeTempFileName(char *, int);
786 void address_book_popup(void);
787 void begin_ajax_response(void);
788 void end_ajax_response(void);
789 void initialize_viewdefs(void);
790 void initialize_axdefs(void);
791 void burn_folder_cache(time_t age);
792 void list_all_rooms_by_floor(const char *viewpref);
793 void display_pictureview(void);
794
795 void display_edit_task(void);
796 void display_edit_event(void);
797 icaltimezone *get_default_icaltimezone(void);
798 void display_icaltimetype_as_webform(struct icaltimetype *, char *, int);
799 void icaltime_from_webform(struct icaltimetype *result, char *prefix);
800 void icaltime_from_webform_dateonly(struct icaltimetype *result, char *prefix);
801 void partstat_as_string(char *buf, icalproperty *attendee);
802 icalcomponent *ical_encapsulate_subcomponent(icalcomponent *subcomp);
803 void check_attendee_availability(icalcomponent *supplied_vevent);
804 int ical_ctdl_is_overlap(
805                         struct icaltimetype t1start,
806                         struct icaltimetype t1end,
807                         struct icaltimetype t2start,
808                         struct icaltimetype t2end
809 );
810
811
812 extern char *months[];
813 extern char *days[];
814 int serv_read_binary(StrBuf *Ret, size_t total_len, StrBuf *Buf);
815 int StrBuf_ServGetBLOB(StrBuf *buf, long BlobSize);
816 int StrBuf_ServGetBLOBBuffered(StrBuf *buf, long BlobSize);
817 int read_server_text(StrBuf *Buf, long *nLines);
818 long locate_user_vcard_in_this_room(message_summary **VCMsg,
819                                     wc_mime_attachment **VCAtt);
820 void sleeeeeeeeeep(int);
821 void http_transmit_thing(const char *content_type, int is_static);
822 long unescape_input(char *buf);
823 void do_selected_iconbar(void);
824 void spawn_another_worker_thread(void);
825 void StrEndTab(StrBuf *Target, int tabnum, int num_tabs);
826 void StrBeginTab(StrBuf *Target, int tabnum, int num_tabs);
827 void StrTabbedDialog(StrBuf *Target, int num_tabs, StrBuf *tabnames[]);
828 void tabbed_dialog(int num_tabs, char *tabnames[]);
829 void begin_tab(int tabnum, int num_tabs);
830 void end_tab(int tabnum, int num_tabs);
831 void str_wiki_index(char *s);
832 long guess_calhourformat(void);
833 int get_time_format_cached (void);
834 const char *get_selected_language(void);
835 void display_wiki_pagelist(void);
836
837 #define DATEFMT_FULL 0
838 #define DATEFMT_BRIEF 1
839 #define DATEFMT_RAWDATE 2
840 #define DATEFMT_LOCALEDATE 3
841 void webcit_fmt_date(char *buf, size_t siz, time_t thetime, int Format);
842 int fetch_http(char *url, char *target_buf, int maxbytes);
843 void free_attachments(wcsession *sess);
844 void summary(void);
845
846 int is_mobile_ua(char *user_agent);
847
848 void embed_room_banner(char *, int);
849 HashList *GetFloorListHash(StrBuf *Target, WCTemplputParams *TP);
850 HashList *GetRoomListHash(StrBuf *Target, WCTemplputParams *TP);
851 int SortRoomsByListOrder(const void *room1, const void *room2);
852 /* navbar types that can be passed to embed_room_banner */
853 enum {
854         navbar_none,
855         navbar_default
856 };
857
858 /* actual supported locales */
859 void TmplGettext(StrBuf *Target, WCTemplputParams *TP);
860 void offer_languages(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType);
861 void set_selected_language(const char *);
862 void go_selected_language(void);
863 void stop_selected_language(void);
864
865 #ifdef HAVE_OPENSSL
866 void init_ssl(void);
867 void endtls(void);
868 void ssl_lock(int mode, int n, const char *file, int line);
869 int starttls(int sock);
870 extern SSL_CTX *ssl_ctx;  
871 int client_read_sslbuffer(StrBuf *buf, int timeout);
872 void client_write_ssl(const StrBuf *Buf);
873 #endif
874
875 void utf8ify_rfc822_string(char **buf);
876
877 void begin_burst(void);
878 long end_burst(void);
879
880 extern char *hourname[];        /* Names of hours (12am, 1am, etc.) */
881
882 void http_datestring(char *buf, size_t n, time_t xtime);
883
884
885 /* These should be empty, but we have them for testing */
886 #define DEFAULT_HTTPAUTH_USER   ""
887 #define DEFAULT_HTTPAUTH_PASS   ""
888
889
890 /* Exit codes 101 through 109 are initialization failures so we don't want to
891  * just keep respawning indefinitely.
892  */
893 #define WC_EXIT_BIND            101     /* Can't bind to the port */
894 #define WC_EXIT_SSL             102     /* Can't initialize SSL */
895
896
897 #define WC_TIMEFORMAT_NONE 0
898 #define WC_TIMEFORMAT_AMPM 1
899 #define WC_TIMEFORMAT_24 2
900