utf8ify_rfc822_string() is in libcitadel now
[citadel.git] / libcitadel / lib / libcitadel.h
1 /*
2  * Header file for libcitadel
3  *
4  * Copyright (c) 1987-2022 by the citadel.org team
5  *
6 // This program is open source software.  Use, duplication, or disclosure
7 // is subject to the terms of the GNU General Public License, version 3.
8  */
9
10 /* protect against double includes */
11 #ifndef LIBCITADEL_H
12 #define LIBCITADEL_H
13
14 /*
15  * since we reference time_t...
16  */
17 #include <time.h>
18 #include <stdlib.h>
19 #include <stdarg.h>
20 #include <arpa/inet.h>
21 #include <sys/types.h>
22 #include <netinet/in.h>
23
24 #define LIBCITADEL_VERSION_NUMBER 957
25
26 /*
27  * Here's a bunch of stupid magic to make the MIME parser portable.
28  */
29 #ifndef SIZ
30 #define SIZ     4096
31 #endif
32
33 typedef enum AXLevel {
34         AxDeleted = 0,
35         AxNewU = 1,
36         AxProbU = 2,
37         AxLocU = 3,
38         AxNetU = 4,
39         AxPrefU = 5,
40         AxAideU = 6
41 }eUsrAxlvl;
42
43 typedef enum __RoomNetCfg {
44         subpending        = 0,
45         unsubpending      = 1,
46         lastsent          = 2, /* Server internal use only */
47         ignet_push_share  = 3,
48         listrecp          = 4,
49         digestrecp        = 5,
50         pop3client        = 6,
51         rssclient         = 7,
52         participate       = 8,
53         roommailalias     = 9,
54         maxRoomNetCfg
55 } RoomNetCfg;
56
57 enum GNET_POP3_PARTS { /* pop3client splits into these columns: */
58         GNET_POP3_HOST = 1,
59         GNET_POP3_USER = 2,
60         GNET_POP3_PASS = 4,
61         GNET_POP3_DONT_DELETE_REMOTE = 4,
62         GNET_POP3_INTERVAL = 5
63 };
64
65 enum GNET_PUSH_SHARE { /* ignet_push_share splits into these columns: */
66         GNET_IGNET_NODE = 1,
67         GNET_IGNET_ROOM = 2
68 };
69
70 typedef enum __GPEXWhichPolicy {
71         roompolicy,
72         floorpolicy,
73         sitepolicy,
74         mailboxespolicy,
75         maxpolicy
76 }GPEXWhichPolicy;
77
78 /*
79  * View definitions.
80  * Note that not all views are implemented in all clients.
81  */
82 typedef enum _room_views {
83         VIEW_BBS                = 0,    /* Bulletin board view */
84         VIEW_MAILBOX            = 1,    /* Mailbox summary */
85         VIEW_ADDRESSBOOK        = 2,    /* Address book view */
86         VIEW_CALENDAR           = 3,    /* Calendar view */
87         VIEW_TASKS              = 4,    /* Tasks view */
88         VIEW_NOTES              = 5,    /* Notes view */
89         VIEW_WIKI               = 6,    /* Wiki view */
90         VIEW_CALBRIEF           = 7,    /* Brief Calendar view */
91         VIEW_JOURNAL            = 8,    /* Journal view */
92         VIEW_DRAFTS             = 9,    /* Drafts view */
93         VIEW_BLOG               = 10,   /* Blog view */
94         VIEW_QUEUE              = 11,   /* SMTP/... QUEUE rooms */
95         VIEW_MAX,
96         VIEW_JSON_LIST,
97 } ROOM_VIEWS;
98
99 #define BLOG_EUIDBUF_SIZE       40
100
101 #ifndef IsEmptyStr
102 #define IsEmptyStr(a) ( ( (a) == NULL ) || ((a)[0] == '\0') )
103 #endif
104
105
106 /*
107  * another word to indicate n/a for a pointer if NULL already has a "meaning"
108  */
109 extern const char *StrBufNOTNULL;
110
111 /*
112  * Misc declarations
113  */
114
115 char *libcitadel_version_string(void);
116 int libcitadel_version_number(void);
117 void ShutDownLibCitadel(void);
118
119 /*
120  * MIME parser declarations
121  */
122
123 long extract_key(char *target, char *source, long sourcelen, char *key, long keylen, char KeyEnd);
124
125
126 typedef void (*MimeParserCallBackType)(char *cbname,
127                                        char *cbfilename,
128                                        char *cbpartnum,
129                                        char *cbdisp,
130                                        void *cbcontent,
131                                        char *cbtype,
132                                        char *cbcharset,
133                                        size_t cblength,
134                                        char *cbencoding,
135                                        char *cbid,
136                                        void *cbuserdata);
137
138 void mime_parser(char *content_start, char *content_end,
139                  MimeParserCallBackType CallBack,
140                  MimeParserCallBackType PreMultiPartCallBack,
141                  MimeParserCallBackType PostMultiPartCallBack,
142                  void *userdata,
143                  int dont_decode);
144
145 char *fixed_partnum(char *);
146
147 void mime_decode(char *partnum,
148                  char *part_start, size_t length,
149                  char *content_type, char *charset, char *encoding,
150                  char *disposition,
151                  char *id,
152                  char *name, char *filename,
153                  MimeParserCallBackType CallBack,
154                  MimeParserCallBackType PreMultiPartCallBack,
155                  MimeParserCallBackType PostMultiPartCallBack,
156                  void *userdata,
157                  int dont_decode);
158
159 int mime_decode_now (char *part_start, 
160                      size_t length,
161                      char *encoding,
162                      char **decoded,
163                      size_t *bytes_decoded);
164
165 void the_mime_parser(char *partnum,
166                      char *content_start, char *content_end,
167                      MimeParserCallBackType CallBack,
168                      MimeParserCallBackType PreMultiPartCallBack,
169                      MimeParserCallBackType PostMultiPartCallBack,
170                      void *userdata,
171                      int dont_decode);
172
173 typedef struct StrBuf StrBuf;
174
175 #define strof(a) #a
176 #define CStrOf(a) #a, sizeof(#a) - 1
177 typedef struct _ConstStr {
178         const char *Key;
179         long len;
180 }ConstStr;
181 #define CKEY(a) (a).Key, (a).len
182
183 StrBuf* NewStrBuf(void);
184 StrBuf* NewStrBufDup(const StrBuf *CopyMe);
185 StrBuf* NewStrBufPlain(const char* ptr, int nChars);
186 void SwapBuffers(StrBuf *A, StrBuf *B);
187 long StrBufShrinkToFit(StrBuf *Buf, int Force);
188 void ReAdjustEmptyBuf(StrBuf *Buf, long ThreshHold, long NewSize);
189 void NewStrBufDupAppendFlush(StrBuf **CreateRelpaceMe, StrBuf *CopyFlushMe, const char *NoMe, int KeepOriginal);
190 int StrBufPlain(StrBuf *Buf, const char* ptr, int nChars);
191 StrBuf* _NewConstStrBuf(const char* StringConstant, size_t SizeOfStrConstant);
192 #define NewConstStrBuf(a) _NewConstStrBuf(a, sizeof(a))
193 void FreeStrBuf (StrBuf **FreeMe);
194 char *SmashStrBuf (StrBuf **SmashMe);
195 void HFreeStrBuf (void *VFreeMe);
196 int FlushStrBuf(StrBuf *buf);
197 int FLUSHStrBuf(StrBuf *buf); /* expensive but doesn't leave content behind for others to find in case of errors */
198 const char *ChrPtr(const StrBuf *Str);
199 int StrLength(const StrBuf *Str);
200 #define SKEY(a) ChrPtr(a), StrLength(a)
201 void StrBufAsciify(StrBuf *Buf, const char repl);
202 long StrBufPeek(StrBuf *Buf, const char* ptr, long nThChar, char PeekValue);
203 long StrBufPook(StrBuf *Buf, const char* ptr, long nThChar, long nChars, char PookValue);
204 int StrBufTCP_read_line(StrBuf *buf, int *fd, int append, const char **Error);
205 int StrBufReadBLOB(StrBuf *Buf, int *fd, int append, long nBytes, const char **Error);
206 #define NNN_TERM 1
207 #define O_TERM 0
208 int StrBufReadBLOBBuffered(StrBuf *Buf, 
209                            StrBuf *IOBuf, 
210                            const char **BufPos,
211                            int *fd, 
212                            int append, 
213                            long nBytes, 
214                            int check, 
215                            const char **Error);
216 int StrBufTCP_read_buffered_line(StrBuf *Line, 
217                                  StrBuf *buf, 
218                                  int *fd, 
219                                  int timeout, 
220                                  int selectresolution, 
221                                  const char **Error);
222 int StrBufTCP_read_buffered_line_fast(StrBuf *Line, 
223                                       StrBuf *buf, 
224                                       const char **Pos,
225                                       int *fd, 
226                                       int timeout, 
227                                       int selectresolution, 
228                                       const char **Error);
229
230 typedef enum _eReadState {
231         eReadFail,
232         eReadSuccess,
233         eMustReadMore, 
234         eBufferNotEmpty
235 } eReadState;
236
237 typedef struct _file_buffer {
238         StrBuf *Buf;
239         const char *ReadWritePointer;
240         int fd;
241         int LineCompleted;
242         int nBlobBytesWanted;
243 } IOBuffer;
244
245 long StrBuf_read_one_chunk_callback (int fd, short event, IOBuffer *FB);
246 int StrBuf_write_one_chunk_callback(int fd, short event, IOBuffer *FB);
247
248 eReadState StrBufChunkSipLine(StrBuf *LineBuf, IOBuffer *FB);
249 eReadState StrBufCheckBuffer(IOBuffer *FB);
250 long IOBufferStrLength(IOBuffer *FB);
251
252 int StrBufSipLine(StrBuf *LineBuf, const StrBuf *Buf, const char **Ptr);
253 int StrBufReplaceToken(StrBuf *Buf, long where, long HowLong, const char *Repl, long ReplLen);
254 int StrBufExtract_tokenFromStr(StrBuf *dest, const char *Source, long SourceLen, int parmnum, char separator);
255 int StrBufExtract_token(StrBuf *dest, const StrBuf *Source, int parmnum, char separator);
256 int StrBufSub(StrBuf *dest, const StrBuf *Source, unsigned long Offset, size_t nChars);
257
258 unsigned long StrBufExtract_unsigned_long(const StrBuf* Source, int parmnum, char separator);
259 long StrBufExtract_long(const StrBuf* Source, int parmnum, char separator);
260 int StrBufExtract_int(const StrBuf* Source, int parmnum, char separator);
261 int StrBufNum_tokens(const StrBuf *source, char tok);
262 int StrBufRemove_token(StrBuf *Source, int parmnum, char separator);
263
264 int StrBufHaveNextToken(const StrBuf *Source, const char **pStart);
265 int StrBufExtract_NextToken(StrBuf *dest, const StrBuf *Source, const char **pStart, char separator);
266 int StrBufSkip_NTokenS(const StrBuf *Source, const char **pStart, char separator, int nTokens);
267 unsigned long StrBufExtractNext_unsigned_long(const StrBuf* Source, const char **pStart, char separator);
268 long StrBufExtractNext_long(const StrBuf* Source, const char **pStart, char separator);
269 int StrBufExtractNext_int(const StrBuf* Source, const char **pStart, char separator);
270
271
272 void StrBufAppendBufPlain(StrBuf *Buf, const char *AppendBuf, long AppendSize, unsigned long Offset);
273 void StrBufAppendBuf(StrBuf *Buf, const StrBuf *AppendBuf, unsigned long Offset);
274 size_t CurlFillStrBuf_callback(void *ptr, size_t size, size_t nmemb, void *stream);
275 void StrBufAppendPrintf(StrBuf *Buf, const char *format, ...);
276 #ifdef SHOW_ME_VAPPEND_PRINTF
277 /* so owe don't create an include depndency, this is just visible on demand. */
278 void StrBufVAppendPrintf(StrBuf *Buf, const char *format, va_list ap);
279 #endif
280 void StrBufPrintf(StrBuf *Buf, const char *format, ...) __attribute__((__format__(__printf__,2,3)));
281 void StrBufCutLeft(StrBuf *Buf, int nChars);
282 void StrBufCutRight(StrBuf *Buf, int nChars);
283 void StrBufCutAt(StrBuf *Buf, int AfternChars, const char *At);
284 void StrBufTrim(StrBuf *Buf);
285 void StrBufSpaceToBlank(StrBuf *Buf);
286 void StrBufStripAllBut(StrBuf *Buf, char leftboundary, char rightboundary);
287 void StrBufUpCase(StrBuf *Buf);
288 void StrBufLowerCase(StrBuf *Buf);
289 void StrBufStripSlashes(StrBuf *Dir, int RemoveTrailingSlash);
290 void StrBufEUid_unescapize(StrBuf *target, const StrBuf *source);
291 void StrBufEUid_escapize(StrBuf *target, const StrBuf *source);
292
293 void StrBufToUnixLF(StrBuf *buf);
294 void StrBufReplaceChars(StrBuf *buf, char search, char replace);
295
296 int CompressBuffer(StrBuf *Buf);
297 void StrBufConvert(StrBuf *ConvertBuf, StrBuf *TmpBuf, void *pic);
298 void ctdl_iconv_open(const char *tocode, const char *fromcode, void *pic);
299 void StrBuf_RFC822_2_Utf8(StrBuf *Target, 
300                           const StrBuf *DecodeMe, 
301                           const StrBuf* DefaultCharset, 
302                           StrBuf *FoundCharset, 
303                           StrBuf *ConvertBuf, 
304                           StrBuf *ConvertBuf2);
305 /* deprecated old version: */
306 void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset);
307
308 typedef enum __eStreamType {
309         //eBase64Encode,
310         //eBase64Decode,
311         eZLibEncode,
312         eZLibDecode,
313         eEmtyCodec
314 } eStreamType;
315
316 typedef struct vStreamT vStreamT;
317 vStreamT *StrBufNewStreamContext(eStreamType type, const char **Err);
318 int StrBufDestroyStreamContext(eStreamType type, vStreamT **Stream, const char **Err);
319 int StrBufStreamTranscode(eStreamType type, IOBuffer *Target, IOBuffer *In, const char* pIn, long pInLen, vStreamT *Stream, int LastChunk, const char **Err);
320
321 int StrBufDecodeBase64(StrBuf *Buf);
322 void StrBufDecodeQP(StrBuf *Buf);
323 int StrBufDecodeBase64To(const StrBuf *BufIn, StrBuf *BufOut);
324 int StrBufDecodeHex(StrBuf *Buf);
325 StrBuf *StrBufRFC2047encodeMessage(const StrBuf *EncodeMe);
326 int StrBufRFC2047encode(StrBuf **target, const StrBuf *source);
327 StrBuf *StrBufSanitizeEmailRecipientVector(const StrBuf *Recp, 
328                                            StrBuf *UserName, 
329                                            StrBuf *EmailAddress,
330                                            StrBuf *EncBuf);
331 int StrBufSanitizeAscii(StrBuf *Buf, const char Mute);
332 #define LB                      (1)             /* Internal escape chars */
333 #define RB                      (2)
334 #define QU                      (3)
335 void StrBufUrlescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
336 void StrBufUrlescUPAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
337 void StrBufXMLEscAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn, long PlainInLen, int OverrideLowChars);
338 void StrBufHexescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
339 void StrBufHexEscAppend(StrBuf *OutBuf, const StrBuf *In, const unsigned char *PlainIn, long PlainInLen);
340 void StrBufBase64Append(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn, long PlainInLen, int linebreaks);
341 long StrEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
342 long StrECMAEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
343 long StrHtmlEcmaEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
344 void StrMsgEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
345 void StrIcalEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
346
347 long StrTol(const StrBuf *Buf);
348 int StrToi(const StrBuf *Buf);
349 int StrBufIsNumber(const StrBuf *Buf);
350 long StrBuf_Utf8StrLen(StrBuf *Buf);
351 long StrBuf_Utf8StrCut(StrBuf *Buf, int maxlen);
352
353 const char *GuessMimeType(const char *data, size_t dlen);
354 const char* GuessMimeByFilename(const char *what, size_t len);
355
356 /* Run once at Programstart */
357 int LoadIconDir(const char *DirName);
358
359 /* Select the icon for a given MIME type */
360 const char *GetIconFilename(char *MimeType, size_t len);
361
362
363 /* URL parsing & connection data */
364 typedef struct ParsedURL ParsedURL;
365 struct ParsedURL {
366         int Priority;
367         StrBuf *URL;
368         StrBuf *UrlWithoutCred;
369         StrBuf *CurlCreds;
370         unsigned Port;
371         const char *Host;
372         const char *User;
373         const char *Pass;
374         const char *LocalPart;
375         const char *PlainUrl;
376         int IsIP;
377         int IPv6;
378         int af;
379         struct hostent *HEnt;
380         struct sockaddr_in6 Addr;
381         ParsedURL *Next;
382         int IsRelay;
383         StrBuf *UsrName;
384         StrBuf *Password;
385 };
386
387 void FreeURL(ParsedURL** Url);
388 int ParseURL(ParsedURL **Url, StrBuf *UrlStr, unsigned short DefaultPort);
389 void CurlPrepareURL(ParsedURL *Url);
390
391 /* tools */
392
393
394 int safestrncpy(char *dest, const char *src, size_t n);
395 int num_tokens (const char *source, char tok);
396 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
397 long grab_token(char **dest, const char *source, int parmnum, char separator);
398 int extract_int (const char *source, int parmnum);
399 long extract_long (const char *source, int parmnum);
400 unsigned long extract_unsigned_long(const char *source, int parmnum);
401 void CtdlInitBase64Table(void);
402 size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int linebreaks);
403 enum {
404         BASE64_NO_LINEBREAKS = 0,
405         BASE64_YES_LINEBREAKS = 1
406 };
407 size_t CtdlDecodeBase64(char *dest, const char *source, size_t length);
408 unsigned int decode_hex(char *Source);
409 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen);
410 void StripSlashes(char *Dir, int TrailingSlash);
411 size_t striplt(char *);
412 int haschar(const char *st, int ch);
413 void remove_token(char *source, int parmnum, char separator);
414 int is_msg_in_sequence_set(const char *mset, long msgnum);
415 char *memreadline(char *start, char *buf, int maxlen);
416 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
417 const char *cmemreadline(const char *start, char *buf, int maxlen);
418 const char *cmemreadlinelen(const char *start, char *buf, int maxlen, int *retlen);
419 #define num_parms(source)               num_tokens(source,(char)'|')
420 int stripout(char *str, char leftboundary, char rightboundary);
421 long stripallbut(char *str, char leftboundary, char rightboundary);
422 char *myfgets(char *s, int size, FILE *stream);
423 void urlesc(char *outbuf, size_t oblen, char *strbuf);
424 char *CtdlTempFileName(char *prefix1, int prefix2);
425 FILE *CtdlTempFile(void);
426 void generate_uuid(char *buf);
427 char *bmstrcasestr(char *text, const char *pattern);
428 char *bmstrcasestr_len(char *text, size_t textlen, const char *pattern, size_t patlen);
429 const char *cbmstrcasestr(const char *text, const char *pattern);
430 const char *cbmstrcasestr_len(const char *text, size_t textlen, const char *pattern, size_t patlen);
431 void CtdlMakeTempFileName(char *name, int len);
432 char *rfc2047encode(const char *line, long length);
433 int is_msg_in_mset(const char *mset, long msgnum);
434 int pattern2(char *search, char *patn);
435 void stripltlen(char *, int *);
436 char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth);
437 void LoadEntityList(char *FileName);
438 void utf8ify_rfc822_string(char *buf);
439
440
441 typedef struct {
442         void *the_elements;
443         size_t element_size;
444         int num_elements;
445         int num_alloc;
446 } Array;
447
448 Array *array_new(size_t element_size);
449 void array_free(Array *arr);
450 void array_append(Array *arr, void *new_element);
451 void *array_get_element_at(Array *arr, int index);
452 int array_len(Array *arr);
453 void array_sort(Array *arr, int (*compar)(const void *, const void *));
454 void array_delete_element_at(Array *arr, int index);
455
456
457 /* vCard stuff */
458
459 #define CTDL_VCARD_MAGIC        0xa1f9
460
461 /* This data structure represents a vCard object currently in memory. */
462 struct vCard {
463         int magic;
464         int numprops;
465         struct vCardProp {
466                 char *name;
467                 char *value;
468         } *prop;
469 };
470
471
472 struct vCard *vcard_new(void);
473 void vcard_add_prop(struct vCard *v, const char *propname, const char *propvalue);
474 struct vCard *vcard_load(char *vtext);
475 struct vCard *VCardLoad(StrBuf *vbtext);
476
477 void vcard_free(struct vCard *);
478 void vcard_set_prop(struct vCard *v, char *name, char *value, int append);
479 char *vcard_get_prop(struct vCard *v, char *propname, int is_partial,
480                         int instance, int return_propname);
481 char *vcard_serialize(struct vCard *);
482 void vcard_fn_to_n(char *vname, char *n, size_t vname_size);
483 void remove_charset_attribute(char *strbuf);
484 long StrBufUnescape(StrBuf *Buf, int StripBlanks);
485
486 /*
487  * Hash list implementation for Citadel
488  */
489 #define HKEY(a) a, (sizeof(a) - 1)
490
491 typedef struct HashList HashList;
492
493 typedef struct HashKey HashKey;
494
495 typedef struct HashPos HashPos;
496
497 typedef void (*DeleteHashDataFunc)(void * Data);
498 typedef const char *(*PrintHashContent)(void * Data);
499 typedef int (*CompareFunc)(const void* Item1, const void*Item2);
500 typedef long (*HashFunc)(const char *Str, long Len);
501 typedef void (*TransitionFunc) (void *Item1, void *Item2, int Odd);
502 typedef const char* (*PrintHashDataFunc) (const char *Key, void *Item, int Odd);
503
504 long FourHash(const char *key, long length);
505 long Flathash(const char *str, long len);
506 long lFlathash(const char *str, long len);
507 #define IKEY(a) (const char*) &a, sizeof(a)
508 #define LKEY(a) (const char*) &a, sizeof(a)
509
510 int TestValidateHash(HashList *TestHash);
511
512 HashList *NewHash(int Uniq, HashFunc F);
513 void DeleteHash(HashList **Hash);
514 void DeleteHashContent(HashList **Hash);
515 void HDeleteHash(void *vHash);
516 int GetHash(HashList *Hash, const char *HKey, long HKLen, void **Data);
517 void Put(HashList *Hash, const char *HKey, long HKLen, void *Data, DeleteHashDataFunc DeleteIt);
518 int GetKey(HashList *Hash, char *HKey, long HKLen, void **Data);
519 int GetHashKeys(HashList *Hash, char ***List);
520 const char *dbg_PrintStrBufPayload(const char *Key, void *Item, int Odd);
521 int dbg_PrintHash(HashList *Hash, PrintHashContent first, PrintHashContent Second);
522 int PrintHash(HashList *Hash, TransitionFunc Trans, PrintHashDataFunc PrintEntry);
523 HashPos *GetNewHashPos(const HashList *Hash, int StepWidth);
524 void RewindHashPos(const HashList *Hash, HashPos *it, int StepWidth);
525 int GetHashPosFromKey(HashList *Hash, const char *HKey, long HKLen, HashPos *At);
526 int DeleteEntryFromHash(HashList *Hash, HashPos *At);
527 int GetHashPosCounter(HashList *Hash, HashPos *At);
528 void DeleteHashPos(HashPos **DelMe);
529 int NextHashPos(HashList *Hash, HashPos *At);
530 int GetHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
531 int GetNextHashPos(const HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
532 int GetHashAt(HashList *Hash,long At, long *HKLen, const char **HashKey, void **Data);
533 void SortByHashKey(HashList *Hash, int Order);
534 void SortByHashKeyStr(HashList *Hash);
535 int GetCount(HashList *Hash);
536 const void *GetSearchPayload(const void *HashVoid);
537 void SortByPayload(HashList *Hash, CompareFunc SortBy);
538 void reference_free_handler(void *ptr);
539 int HashLittle(const void *key, size_t length);
540
541 typedef struct MSet MSet;
542 int ParseMSet(MSet **MsetList, StrBuf *MSetStr);
543 int IsInMSetList(MSet *MSetList, long MsgNo);
544 void DeleteMSet(MSet **FreeMe);
545
546 void convert_spaces_to_underscores(char *str);
547 int CheckEncode(const char *pch, long len, const char *pche);
548
549 /*
550  * Convert 4 bytes char into an Integer.
551  * usefull for easy inexpensive hashing 
552  * of for char strings.
553  */
554 #define CHAR4TO_INT(a) ((int) (a[0] | (a[1]<<8) | (a[2]<<16) | (a[3]<<24)))
555
556 /* vNote implementation */
557
558 #define CTDL_VNOTE_MAGIC        0xa1fa
559
560 struct vnote {
561         int magic;
562         char *uid;
563         char *summary;
564         char *body;
565         int pos_left;
566         int pos_top;
567         int pos_width;
568         int pos_height;
569         int color_red;
570         int color_green;
571         int color_blue;
572 };
573
574
575
576 struct vnote *vnote_new(void);
577 struct vnote *vnote_new_from_str(char *s);
578 void vnote_free(struct vnote *v);
579 char *vnote_serialize(struct vnote *v);
580 void vnote_serialize_output_field(char *append_to, char *field, char *label);
581
582
583
584
585 /*
586  * Create JSON style structures in C plus serialize them to one string
587  */
588
589 typedef struct JsonValue JsonValue;
590
591
592 void DeleteJSONValue(void *vJsonValue);
593
594 JsonValue *NewJsonObject(const char *Key, long keylen);
595
596 JsonValue *NewJsonArray(const char *Key, long keylen);
597
598 JsonValue *NewJsonNumber(const char *Key, long keylen, long Number);
599
600 JsonValue *NewJsonBigNumber(const char *Key, long keylen, double Number);
601
602 enum {
603         NEWJSONSTRING_COPYBUF,          // make a copy of the StrBuf, source is left alone
604         NEWJSONSTRING_SMASHBUF          // smash the source StrBuf, the json object now owns that memory
605 };
606 JsonValue *NewJsonString(const char *Key, long keylen, StrBuf *CopyMe, int copy_or_smash);
607
608 JsonValue *NewJsonPlainString(const char *Key, long keylen, const char *CopyMe, long len);
609
610 JsonValue *NewJsonNull(const char *Key, long keylen);
611
612 JsonValue *NewJsonBool(const char *Key, long keylen, int value);
613
614 void JsonArrayAppend(JsonValue *Array, JsonValue *Val);
615
616 void JsonObjectAppend(JsonValue *Array, JsonValue *Val);
617
618 void SerializeJson(StrBuf *Target, JsonValue *Val, int FreeVal);
619
620
621 /* the following declarations are leftover from the defunct wildfire implementation. can we remove them? */
622 typedef void (*AddHeaderFunc)(const char *HdrName, const char *HdrValue);
623
624 typedef enum _WF_MessageType {
625         eLOG, 
626         eINFO,
627         eWARN,
628         eERROR,
629         eTRACE,
630         eEXCEPTION
631 } WF_MessageType;
632
633 JsonValue *WildFireException(const char *Filename, long FileLen,
634                              long LineNo,
635                              StrBuf *Message,
636                              int StackOffset);
637
638 void WildFireAddArray(JsonValue *ReportBase, JsonValue *Array, WF_MessageType Type);
639
640 JsonValue *WildFireMessagePlain(const char *Filename, long fnlen,
641                                    long LineNo,
642                                    const char *Message, long len, 
643                                    WF_MessageType Type);
644
645 JsonValue *WildFireMessage(const char *Filename, long fnlen,
646                            long lineno,
647                            StrBuf *Msg, 
648                            WF_MessageType Type);
649
650 void WildFireInitBacktrace(const char *argvNull, int AddBaseFrameSkip);
651
652 void WildFireSerializePayload(StrBuf *JsonBuffer, StrBuf *OutBuf, int *MsgCount, AddHeaderFunc AddHdr);
653
654 #define WF_MAJOR "1"
655 #define WF_STRUCTINDEX "1"
656 #define WF_SUB "1"
657
658 extern ConstStr RoomNetCfgStrs[maxRoomNetCfg];
659
660 /* Convenience function to "perform a function and cut a log record if result != 0" */
661 #define CtdlLogResult(x) if (x) syslog(LOG_CRIT, "%s:%d %s", __FILE__, __LINE__, strerror(errno))
662
663 /* a nice consistent place to define how we turn a message id into a thread id hash */
664 #define ThreadIdHash(Buf) abs(HashLittle(ChrPtr(Buf), StrLength(Buf)))
665 #define ThreadIdHashOffset(Buf, Offset) abs(HashLittle(ChrPtr(Buf) + Offset, StrLength(Buf)-Offset))
666
667 #ifdef __cplusplus
668 extern "C" {
669 #endif
670
671 #define CFG_SMTP_FROM_FILTERALL 0
672 #define CFG_SMTP_FROM_NOFILTER 1
673 #define CFG_SMTP_FROM_CORRECT 2
674 #define CFG_SMTP_FROM_REJECT 3
675
676 /*
677  * object types used in Citadel for configuration stuff (some of these are obsolete)
678  */
679 #define SPOOLMIME       "application/x-citadel-delivery-list"
680 #define INTERNETCFG     "application/x-citadel-internet-config"
681 #define IGNETCFG        "application/x-citadel-ignet-config"
682 #define IGNETMAP        "application/x-citadel-ignet-map"
683 #define FILTERLIST      "application/x-citadel-filter-list"
684 #define SIEVECONFIG     "application/x-citadel-sieve-config"
685 #define XMPPMORTUARY    "application/x-citadel-xmpp-mortuary"
686 #define GLOBAL_ALIASES  "global_alias_table"
687
688 #define FILE_MAILALIAS       "__MAIL_ALIAS__"
689
690 #define LISTING_FOLLOWS         100
691 #define CIT_OK                  200
692 #define MORE_DATA               300
693 #define SEND_LISTING            400
694 #define ERROR                   500
695 #define BINARY_FOLLOWS          600
696 #define SEND_BINARY             700
697 #define START_CHAT_MODE         800
698
699 #define INTERNAL_ERROR          10
700 #define TOO_BIG                 11
701 #define ILLEGAL_VALUE           12
702 #define NOT_LOGGED_IN           20
703 #define CMD_NOT_SUPPORTED       30
704 #define SERVER_SHUTTING_DOWN    31
705 #define PASSWORD_REQUIRED       40
706 #define ALREADY_LOGGED_IN       41
707 #define USERNAME_REQUIRED       42
708 #define HIGHER_ACCESS_REQUIRED  50
709 #define MAX_SESSIONS_EXCEEDED   51
710 #define RESOURCE_BUSY           52
711 #define RESOURCE_NOT_OPEN       53
712 #define NOT_HERE                60
713 #define INVALID_FLOOR_OPERATION 61
714 #define NO_SUCH_USER            70
715 #define FILE_NOT_FOUND          71
716 #define ROOM_NOT_FOUND          72
717 #define NO_SUCH_SYSTEM          73
718 #define ALREADY_EXISTS          74
719 #define MESSAGE_NOT_FOUND       75
720
721 #define ASYNC_MSG               900
722 #define ASYNC_GEXP              02
723
724 #define QR_PERMANENT    1               /* Room does not purge              */
725 #define QR_INUSE        2               /* Set if in use, clear if avail    */
726 #define QR_PRIVATE      4               /* Set for any type of private room */
727 #define QR_PASSWORDED   8               /* Set if there's a password too    */
728 #define QR_GUESSNAME    16              /* Set if it's a guessname room     */
729 #define QR_DIRECTORY    32              /* Directory room                   */
730 #define QR_UPLOAD       64              /* Allowed to upload                */
731 #define QR_DOWNLOAD     128             /* Allowed to download              */
732 #define QR_VISDIR       256             /* Visible directory                */
733 #define QR_ANONONLY     512             /* Anonymous-Only room              */
734 #define QR_ANONOPT      1024            /* Anonymous-Option room            */
735 #define QR_NETWORK      2048            /* Shared network room              */
736 #define QR_PREFONLY     4096            /* Preferred status needed to enter */
737 #define QR_READONLY     8192            /* Admin status required to post     */
738 #define QR_MAILBOX      16384           /* Set if this is a private mailbox */
739
740 #define QR2_SYSTEM      1               /* System room; hide by default     */
741 #define QR2_SELFLIST    2               /* Self-service mailing list mgmt   */
742 #define QR2_COLLABDEL   4               /* Anyone who can post can delete   */
743 #define QR2_SUBJECTREQ  8               /* Subject strongly recommended */
744 #define QR2_SMTP_PUBLIC 16              /* Listservice Subscribers may post */
745 #define QR2_MODERATED   32              /* Listservice aide has to permit posts  */
746 #define QR2_NOUPLMSG    64              /* If a file  is uploaded, no message will be posted.  */
747
748 #define US_NEEDVALID    1               /* User needs to be validated       */
749 #define US_EXTEDIT      2               /* Always use external editor       */
750 #define US_PERM         4               /* Permanent user                   */
751 #define US_LASTOLD      16              /* Print last old message with new  */
752 #define US_EXPERT       32              /* Experienced user                 */
753 #define US_UNLISTED     64              /* Unlisted userlog entry           */
754 #define US_NOPROMPT     128             /* Don't prompt after each message  */
755 #define US_PROMPTCTL    256             /* <N>ext & <S>top work at prompt   */
756 #define US_DISAPPEAR    512             /* Use "disappearing msg prompts"   */
757 #define US_REGIS        1024            /* Registered user                  */
758 #define US_PAGINATOR    2048            /* Pause after each screen of text  */
759 #define US_INTERNET     4096            /* Internet mail privileges         */
760 #define US_FLOORS       8192            /* User wants to see floors         */
761 #define US_COLOR        16384           /* User wants ANSI color support    */
762 #define US_USER_SET     (US_LASTOLD | US_EXPERT | US_UNLISTED | \
763                         US_NOPROMPT | US_DISAPPEAR | US_PAGINATOR | \
764                         US_FLOORS | US_COLOR | US_PROMPTCTL | US_EXTEDIT)
765
766 #define UA_KNOWN                2       /* Room appears in a 'known rooms' list */
767 #define UA_GOTOALLOWED          4       /* User may goto this room if specified by exact name */
768 #define UA_HASNEWMSGS           8       /* Unread messages exist in this room */
769 #define UA_ZAPPED               16      /* User has forgotten (zapped) this room */
770 #define UA_POSTALLOWED          32      /* User may post top-level messages here */
771 #define UA_ADMINALLOWED         64      /* Admin or Room Admin rights exist here */
772 #define UA_DELETEALLOWED        128     /* User is allowed to delete messages from this room */
773 #define UA_REPLYALLOWED         256     /* User is allowed to reply to existing messages here */
774 /* runtime flag extracted from goto reply; not db persistant, should be moved if new flags added */
775 #define UA_ISTRASH              512     /* Only available in room view... */
776
777 #ifdef __cplusplus
778 }
779 #endif
780
781 #endif  // LIBCITADEL_H