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