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