Grabbed another chunk of code out of user_ops.c, purge_user()
[citadel.git] / citadel / include / ctdl_module.h
1 /* $Id$ */
2
3 #ifndef CTDL_MODULE_H
4 #define CTDL_MODULE_H
5
6 #include "sysdep.h"
7 #include <stdlib.h>
8 #include <unistd.h>
9 #include <stdio.h>
10 #include <fcntl.h>
11 #include <ctype.h>
12 #include <signal.h>
13 #include <pwd.h>
14 #include <errno.h>
15 #include <sys/types.h>
16
17 #if TIME_WITH_SYS_TIME
18 # include <sys/time.h>
19 # include <time.h>
20 #else
21 # if HAVE_SYS_TIME_H
22 #  include <sys/time.h>
23 # else
24 #  include <time.h>
25 # endif
26 #endif
27
28 #include <sys/wait.h>
29 #include <string.h>
30 #ifdef HAVE_STRINGS_H
31 #include <strings.h>
32 #endif
33 #include <limits.h>
34
35
36 #ifndef HAVE_SNPRINTF
37 #include "snprintf.h"
38 #endif
39
40
41 #include <libcitadel.h>
42
43 #include "server.h"
44 #include "sysdep_decls.h"
45 #include "msgbase.h"
46 #include "threads.h"
47 #include "citadel_dirs.h"
48 #include "context.h"
49
50 /*
51  * define macros for module init stuff
52  */
53  
54 #define CTDL_MODULE_INIT(module_name) char *ctdl_module_##module_name##_init (int threading)
55
56 #define CTDL_INIT_CALL(module_name) ctdl_module_##module_name##_init (threading)
57
58 #define CTDL_MODULE_UPGRADE(module_name) char *ctdl_module_##module_name##_upgrade (void)
59
60 #define CTDL_UPGRADE_CALL(module_name) ctdl_module_##module_name##_upgrade ()
61
62
63 /*
64  * Prototype for making log entries in Citadel.
65  */
66
67 void CtdlLogPrintf(enum LogLevel loglevel, const char *format, ...);
68
69 #define CtdlAideMessage(TEXT, SUBJECT) quickie_message("Citadel",NULL,NULL,AIDEROOM,TEXT,FMT_CITADEL,SUBJECT) 
70
71 /*
72  * Hook functions available to modules.
73  */
74
75 void CtdlRegisterSessionHook(void (*fcn_ptr)(void), int EventType);
76 void CtdlUnregisterSessionHook(void (*fcn_ptr)(void), int EventType);
77
78 void CtdlRegisterUserHook(void (*fcn_ptr)(struct ctdluser *), int EventType);
79 void CtdlUnregisterUserHook(void (*fcn_ptr)(struct ctdluser *), int EventType);
80
81 void CtdlRegisterXmsgHook(int (*fcn_ptr)(char *, char *, char *, char *), int order);
82 void CtdlUnregisterXmsgHook(int (*fcn_ptr)(char *, char *, char *, char *), int order);
83
84 void CtdlRegisterMessageHook(int (*handler)(struct CtdlMessage *),
85                                                         int EventType);
86 void CtdlUnregisterMessageHook(int (*handler)(struct CtdlMessage *),
87                                                         int EventType);
88
89 void CtdlRegisterNetprocHook(int (*handler)(struct CtdlMessage *, char *) );
90 void CtdlUnregisterNetprocHook(int (*handler)(struct CtdlMessage *, char *) );
91
92 void CtdlRegisterRoomHook(int (*fcn_ptr)(struct ctdlroom *) );
93 void CtdlUnregisterRoomHook(int (*fnc_ptr)(struct ctdlroom *) );
94
95 void CtdlRegisterDeleteHook(void (*handler)(char *, long) );
96 void CtdlUnregisterDeleteHook(void (*handler)(char *, long) );
97
98 void CtdlRegisterCleanupHook(void (*fcn_ptr)(void));
99 void CtdlUnregisterCleanupHook(void (*fcn_ptr)(void));
100
101 void CtdlRegisterProtoHook(void (*handler)(char *), char *cmd, char *desc);
102
103 void CtdlRegisterServiceHook(int tcp_port,
104                              char *sockpath,
105                              void (*h_greeting_function) (void),
106                              void (*h_command_function) (void),
107                              void (*h_async_function) (void),
108                              const char *ServiceName
109 );
110 void CtdlUnregisterServiceHook(int tcp_port,
111                         char *sockpath,
112                         void (*h_greeting_function) (void),
113                         void (*h_command_function) (void),
114                         void (*h_async_function) (void)
115 );
116
117 void CtdlRegisterFixedOutputHook(char *content_type,
118                         void (*output_function) (char *supplied_data, int len)
119 );
120 void CtdlUnRegisterFixedOutputHook(char *content_type);
121
122 void CtdlRegisterMaintenanceThread(char *name, void *(*thread_proc) (void *arg));
123
124 void CtdlRegisterSearchFuncHook(void (*fcn_ptr)(int *, long **, char *), char *name);
125
126
127 /*
128  * Directory services hooks for LDAP etc
129  */
130
131 #define DIRECTORY_USER_DEL 1    // Delete a user entry
132 #define DIRECTORY_CREATE_HOST 2 // Create a host entry if not already there.
133 #define DIRECTORY_CREATE_OBJECT 3       // Create a new object for directory entry
134 #define DIRECTORY_ATTRIB_ADD 4  // Add an attribute to the directory entry object
135 #define DIRECTORY_SAVE_OBJECT 5 // Save the object to the directory service
136 #define DIRECTORY_FREE_OBJECT 6 // Free the object and its attributes
137
138 int CtdlRegisterDirectoryServiceFunc(int (*func)(char *cn, char *ou, void **object), int cmd, char *module);
139 int CtdlDoDirectoryServiceFunc(char *cn, char *ou, void **object, char *module, int cmd);
140
141 /* TODODRW: This needs to be changed into a hook type interface
142  * for now we have this horrible hack
143  */
144 void CtdlModuleStartCryptoMsgs(char *ok_response, char *nosup_response, char *error_response);
145
146
147 /*
148  * Citadel Threads API
149  */
150 struct CtdlThreadNode *CtdlThreadCreate(char *name, long flags, void *(*thread_func) (void *arg), void *args);
151 struct CtdlThreadNode *CtdlThreadSchedule(char *name, long flags, void *(*thread_func) (void *arg), void *args, time_t when);
152 void CtdlThreadSleep(int secs);
153 void CtdlThreadStop(struct CtdlThreadNode *thread);
154 int CtdlThreadCheckStop(void);
155 /* void CtdlThreadCancel2(struct CtdlThreadNode *thread); Leave this out, it should never be needed */
156 const char *CtdlThreadName(const char *name);
157 struct CtdlThreadNode *CtdlThreadSelf(void);
158 int CtdlThreadGetCount(void);
159 int CtdlThreadGetWorkers(void);
160 double CtdlThreadGetWorkerAvg(void);
161 double CtdlThreadGetLoadAvg(void);
162 void CtdlThreadGC(void);
163 void CtdlThreadStopAll(void);
164 int CtdlThreadSelect(int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);
165 void CtdlThreadAllocTSD(void);
166
167 #define CTDLTHREAD_BIGSTACK     0x0001
168 #define CTDLTHREAD_WORKER       0x0002
169
170 /* Macros to speed up getting outr thread */
171
172 #define MYCURSORS       (((ThreadTSD*)pthread_getspecific(ThreadKey))->cursors)
173 #define MYTID           (((ThreadTSD*)pthread_getspecific(ThreadKey))->tid)
174 #define CT              (((ThreadTSD*)pthread_getspecific(ThreadKey))->self)
175
176 /** return the current context list as an array and do it in a safe manner
177  * The returned data is a copy so only reading is useful
178  * The number of contexts is returned in count.
179  * Beware, this does not copy any of the data pointed to by the context.
180  * This means that you can not rely on things like the redirect buffer being valid.
181  * You must free the returned pointer when done.
182  */
183 struct CitContext *CtdlGetContextArray (int *count);
184 void CtdlFillSystemContext(struct CitContext *context, char *name);
185
186 int CtdlTrySingleUser(void);
187 void CtdlEndSingleUser(void);
188 int CtdlWantSingleUser(void);
189 int CtdlIsSingleUser(void);
190
191
192 int CtdlIsUserLoggedIn (char *user_name);
193 int CtdlIsUserLoggedInByNum (int usernum);
194
195
196 /*
197  * CtdlGetCurrentMessageNumber()  -  Obtain the current highest message number in the system
198  * This provides a quick way to initialise a variable that might be used to indicate
199  * messages that should not be processed. EG. a new Sieve script will use this
200  * to record determine that messages older than this should not be processed.
201  * This function is defined in control.c
202  */
203 long CtdlGetCurrentMessageNumber(void);
204
205
206
207 /*
208  * Expose various room operation functions from room_ops.c to the modules API
209  */
210
211 unsigned CtdlCreateRoom(char *new_room_name,
212                         int new_room_type,
213                         char *new_room_pass,
214                         int new_room_floor,
215                         int really_create,
216                         int avoid_access,
217                         int new_room_view);
218 int CtdlGetRoom(struct ctdlroom *qrbuf, char *room_name);
219 int CtdlGetRoomLock(struct ctdlroom *qrbuf, char *room_name);
220 int CtdlDoIHavePermissionToDeleteThisRoom(struct ctdlroom *qr);
221 void CtdlRoomAccess(struct ctdlroom *roombuf, struct ctdluser *userbuf,
222                 int *result, int *view);
223 void CtdlPutRoomLock(struct ctdlroom *qrbuf);
224 void CtdlForEachRoom(void (*CallBack)(struct ctdlroom *EachRoom, void *out_data),
225         void *in_data);
226 void CtdlDeleteRoom(struct ctdlroom *qrbuf);
227 int CtdlRenameRoom(char *old_name, char *new_name, int new_floor);
228 void CtdlUserGoto (char *where, int display_result, int transiently,
229                         int *msgs, int *new);
230 struct floor *CtdlGetCachedFloor(int floor_num);
231 void CtdlScheduleRoomForDeletion(struct ctdlroom *qrbuf);
232 void CtdlGetFloor (struct floor *flbuf, int floor_num);
233 void CtdlPutFloor (struct floor *flbuf, int floor_num);
234 void CtdlPutFloorLock(struct floor *flbuf, int floor_num);
235 int CtdlGetFloorByName(const char *floor_name);
236 int CtdlGetFloorByNameLock(const char *floor_name);
237 int CtdlGetAvailableFloor(void);
238 int CtdlIsNonEditable(struct ctdlroom *qrbuf);
239 void CtdlPutRoom(struct ctdlroom *);
240
241 /*
242  * Possible return values for CtdlRenameRoom()
243  */
244 enum {
245         crr_ok,                         /* success */
246         crr_room_not_found,             /* room not found */
247         crr_already_exists,             /* new name already exists */
248         crr_noneditable,                /* cannot edit this room */
249         crr_invalid_floor,              /* target floor does not exist */
250         crr_access_denied               /* not allowed to edit this room */
251 };
252
253
254
255 /*
256  * API declarations from citserver.h
257  */
258 int CtdlAccessCheck(int);
259 /* 'required access level' values which may be passed to CtdlAccessCheck()
260  */
261 enum {
262         ac_none,
263         ac_logged_in,
264         ac_room_aide,
265         ac_aide,
266         ac_internal
267 };
268
269
270
271 /*
272  * API declarations from serv_extensions.h
273  */
274 void CtdlModuleDoSearch(int *num_msgs, long **search_msgs, char *search_string, char *func_name);
275 /* 
276  * Global system configuration.  Don't change anything here.  It's all in dtds/config-defs.h now.
277  */
278 struct config {
279 #include "datadefinitions.h"
280 #include "dtds/config-defs.h"
281 #include "undef_data.h"
282 };
283
284 extern struct config config;
285
286
287
288 /*
289  * Expose API calls from user_ops.c
290  */
291 int CtdlGetUser(struct ctdluser *usbuf, char name[]);
292 int CtdlGetUserLock(struct ctdluser *usbuf, char *name);
293 void CtdlPutUser(struct ctdluser *usbuf);
294 void CtdlPutUserLock(struct ctdluser *usbuf);
295 int CtdlGetUserByNumber(struct ctdluser *usbuf, long number);
296 void CtdlGetRelationship(struct visit *vbuf,
297                         struct ctdluser *rel_user,
298                         struct ctdlroom *rel_room);
299 void CtdlSetRelationship(struct visit *newvisit,
300                         struct ctdluser *rel_user,
301                         struct ctdlroom *rel_room);
302 void CtdlMailboxName(char *buf, size_t n, const struct ctdluser *who, const char *prefix);
303
304 int CtdlLoginExistingUser(char *authname, char *username);
305
306 /*
307  * Values which may be returned by CtdlLoginExistingUser()
308  */
309 enum {
310         pass_ok,
311         pass_already_logged_in,
312         pass_no_user,
313         pass_internal_error,
314         pass_wrong_password
315 };
316
317 int CtdlTryPassword(char *password);
318 /*
319  * Values which may be returned by CtdlTryPassword()
320  */
321 enum {
322         login_ok,
323         login_already_logged_in,
324         login_too_many_users,
325         login_not_found
326 };
327
328 void CtdlUserLogout(void);
329
330
331
332
333 /*
334  * Expose API calls from msgbase.c
335  */
336 char *CtdlGetSysConfig(char *sysconfname);
337 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata);
338
339
340
341
342 /*
343  * Expose API calls from euidindex.c
344  */
345 long CtdlLocateMessageByEuid(char *euid, struct ctdlroom *qrbuf);
346
347
348 #endif /* CTDL_MODULE_H */