More debugging
[citadel.git] / citadel / sysdep_decls.h
1
2 #ifndef SYSDEP_DECLS_H
3 #define SYSDEP_DECLS_H
4
5 /*
6  * Uncomment this #define if you are a Citadel developer tracking
7  * down memory leaks in the server.  Do NOT do this on a production
8  * system because it definitely incurs a lot of additional overhead.
9 #define DEBUG_MEMORY_LEAKS
10  */
11
12
13 #include <stdarg.h>
14 #include "sysdep.h"
15
16 #ifdef HAVE_PTHREAD_H
17 #include <pthread.h>
18 #endif
19
20 #ifdef HAVE_DB_H
21 #include <db.h>
22 #elif defined(HAVE_DB4_DB_H)
23 #include <db4/db.h>
24 #else
25 #error Neither <db.h> nor <db4/db.h> was found by configure. Install db4-devel.
26 #endif
27
28
29 #if DB_VERSION_MAJOR < 4 || DB_VERSION_MINOR < 1
30 #error Citadel requires Berkeley DB v4.1 or newer.  Please upgrade.
31 #endif
32
33 #include "server.h"
34 #include "database.h"
35
36 #if SIZEOF_SIZE_T == SIZEOF_INT 
37 #define SIZE_T_FMT "%d"
38 #else
39 #define SIZE_T_FMT "%ld"
40 #endif
41
42 void cputbuf(const StrBuf *Buf);
43
44 #ifdef __GNUC__
45 void cprintf (const char *format, ...) __attribute__((__format__(__printf__,1,2)));
46 #else
47 void cprintf (const char *format, ...);
48 #endif
49
50 void init_sysdep (void);
51 int ctdl_tcp_server(char *ip_addr, int port_number, int queue_len, char *errormessage);
52 int ctdl_uds_server(char *sockpath, int queue_len, char *errormessage);
53 void buffer_output(void);
54 void unbuffer_output(void);
55 void flush_output(void);
56 int client_write (const char *buf, int nbytes);
57 int client_read_to (char *buf, int bytes, int timeout);
58 int client_read (char *buf, int bytes);
59 int client_getln (char *buf, int maxbytes);
60 int CtdlClientGetLine(StrBuf *Target);
61 int client_read_blob(StrBuf *Target, int bytes, int timeout);
62 void client_set_inbound_buf(long N);
63 int client_read_random_blob(StrBuf *Target, int timeout);
64 void client_close(void);
65 void sysdep_master_cleanup (void);
66 void kill_session (int session_to_kill);
67 void start_daemon (int do_close_stdio);
68 void checkcrash(void);
69 void cmd_nset (char *cmdbuf);
70 int convert_login (char *NameToConvert);
71 void *worker_thread (void *arg);
72 void init_master_fdset(void);
73 void create_worker(void);
74 void *select_on_master (void *arg);
75
76 extern volatile int exit_signal;
77 extern volatile int shutdown_and_halt;
78 extern volatile int running_as_daemon;
79 extern volatile int restart_server;
80
81 extern int verbosity;
82 extern int rescan[];
83
84
85 extern int SyslogFacility(char *name);
86
87
88 /*
89  * Typdefs and stuff to abstract pthread for Citadel
90  */
91 #ifdef HAVE_PTHREAD_H
92
93 typedef pthread_t       citthread_t;
94 typedef pthread_key_t   citthread_key_t;
95 typedef pthread_mutex_t citthread_mutex_t;
96 typedef pthread_cond_t  citthread_cond_t;
97 typedef pthread_attr_t  citthread_attr_t;
98
99
100 #define citthread_mutex_init    pthread_mutex_init
101 #define citthread_cond_init     pthread_cond_init
102 #define citthread_attr_init     pthread_attr_init
103 #define citthread_mutex_trylock pthread_mutex_trylock
104 #define citthread_mutex_lock    pthread_mutex_lock
105 #define citthread_mutex_unlock  pthread_mutex_unlock
106 #define citthread_key_create    pthread_key_create
107 #define citthread_getspecific   pthread_getspecific
108 #define citthread_setspecific   pthread_setspecific
109 #define citthread_mutex_destroy pthread_mutex_destroy
110 #define citthread_cond_destroy  pthread_cond_destroy
111 #define citthread_attr_destroy  pthread_attr_destroy
112
113 #define citthread_kill          pthread_kill
114 #define citthread_cond_signal   pthread_cond_signal
115 #define citthread_cancel        pthread_cancel
116 #define citthread_cond_timedwait        pthread_cond_timedwait
117 #define citthread_equal         pthread_equal
118 #define citthread_self          pthread_self
119 #define citthread_create        pthread_create
120 #define citthread_attr_setstacksize     pthread_attr_setstacksize
121 #define citthread_join          pthread_join
122 #define citthread_cleanup_push  pthread_cleanup_push
123 #define citthread_cleanup_pop   pthread_cleanup_pop
124
125
126 #endif /* HAVE_PTHREAD_H */
127
128
129 #ifdef DEBUG_MEMORY_LEAKS
130 #define malloc(x) tracked_malloc(x, __FILE__, __LINE__)
131 #define realloc(x,y) tracked_realloc(x, y, __FILE__, __LINE__)
132 #undef strdup
133 #define strdup(x) tracked_strdup(x, __FILE__, __LINE__)
134 #define free(x) tracked_free(x)
135 void *tracked_malloc(size_t size, char *file, int line);
136 void *tracked_realloc(void *ptr, size_t size, char *file, int line);
137 void tracked_free(void *ptr);
138 char *tracked_strdup(const char *s, char *file, int line);
139 void dump_heap(void);
140 #endif
141
142 #endif /* SYSDEP_DECLS_H */