]> code.citadel.org Git - citadel.git/blob - citadel/serv_expire.c
* Moved num_parms() and all the extract() type functions into tools.c
[citadel.git] / citadel / serv_expire.c
1 /*
2  * serv_expire.c
3  *
4  * This module handles the expiry of old messages and the purging of old users.
5  *
6  */
7 /* $Id$ */
8
9
10 /*
11  * A brief technical discussion:
12  *
13  * Several of the purge operations found in this module operate in two
14  * stages: the first stage generates a linked list of objects to be deleted,
15  * then the second stage deletes all listed objects from the database.
16  *
17  * At first glance this may seem cumbersome and unnecessary.  The reason it is
18  * implemented in this way is because GDBM (and perhaps some other backends we
19  * may hook into in the future) explicitly do _not_ support the deletion of
20  * records from a file while the file is being traversed.  The delete operation
21  * will succeed, but the traversal is not guaranteed to visit every object if
22  * this is done.  Therefore we utilize the two-stage purge.
23  */
24
25
26 #include <stdlib.h>
27 #include <unistd.h>
28 #include <stdio.h>
29 #include <fcntl.h>
30 #include <signal.h>
31 #include <pwd.h>
32 #include <errno.h>
33 #include <sys/types.h>
34 #include <sys/time.h>
35 #include <sys/wait.h>
36 #include <string.h>
37 #include <limits.h>
38 #include <pthread.h>
39 #include "citadel.h"
40 #include "server.h"
41 #include <syslog.h>
42 #include <time.h>
43 #include "sysdep_decls.h"
44 #include "citserver.h"
45 #include "support.h"
46 #include "config.h"
47 #include "dynloader.h"
48 #include "room_ops.h"
49 #include "policy.h"
50 #include "database.h"
51 #include "msgbase.h"
52 #include "user_ops.h"
53 #include "control.h"
54 #include "tools.h"
55
56
57 struct oldvisit {
58         char v_roomname[ROOMNAMELEN];
59         long v_generation;
60         long v_lastseen;
61         unsigned int v_flags;
62         };
63
64 struct PurgeList {
65         struct PurgeList *next;
66         char name[ROOMNAMELEN]; /* use the larger of username or roomname */
67         };
68
69 struct VPurgeList {
70         struct VPurgeList *next;
71         long vp_roomnum;
72         long vp_roomgen;
73         long vp_usernum;
74         };
75
76 struct ValidRoom {
77         struct ValidRoom *next;
78         long vr_roomnum;
79         long vr_roomgen;
80         };
81
82 struct ValidUser {
83         struct ValidUser *next;
84         long vu_usernum;
85         };
86
87 struct PurgeList *UserPurgeList = NULL;
88 struct PurgeList *RoomPurgeList = NULL;
89 struct ValidRoom *ValidRoomList = NULL;
90 struct ValidUser *ValidUserList = NULL;
91 int messages_purged;
92
93 extern struct CitContext *ContextList;
94
95 #define MODULE_NAME     "Expire old messages, users, rooms"
96 #define MODULE_AUTHOR   "Art Cancro"
97 #define MODULE_EMAIL    "ajc@uncnsrd.mt-kisco.ny.us"
98 #define MAJOR_VERSION   0
99 #define MINOR_VERSION   1
100
101 static struct DLModule_Info info = {
102         MODULE_NAME,
103         MODULE_AUTHOR,
104         MODULE_EMAIL,
105         MAJOR_VERSION,
106         MINOR_VERSION
107         };
108
109 void DoPurgeMessages(struct quickroom *qrbuf) {
110         struct ExpirePolicy epbuf;
111         long delnum;
112         time_t xtime, now;
113         char msgid[64];
114         int a;
115
116         messages_purged = 0;
117         time(&now);
118         GetExpirePolicy(&epbuf, qrbuf);
119         
120         /*
121         lprintf(9, "ExpirePolicy for <%s> is <%d> <%d>\n",
122                 qrbuf->QRname, epbuf.expire_mode, epbuf.expire_value);
123         */
124
125         /* If the room is set to never expire messages ... do nothing */
126         if (epbuf.expire_mode == EXPIRE_NEXTLEVEL) return;
127         if (epbuf.expire_mode == EXPIRE_MANUAL) return;
128
129         begin_critical_section(S_QUICKROOM);
130         get_msglist(qrbuf);
131         
132         /* Nothing to do if there aren't any messages */
133         if (CC->num_msgs == 0) {
134                 end_critical_section(S_QUICKROOM);
135                 return;
136                 }
137
138         /* If the room is set to expire by count, do that */
139         if (epbuf.expire_mode == EXPIRE_NUMMSGS) {
140                 while (CC->num_msgs > epbuf.expire_value) {
141                         delnum = MessageFromList(0);
142                         lprintf(5, "Expiring message %ld\n", delnum);
143                         cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
144                         memcpy(&CC->msglist[0], &CC->msglist[1],
145                                 (sizeof(long)*(CC->num_msgs - 1)));
146                         CC->num_msgs = CC->num_msgs - 1;
147                         ++messages_purged;
148                         }
149                 }
150
151         /* If the room is set to expire by age... */
152         if (epbuf.expire_mode == EXPIRE_AGE) {
153                 for (a=0; a<(CC->num_msgs); ++a) {
154                         delnum = MessageFromList(a);
155                         sprintf(msgid, "%ld", delnum);
156                         xtime = output_message(msgid, MT_DATE, 0, 0);
157
158                         if ((xtime > 0L)
159                            && (now - xtime > (time_t)(epbuf.expire_value * 86400L))) {
160                                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
161                                 SetMessageInList(a, 0L);
162                                 lprintf(5, "Expiring message %ld\n", delnum);
163                                 }
164                         }
165                 }
166         CC->num_msgs = sort_msglist(CC->msglist, CC->num_msgs);
167         put_msglist(qrbuf);
168         end_critical_section(S_QUICKROOM);
169         }
170
171 void PurgeMessages(void) {
172         lprintf(5, "PurgeMessages() called\n");
173         ForEachRoom(DoPurgeMessages);
174         }
175
176
177 void DoPurgeRooms(struct quickroom *qrbuf) {
178         time_t now, age;
179         struct PurgeList *pptr;
180
181         /* Any of these attributes render a room non-purgable */
182         if (qrbuf->QRflags & QR_PERMANENT) return;
183         if (qrbuf->QRflags & QR_DIRECTORY) return;
184         if (qrbuf->QRflags & QR_NETWORK) return;
185         if (qrbuf->QRflags & QR_MAILBOX) return;
186         if (is_noneditable(qrbuf)) return;
187
188         /* Otherwise, check the date of last modification */
189         time(&now);
190         age = now - (qrbuf->QRmtime);
191         lprintf(9, "<%s> is <%ld> seconds old\n", qrbuf->QRname, age);
192         if ( (qrbuf->QRmtime > 0L)
193            && (age > (time_t)(config.c_roompurge * 86400L))) {
194                 
195                 pptr = (struct PurgeList *) malloc(sizeof(struct PurgeList));
196                 pptr->next = RoomPurgeList;
197                 strcpy(pptr->name, qrbuf->QRname);
198                 RoomPurgeList = pptr;
199
200                 }
201         }
202
203
204 int PurgeRooms(void) {
205         struct PurgeList *pptr;
206         int num_rooms_purged = 0;
207         struct quickroom qrbuf;
208
209         lprintf(5, "PurgeRooms() called\n");
210         if (config.c_roompurge > 0) {
211                 ForEachRoom(DoPurgeRooms);
212                 }
213
214         while (RoomPurgeList != NULL) {
215                 if (getroom(&qrbuf, RoomPurgeList->name) == 0) {
216                         delete_room(&qrbuf);
217                         }
218                 pptr = RoomPurgeList->next;
219                 free(RoomPurgeList);
220                 RoomPurgeList = pptr;
221                 ++num_rooms_purged;
222                 }
223
224         lprintf(5, "Purged %d rooms.\n", num_rooms_purged);
225         return(num_rooms_purged);
226         }
227
228
229 void do_user_purge(struct usersupp *us) {
230         int purge;
231         time_t now;
232         time_t purge_time;
233         struct PurgeList *pptr;
234
235         /* Set purge time; if the user overrides the system default, use it */
236         if (us->USuserpurge > 0) {
237                 purge_time = ((time_t)us->USuserpurge) * 86400L;
238                 }
239         else {
240                 purge_time = ((time_t)config.c_userpurge) * 86400L;
241                 }
242
243         /* The default rule is to not purge. */
244         purge = 0;
245
246         /* If the user hasn't called in two months, his/her account
247          * has expired, so purge the record.
248          */
249         now = time(NULL);
250         if ((now - us->lastcall) > purge_time) purge = 1;
251
252         /* If the user set his/her password to 'deleteme', he/she
253          * wishes to be deleted, so purge the record.
254          */
255         if (!strcasecmp(us->password, "deleteme")) purge = 1;
256
257         /* If the record is marked as permanent, don't purge it.
258          */
259         if (us->flags & US_PERM) purge = 0;
260
261         /* If the access level is 0, the record should already have been
262          * deleted, but maybe the user was logged in at the time or something.
263          * Delete the record now.
264          */
265         if (us->axlevel == 0) purge = 1;
266
267         /* 0 calls is impossible.  If there are 0 calls, it must
268          * be a corrupted record, so purge it.
269          */
270         if (us->timescalled == 0) purge = 1;
271
272         if (purge == 1) {
273                 pptr = (struct PurgeList *) malloc(sizeof(struct PurgeList));
274                 pptr->next = UserPurgeList;
275                 strcpy(pptr->name, us->fullname);
276                 UserPurgeList = pptr;
277                 }
278
279         }
280
281
282
283 int PurgeUsers(void) {
284         struct PurgeList *pptr;
285         int num_users_purged = 0;
286
287         lprintf(5, "PurgeUsers() called\n");
288         if (config.c_userpurge > 0) {
289                 ForEachUser(do_user_purge);
290                 }
291
292         while (UserPurgeList != NULL) {
293                 purge_user(UserPurgeList->name);
294                 pptr = UserPurgeList->next;
295                 free(UserPurgeList);
296                 UserPurgeList = pptr;
297                 ++num_users_purged;
298                 }
299
300         lprintf(5, "Purged %d users.\n", num_users_purged);
301         return(num_users_purged);
302         }
303
304 void AddValidUser(struct usersupp *usbuf) {
305         struct ValidUser *vuptr;
306
307         vuptr = (struct ValidUser *)malloc(sizeof(struct ValidUser));
308         vuptr->next = ValidUserList;
309         vuptr->vu_usernum = usbuf->usernum;
310         ValidUserList = vuptr;
311         }
312
313 void AddValidRoom(struct quickroom *qrbuf) {
314         struct ValidRoom *vrptr;
315
316         vrptr = (struct ValidRoom *)malloc(sizeof(struct ValidRoom));
317         vrptr->next = ValidRoomList;
318         vrptr->vr_roomnum = qrbuf->QRnumber;
319         vrptr->vr_roomgen = qrbuf->QRgen;
320         ValidRoomList = vrptr;
321         }
322
323
324 /*
325  * Purge visits
326  *
327  * This is a really cumbersome "garbage collection" function.  We have to
328  * delete visits which refer to rooms and/or users which no longer exist.  In
329  * order to prevent endless traversals of the room and user files, we first
330  * build linked lists of rooms and users which _do_ exist on the system, then
331  * traverse the visit file, checking each record against those two lists and
332  * purging the ones that do not have a match on _both_ lists.  (Remember, if
333  * either the room or user being referred to is no longer on the system, the
334  * record is completely useless.)
335  */
336 int PurgeVisits(void) {
337         struct cdbdata *cdbvisit;
338         struct visit vbuf;
339         struct VPurgeList *VisitPurgeList = NULL;
340         struct VPurgeList *vptr;
341         int purged = 0;
342         char IndexBuf[32];
343         int IndexLen;
344         struct ValidRoom *vrptr;
345         struct ValidUser *vuptr;
346         int RoomIsValid, UserIsValid;
347
348         /* First, load up a table full of valid room/gen combinations */
349         ForEachRoom(AddValidRoom);
350
351         /* Then load up a table full of valid user numbers */
352         ForEachUser(AddValidUser);
353
354         /* Now traverse through the visits, purging irrelevant records... */
355         cdb_rewind(CDB_VISIT);
356         while(cdbvisit = cdb_next_item(CDB_VISIT), cdbvisit != NULL) {
357                 memset(&vbuf, 0, sizeof(struct visit));
358                 memcpy(&vbuf, cdbvisit->ptr,
359                         ( (cdbvisit->len > sizeof(struct visit)) ?
360                         sizeof(struct visit) : cdbvisit->len) );
361                 cdb_free(cdbvisit);
362
363                 RoomIsValid = 0;
364                 UserIsValid = 0;
365
366                 /* Check to see if the room exists */
367                 for (vrptr=ValidRoomList; vrptr!=NULL; vrptr=vrptr->next) {
368                         if ( (vrptr->vr_roomnum==vbuf.v_roomnum)
369                              && (vrptr->vr_roomgen==vbuf.v_roomgen))
370                                 RoomIsValid = 1;
371                         }
372
373                 /* Check to see if the user exists */
374                 for (vuptr=ValidUserList; vuptr!=NULL; vuptr=vuptr->next) {
375                         if (vuptr->vu_usernum == vbuf.v_usernum)
376                                 UserIsValid = 1;
377                         }
378
379                 /* Put the record on the purge list if it's dead */
380                 if ((RoomIsValid==0) || (UserIsValid==0)) {
381                         vptr = (struct VPurgeList *)
382                                 malloc(sizeof(struct VPurgeList));
383                         vptr->next = VisitPurgeList;
384                         vptr->vp_roomnum = vbuf.v_roomnum;
385                         vptr->vp_roomgen = vbuf.v_roomgen;
386                         vptr->vp_usernum = vbuf.v_usernum;
387                         VisitPurgeList = vptr;
388                         }
389
390                 }
391
392         /* Free the valid room/gen combination list */
393         while (ValidRoomList != NULL) {
394                 vrptr = ValidRoomList->next;
395                 free(ValidRoomList);
396                 ValidRoomList = vrptr;
397                 }
398
399         /* Free the valid user list */
400         while (ValidUserList != NULL) {
401                 vuptr = ValidUserList->next;
402                 free(ValidUserList);
403                 ValidUserList = vuptr;
404                 }
405
406         /* Now delete every visit on the purged list */
407         while (VisitPurgeList != NULL) {
408                 IndexLen = GenerateRelationshipIndex(IndexBuf,
409                                 VisitPurgeList->vp_roomnum,
410                                 VisitPurgeList->vp_roomgen,
411                                 VisitPurgeList->vp_usernum);
412                 cdb_delete(CDB_VISIT, IndexBuf, IndexLen);
413                 vptr = VisitPurgeList->next;
414                 free(VisitPurgeList);
415                 VisitPurgeList = vptr;
416                 ++purged;
417                 }
418         
419         return(purged);
420         }
421
422
423 void cmd_expi(char *argbuf) {
424         char cmd[256];
425         int retval;
426
427
428         if ((!(CC->logged_in))&&(!(CC->internal_pgm))) {
429                 cprintf("%d Not logged in.\n",ERROR+NOT_LOGGED_IN);
430                 return;
431                 }
432
433         if ((!is_room_aide()) && (!(CC->internal_pgm)) ) {
434                 cprintf("%d Higher access required.\n",
435                         ERROR+HIGHER_ACCESS_REQUIRED);
436                 return;
437                 }
438
439         extract(cmd, argbuf, 0);
440         if (!strcasecmp(cmd, "users")) {
441                 retval = PurgeUsers();
442                 cprintf("%d Purged %d users.\n", OK, retval);
443                 return;
444                 }
445         else if (!strcasecmp(cmd, "messages")) {
446                 PurgeMessages();
447                 cprintf("%d Expired %d messages.\n", OK, messages_purged);
448                 return;
449                 }
450         else if (!strcasecmp(cmd, "rooms")) {
451                 retval = PurgeRooms();
452                 cprintf("%d Expired %d rooms.\n", OK, retval);
453                 return;
454                 }
455         else if (!strcasecmp(cmd, "visits")) {
456                 retval = PurgeVisits();
457                 cprintf("%d Purged %d visits.\n", OK, retval);
458                 }
459         else if (!strcasecmp(cmd, "defrag")) {
460                 defrag_databases();
461                 cprintf("%d Defragmented the databases.\n", OK);
462                 }
463         else {
464                 cprintf("%d Invalid command.\n", ERROR+ILLEGAL_VALUE);
465                 return;
466                 }
467         }
468
469
470
471 struct DLModule_Info *Dynamic_Module_Init(void)
472 {
473    CtdlRegisterProtoHook(cmd_expi, "EXPI", "Expire old system objects");
474    return &info;
475 }