* macro to get a string out of a define / enum
[citadel.git] / libcitadel / lib / libcitadel.h
1 /*
2  * $Id$
3  *
4  */
5
6
7 /* protect against double includes */
8 #ifndef LIBCITADEL_H
9 #define LIBCITADEL_H
10
11
12 /*
13  * since we reference time_t...
14  */
15 #include <time.h>
16 #include <stdlib.h>
17 #include <stdarg.h>
18 #define LIBCITADEL_VERSION_NUMBER       770
19
20 /*
21  * Here's a bunch of stupid magic to make the MIME parser portable.
22  */
23 #ifndef SIZ
24 #define SIZ     4096
25 #endif
26
27 #define strof(a) #a
28
29 /* Logging levels - correspond to syslog(3) */
30 enum LogLevel {
31         /* When about to exit the server for an unrecoverable error */
32          CTDL_EMERG,    /* system is unusable */
33         /* Manual intervention is required to avoid an abnormal exit */
34          CTDL_ALERT,    /* action must be taken immediately */
35         /* The server can continue to run with degraded functionality */
36          CTDL_CRIT,     /* critical conditions */
37         /* An error occurs but the server continues to run normally */
38          CTDL_ERR,      /* error conditions */
39         /* An abnormal condition was detected; server will continue normally */
40          CTDL_WARNING,  /* warning conditions */
41         /* Normal messages (login/out, activity, etc.) */
42          CTDL_NOTICE,   /* normal but significant condition */
43         /* Unimportant progress messages, etc. */
44          CTDL_INFO,     /* informational */
45         /* Debugging messages */
46          CTDL_DEBUG     /* debug-level messages */
47 };
48
49 typedef enum AXLevel {
50         AxDeleted = 0,
51         AxNewU = 1,
52         AxProbU = 2,
53         AxLocU = 3,
54         AxNetU = 4,
55         AxPrefU = 5,
56         AxAideU = 6
57 }eUsrAxlvl;
58
59 enum RoomNetCfg {
60         subpending,
61         unsubpending,
62         lastsent, /* Server internal use only */
63         ignet_push_share,
64         listrecp,
65         digestrecp,
66         pop3client,
67         rssclient,
68         participate,
69         maxRoomNetCfg
70 };
71
72 /*
73  * View definitions.
74  * Note that not all views are implemented in all clients.
75  */
76 #define VIEW_BBS                0       /* Bulletin board view */
77 #define VIEW_MAILBOX            1       /* Mailbox summary */
78 #define VIEW_ADDRESSBOOK        2       /* Address book view */
79 #define VIEW_CALENDAR           3       /* Calendar view */
80 #define VIEW_TASKS              4       /* Tasks view */
81 #define VIEW_NOTES              5       /* Notes view */
82 #define VIEW_WIKI               6       /* Wiki view */
83 #define VIEW_CALBRIEF           7       /* Brief Calendar view */
84 #define VIEW_JOURNAL            8       /* Journal view */
85 #define VIEW_BLOG               9       /* Blog view (not yet implemented) */
86
87
88 #ifndef IsEmptyStr
89 #define IsEmptyStr(a) ((a)[0] == '\0')
90 #endif
91
92 /*
93  * another word to indicate n/a for a pointer if NULL already has a "meaning"
94  */
95 extern const char *StrBufNOTNULL;
96
97 /*
98  * Misc declarations
99  */
100
101 char *libcitadel_version_string(void);
102 int libcitadel_version_number(void);
103 void StartLibCitadel(size_t basesize);
104 void ShutDownLibCitadel(void);
105
106 /*
107  * MIME parser declarations
108  */
109
110 void extract_key(char *target, char *source, long sourcelen, char *key, long keylen, char KeyEnd);
111
112 void mime_parser(char *content_start, char *content_end,
113                 void (*CallBack)
114                         (char *cbname,
115                         char *cbfilename,
116                         char *cbpartnum,
117                         char *cbdisp,
118                         void *cbcontent,
119                         char *cbtype,
120                         char *cbcharset,
121                         size_t cblength,
122                         char *cbencoding,
123                         char *cbid,
124                         void *cbuserdata),
125                 void (*PreMultiPartCallBack)
126                         (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                 void (*PostMultiPartCallBack)
138                         (char *cbname,
139                         char *cbfilename,
140                         char *cbpartnum,
141                         char *cbdisp,
142                         void *cbcontent,
143                         char *cbtype,
144                         char *cbcharset,
145                         size_t cblength,
146                         char *cbencoding,
147                         char *cbid,
148                         void *cbuserdata),
149                 void *userdata,
150                 int dont_decode
151 );
152
153
154
155 char *fixed_partnum(char *);
156 void mime_decode(char *partnum,
157                  char *part_start, size_t length,
158                  char *content_type, char *charset, char *encoding,
159                  char *disposition,
160                  char *id,
161                  char *name, char *filename,
162                  void (*CallBack)
163                   (char *cbname,
164                    char *cbfilename,
165                    char *cbpartnum,
166                    char *cbdisp,
167                    void *cbcontent,
168                    char *cbtype,
169                    char *cbcharset,
170                    size_t cblength,
171                    char *cbencoding,
172                    char *cbid,
173                    void *cbuserdata),
174                  void (*PreMultiPartCallBack)
175                   (char *cbname,
176                    char *cbfilename,
177                    char *cbpartnum,
178                    char *cbdisp,
179                    void *cbcontent,
180                    char *cbtype,
181                    char *cbcharset,
182                    size_t cblength,
183                    char *cbencoding,
184                    char *cbid,
185                    void *cbuserdata),
186                  void (*PostMultiPartCallBack)
187                   (char *cbname,
188                    char *cbfilename,
189                    char *cbpartnum,
190                    char *cbdisp,
191                    void *cbcontent,
192                    char *cbtype,
193                    char *cbcharset,
194                    size_t cblength,
195                    char *cbencoding,
196                    char *cbid,
197                    void *cbuserdata),
198                   void *userdata,
199                   int dont_decode
200 );
201 void the_mime_parser(char *partnum,
202                      char *content_start, char *content_end,
203                      void (*CallBack)
204                       (char *cbname,
205                        char *cbfilename,
206                        char *cbpartnum,
207                        char *cbdisp,
208                        void *cbcontent,
209                        char *cbtype,
210                        char *cbcharset,
211                        size_t cblength,
212                        char *cbencoding,
213                        char *cbid,
214                        void *cbuserdata),
215                      void (*PreMultiPartCallBack)
216                       (char *cbname,
217                        char *cbfilename,
218                        char *cbpartnum,
219                        char *cbdisp,
220                        void *cbcontent,
221                        char *cbtype,
222                        char *cbcharset,
223                        size_t cblength,
224                        char *cbencoding,
225                        char *cbid,
226                        void *cbuserdata),
227                      void (*PostMultiPartCallBack)
228                       (char *cbname,
229                        char *cbfilename,
230                        char *cbpartnum,
231                        char *cbdisp,
232                        void *cbcontent,
233                        char *cbtype,
234                        char *cbcharset,
235                        size_t cblength,
236                        char *cbencoding,
237                        char *cbid,
238                        void *cbuserdata),
239                       void *userdata,
240                       int dont_decode
241 );
242
243 typedef struct StrBuf StrBuf;
244
245 typedef struct _ConstStr {
246         const char *Key;
247         long len;
248 }ConstStr;
249 #define CKEY(a) (a).Key, (a).len
250
251 StrBuf* NewStrBuf(void);
252 StrBuf* NewStrBufDup(const StrBuf *CopyMe);
253 StrBuf* NewStrBufPlain(const char* ptr, int nChars);
254 long StrBufShrinkToFit(StrBuf *Buf, int Force);
255 void ReAdjustEmptyBuf(StrBuf *Buf, long ThreshHold, long NewSize);
256
257 int StrBufPlain(StrBuf *Buf, const char* ptr, int nChars);
258 StrBuf* _NewConstStrBuf(const char* StringConstant, size_t SizeOfStrConstant);
259 #define NewConstStrBuf(a) _NewConstStrBuf(a, sizeof(a))
260 void FreeStrBuf (StrBuf **FreeMe);
261 char *SmashStrBuf (StrBuf **SmashMe);
262 void HFreeStrBuf (void *VFreeMe);
263 int FlushStrBuf(StrBuf *buf);
264 int FLUSHStrBuf(StrBuf *buf); /* expensive but doesn't leave content behind for others to find in case of errors */
265
266 const char *ChrPtr(const StrBuf *Str);
267 int StrLength(const StrBuf *Str);
268 #define SKEY(a) ChrPtr(a), StrLength(a)
269 long StrBufPeek(StrBuf *Buf, const char* ptr, long nThChar, char PeekValue);
270
271 int StrBufTCP_read_line(StrBuf *buf, int *fd, int append, const char **Error);
272 int StrBufReadBLOB(StrBuf *Buf, int *fd, int append, long nBytes, const char **Error);
273 #define NNN_TERM 1
274 #define O_TERM 0
275 int StrBufReadBLOBBuffered(StrBuf *Buf, 
276                            StrBuf *IOBuf, 
277                            const char **BufPos,
278                            int *fd, 
279                            int append, 
280                            long nBytes, 
281                            int check, 
282                            const char **Error);
283 int StrBufTCP_read_buffered_line(StrBuf *Line, 
284                                  StrBuf *buf, 
285                                  int *fd, 
286                                  int timeout, 
287                                  int selectresolution, 
288                                  const char **Error);
289 int StrBufTCP_read_buffered_line_fast(StrBuf *Line, 
290                                       StrBuf *buf, 
291                                       const char **Pos,
292                                       int *fd, 
293                                       int timeout, 
294                                       int selectresolution, 
295                                       const char **Error);
296
297 int StrBufSipLine(StrBuf *LineBuf, StrBuf *Buf, const char **Ptr);
298 int StrBufExtract_token(StrBuf *dest, const StrBuf *Source, int parmnum, char separator);
299 int StrBufSub(StrBuf *dest, const StrBuf *Source, unsigned long Offset, size_t nChars);
300
301 unsigned long StrBufExtract_unsigned_long(const StrBuf* Source, int parmnum, char separator);
302 long StrBufExtract_long(const StrBuf* Source, int parmnum, char separator);
303 int StrBufExtract_int(const StrBuf* Source, int parmnum, char separator);
304 int StrBufNum_tokens(const StrBuf *source, char tok);
305 int StrBufRemove_token(StrBuf *Source, int parmnum, char separator);
306
307 int StrBufHaveNextToken(const StrBuf *Source, const char **pStart);
308 int StrBufExtract_NextToken(StrBuf *dest, const StrBuf *Source, const char **pStart, char separator);
309 int StrBufSkip_NTokenS(const StrBuf *Source, const char **pStart, char separator, int nTokens);
310 unsigned long StrBufExtractNext_unsigned_long(const StrBuf* Source, const char **pStart, char separator);
311 long StrBufExtractNext_long(const StrBuf* Source, const char **pStart, char separator);
312 int StrBufExtractNext_int(const StrBuf* Source, const char **pStart, char separator);
313
314
315 void StrBufAppendBufPlain(StrBuf *Buf, const char *AppendBuf, long AppendSize, unsigned long Offset);
316 void StrBufAppendBuf(StrBuf *Buf, const StrBuf *AppendBuf, unsigned long Offset);
317 size_t CurlFillStrBuf_callback(void *ptr, size_t size, size_t nmemb, void *stream);
318 void StrBufAppendPrintf(StrBuf *Buf, const char *format, ...);
319 #ifdef SHOW_ME_VAPPEND_PRINTF
320 /* so owe don't create an include depndency, this is just visible on demand. */
321 void StrBufVAppendPrintf(StrBuf *Buf, const char *format, va_list ap);
322 #endif
323 void StrBufPrintf(StrBuf *Buf, const char *format, ...) __attribute__((__format__(__printf__,2,3)));
324 void StrBufCutLeft(StrBuf *Buf, int nChars);
325 void StrBufCutRight(StrBuf *Buf, int nChars);
326 void StrBufCutAt(StrBuf *Buf, int AfternChars, const char *At);
327 void StrBufTrim(StrBuf *Buf);
328 void StrBufUpCase(StrBuf *Buf);
329 void StrBufLowerCase(StrBuf *Buf);
330 void StrBufStripSlashes(StrBuf *Dir, int RemoveTrailingSlash);
331 void StrBufEUid_unescapize(StrBuf *target, const StrBuf *source);
332 void StrBufEUid_escapize(StrBuf *target, const StrBuf *source);
333
334 void StrBufToUnixLF(StrBuf *buf);
335 void StrBufReplaceChars(StrBuf *buf, char search, char replace);
336
337 int CompressBuffer(StrBuf *Buf);
338 void StrBufConvert(StrBuf *ConvertBuf, StrBuf *TmpBuf, void *pic);
339 void ctdl_iconv_open(const char *tocode, const char *fromcode, void *pic);
340 void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset);
341 int StrBufDecodeBase64(StrBuf *Buf);
342 int StrBufDecodeHex(StrBuf *Buf);
343 int StrBufRFC2047encode(StrBuf **target, const StrBuf *source);
344 int StrBufSanitizeAscii(StrBuf *Buf, const char Mute);
345 #define LB                      (1)             /* Internal escape chars */
346 #define RB                      (2)
347 #define QU                      (3)
348 void StrBufUrlescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
349 void StrBufHexescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
350 long StrEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
351 long StrECMAEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
352 long StrHtmlEcmaEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
353 void StrMsgEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
354 void StrIcalEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
355
356 long StrTol(const StrBuf *Buf);
357 int StrToi(const StrBuf *Buf);
358 int StrBufIsNumber(const StrBuf *Buf);
359 long StrBuf_Utf8StrLen(StrBuf *Buf);
360 long StrBuf_Utf8StrCut(StrBuf *Buf, int maxlen);
361
362 const char *GuessMimeType(const char *data, size_t dlen);
363 const char* GuessMimeByFilename(const char *what, size_t len);
364
365 /* Run once at Programstart */
366 int LoadIconDir(const char *DirName);
367
368 /* Select the icon for a given MIME type */
369 const char *GetIconFilename(char *MimeType, size_t len);
370
371
372 /* tools */
373
374
375 int safestrncpy(char *dest, const char *src, size_t n);
376 int num_tokens (const char *source, char tok);
377 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
378 long grab_token(char **dest, const char *source, int parmnum, char separator);
379 int extract_int (const char *source, int parmnum);
380 long extract_long (const char *source, int parmnum);
381 unsigned long extract_unsigned_long(const char *source, int parmnum);
382 void CtdlInitBase64Table(void);
383 size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int linebreaks);
384 int CtdlDecodeBase64(char *dest, const char *source, size_t length);
385 unsigned int decode_hex(char *Source);
386 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen);
387 void StripSlashes(char *Dir, int TrailingSlash);
388 size_t striplt(char *);
389 int haschar(const char *st, int ch);
390 void remove_token(char *source, int parmnum, char separator);
391 void fmt_date(char *buf, size_t n, time_t thetime, int seconds);
392 int is_msg_in_sequence_set(const char *mset, long msgnum);
393 const char *memreadline(const char *start, char *buf, int maxlen);
394 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
395 #define IsEmptyStr(a) ((a)[0] == '\0')
396 #define num_parms(source)               num_tokens(source,(char)'|')
397 int stripout(char *str, char leftboundary, char rightboundary);
398 void stripallbut(char *str, char leftboundary, char rightboundary);
399 char *myfgets(char *s, int size, FILE *stream);
400 void urlesc(char *outbuf, size_t oblen, char *strbuf);
401 char *CtdlTempFileName(char *prefix1, int prefix2);
402 FILE *CtdlTempFile(void);
403 void generate_uuid(char *buf);
404 const char *bmstrcasestr(const char *text, const char *pattern);
405 const char *bmstrcasestr_len(const char *text, size_t textlen, const char *pattern, size_t patlen);
406 void CtdlMakeTempFileName(char *name, int len);
407 char *rfc2047encode(char *line, long length);
408 int is_msg_in_mset(const char *mset, long msgnum);
409 int pattern2(char *search, char *patn);
410 void stripltlen(char *, int *);
411 char *html_to_ascii(char *inputmsg, int msglen, int screenwidth, int do_citaformat);
412 void LoadEntityList(char *FileName);
413
414
415
416 /* vCard stuff */
417
418 #define CTDL_VCARD_MAGIC        0xa1f9
419
420 /* This data structure represents a vCard object currently in memory. */
421 struct vCard {
422         int magic;
423         int numprops;
424         struct vCardProp {
425                 char *name;
426                 char *value;
427         } *prop;
428 };
429
430
431 struct vCard *vcard_new(void);
432 void vcard_add_prop(struct vCard *v, char *propname, char *propvalue);
433 struct vCard *vcard_load(char *vtext);
434 struct vCard *VCardLoad(StrBuf *vbtext);
435
436 void vcard_free(struct vCard *);
437 void vcard_set_prop(struct vCard *v, char *name, char *value, int append);
438 char *vcard_get_prop(struct vCard *v, char *propname, int is_partial,
439                         int instance, int return_propname);
440 char *vcard_serialize(struct vCard *);
441 void vcard_fn_to_n(char *vname, char *n, size_t vname_size);
442 void remove_charset_attribute(char *strbuf);
443 long StrBufUnescape(StrBuf *Buf, int StripBlanks);
444
445 /*
446  * Hash list implementation for Citadel
447  */
448 #define HKEY(a) a, (sizeof(a) - 1)
449
450 typedef struct HashList HashList;
451
452 typedef struct HashKey HashKey;
453
454 typedef struct HashPos HashPos;
455
456 typedef void (*DeleteHashDataFunc)(void * Data);
457 typedef const char *(*PrintHashContent)(void * Data);
458 typedef int (*CompareFunc)(const void* Item1, const void*Item2);
459 typedef int (*HashFunc)(const char *Str, long Len);
460 typedef void (*TransitionFunc) (void *Item1, void *Item2, int Odd);
461 typedef void (*PrintHashDataFunc) (const char *Key, void *Item, int Odd);
462
463 int Flathash(const char *str, long len);
464 #define IKEY(a) (const char*) &a, sizeof(a)
465
466 HashList *NewHash(int Uniq, HashFunc F);
467 void DeleteHash(HashList **Hash);
468 void HDeleteHash(void *vHash);
469 int GetHash(HashList *Hash, const char *HKey, long HKLen, void **Data);
470 void Put(HashList *Hash, const char *HKey, long HKLen, void *Data, DeleteHashDataFunc DeleteIt);
471 int GetKey(HashList *Hash, char *HKey, long HKLen, void **Data);
472 int GetHashKeys(HashList *Hash, char ***List);
473 int dbg_PrintHash(HashList *Hash, PrintHashContent first, PrintHashContent Second);
474 int PrintHash(HashList *Hash, TransitionFunc Trans, PrintHashDataFunc PrintEntry);
475 HashPos *GetNewHashPos(HashList *Hash, int StepWidth);
476 int GetHashPosFromKey(HashList *Hash, const char *HKey, long HKLen, HashPos *At);
477 int DeleteEntryFromHash(HashList *Hash, HashPos *At);
478 int GetHashPosCounter(HashList *Hash, HashPos *At);
479 void DeleteHashPos(HashPos **DelMe);
480 int GetNextHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
481 int GetHashAt(HashList *Hash,long At, long *HKLen, const char **HashKey, void **Data);
482 void SortByHashKey(HashList *Hash, int Order);
483 void SortByHashKeyStr(HashList *Hash);
484 int GetCount(HashList *Hash);
485 const void *GetSearchPayload(const void *HashVoid);
486 void SortByPayload(HashList *Hash, CompareFunc SortBy);
487 void generic_free_handler(void *ptr);
488 void reference_free_handler(void *ptr);
489 int HashLittle(const void *key, size_t length);
490
491
492 void convert_spaces_to_underscores(char *str);
493
494 /*
495  * Convert 4 bytes char into an Integer.
496  * usefull for easy inexpensive hashing 
497  * of for char strings.
498  */
499 #define CHAR4TO_INT(a) ((int) (a[0] | (a[1]<<8) | (a[2]<<16) | (a[3]<<24)))
500
501 /* vNote implementation */
502
503 #define CTDL_VNOTE_MAGIC        0xa1fa
504
505 struct vnote {
506         int magic;
507         char *uid;
508         char *summary;
509         char *body;
510         int pos_left;
511         int pos_top;
512         int pos_width;
513         int pos_height;
514         int color_red;
515         int color_green;
516         int color_blue;
517 };
518
519
520
521 struct vnote *vnote_new(void);
522 struct vnote *vnote_new_from_str(char *s);
523 void vnote_free(struct vnote *v);
524 char *vnote_serialize(struct vnote *v);
525 void vnote_serialize_output_field(char *append_to, char *field, char *label);
526
527
528
529
530 /*
531  * Create JSON style structures in C plus serialize them to one string
532  */
533
534 typedef struct JsonValue JsonValue;
535
536
537 void DeleteJSONValue(void *vJsonValue);
538
539 JsonValue *NewJsonObject(const char *Key, long keylen);
540
541 JsonValue *NewJsonArray(const char *Key, long keylen);
542
543 JsonValue *NewJsonNumber(const char *Key, long keylen, long Number);
544
545 JsonValue *NewJsonBigNumber(const char *Key, long keylen, double Number);
546
547 JsonValue *NewJsonString(const char *Key, long keylen, StrBuf *CopyMe);
548
549 JsonValue *NewJsonPlainString(const char *Key, long keylen, const char *CopyMe, long len);
550
551 JsonValue *NewJsonNull(const char *Key, long keylen);
552
553 JsonValue *NewJsonBool(const char *Key, long keylen, int value);
554
555 void JsonArrayAppend(JsonValue *Array, JsonValue *Val);
556
557 void JsonObjectAppend(JsonValue *Array, JsonValue *Val);
558
559 void SerializeJson(StrBuf *Target, JsonValue *Val, int FreeVal);
560
561
562
563 /*
564  * Citadels Wildfire implementation, see 
565  * http://www.firephp.org/Wiki/Reference/Protocol
566  * and http://wildfirehq.org/ for details
567  */
568 typedef void (*AddHeaderFunc)(const char *HdrName, const char *HdrValue);
569
570 typedef enum _WF_MessageType {
571         eLOG, 
572         eINFO,
573         eWARN,
574         eERROR,
575         eTRACE,
576         eEXCEPTION
577 } WF_MessageType;
578
579 JsonValue *WildFireException(const char *Filename, long FileLen,
580                              long LineNo,
581                              StrBuf *Message,
582                              int StackOffset);
583
584 void WildFireAddArray(JsonValue *ReportBase, JsonValue *Array, WF_MessageType Type);
585
586 JsonValue *WildFireMessagePlain(const char *Filename, long fnlen,
587                                    long LineNo,
588                                    const char *Message, long len, 
589                                    WF_MessageType Type);
590
591 JsonValue *WildFireMessage(const char *Filename, long fnlen,
592                            long lineno,
593                            StrBuf *Msg, 
594                            WF_MessageType Type);
595
596 void WildFireInitBacktrace(const char *argvNull, int AddBaseFrameSkip);
597
598 void WildFireSerializePayload(StrBuf *JsonBuffer, StrBuf *OutBuf, int *MsgCount, AddHeaderFunc AddHdr);
599
600 #define WF_MAJOR "1"
601 #define WF_STRUCTINDEX "1"
602 #define WF_SUB "1"
603
604
605 #endif  // LIBCITADEL_H