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