eaff4280b9831e6ebcb1da5efc345e70180a0bc0
[citadel.git] / citadel / modules / expire / serv_expire.c
1 /*
2  * $Id$
3  *
4  * This module handles the expiry of old messages and the purging of old users.
5  *
6  */
7
8
9 /*
10  * A brief technical discussion:
11  *
12  * Several of the purge operations found in this module operate in two
13  * stages: the first stage generates a linked list of objects to be deleted,
14  * then the second stage deletes all listed objects from the database.
15  *
16  * At first glance this may seem cumbersome and unnecessary.  The reason it is
17  * implemented in this way is because Berkeley DB, and possibly other backends
18  * we may hook into in the future, explicitly do _not_ support the deletion of
19  * records from a file while the file is being traversed.  The delete operation
20  * will succeed, but the traversal is not guaranteed to visit every object if
21  * this is done.  Therefore we utilize the two-stage purge.
22  *
23  * When using Berkeley DB, there's another reason for the two-phase purge: we
24  * don't want the entire thing being done as one huge transaction.
25  */
26
27
28 #include "sysdep.h"
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <stdio.h>
32 #include <fcntl.h>
33 #include <signal.h>
34 #include <pwd.h>
35 #include <errno.h>
36 #include <sys/types.h>
37
38 #if TIME_WITH_SYS_TIME
39 # include <sys/time.h>
40 # include <time.h>
41 #else
42 # if HAVE_SYS_TIME_H
43 #  include <sys/time.h>
44 # else
45 #  include <time.h>
46 # endif
47 #endif
48
49 #include <sys/wait.h>
50 #include <string.h>
51 #include <limits.h>
52 #include <libcitadel.h>
53 #include "citadel.h"
54 #include "server.h"
55 #include "citserver.h"
56 #include "support.h"
57 #include "config.h"
58 #include "room_ops.h"
59 #include "policy.h"
60 #include "database.h"
61 #include "msgbase.h"
62 #include "user_ops.h"
63 #include "control.h"
64 #include "serv_network.h"       /* Needed for defenition of UseTable */
65 #include "threads.h"
66
67 #include "ctdl_module.h"
68
69
70 struct PurgeList {
71         struct PurgeList *next;
72         char name[ROOMNAMELEN]; /* use the larger of username or roomname */
73 };
74
75 struct VPurgeList {
76         struct VPurgeList *next;
77         long vp_roomnum;
78         long vp_roomgen;
79         long vp_usernum;
80 };
81
82 struct ValidRoom {
83         struct ValidRoom *next;
84         long vr_roomnum;
85         long vr_roomgen;
86 };
87
88 struct ValidUser {
89         struct ValidUser *next;
90         long vu_usernum;
91 };
92
93
94 struct ctdlroomref {
95         struct ctdlroomref *next;
96         long msgnum;
97 };
98
99 struct UPurgeList {
100         struct UPurgeList *next;
101         char up_key[256];
102 };
103
104 struct EPurgeList {
105         struct EPurgeList *next;
106         int ep_keylen;
107         char *ep_key;
108 };
109
110
111 struct PurgeList *UserPurgeList = NULL;
112 struct PurgeList *RoomPurgeList = NULL;
113 struct ValidRoom *ValidRoomList = NULL;
114 struct ValidUser *ValidUserList = NULL;
115 int messages_purged;
116 int users_not_purged;
117
118 struct ctdlroomref *rr = NULL;
119
120 extern struct CitContext *ContextList;
121
122
123 /*
124  * First phase of message purge -- gather the locations of messages which
125  * qualify for purging and write them to a temp file.
126  */
127 void GatherPurgeMessages(struct ctdlroom *qrbuf, void *data) {
128         struct ExpirePolicy epbuf;
129         long delnum;
130         time_t xtime, now;
131         struct CtdlMessage *msg = NULL;
132         int a;
133         struct cdbdata *cdbfr;
134         long *msglist = NULL;
135         int num_msgs = 0;
136         FILE *purgelist;
137
138         purgelist = (FILE *)data;
139         fprintf(purgelist, "r=%s\n", qrbuf->QRname);
140
141         time(&now);
142         GetExpirePolicy(&epbuf, qrbuf);
143
144         /* If the room is set to never expire messages ... do nothing */
145         if (epbuf.expire_mode == EXPIRE_NEXTLEVEL) return;
146         if (epbuf.expire_mode == EXPIRE_MANUAL) return;
147
148         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf->QRnumber, sizeof(long));
149
150         if (cdbfr != NULL) {
151                 msglist = malloc(cdbfr->len);
152                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
153                 num_msgs = cdbfr->len / sizeof(long);
154                 cdb_free(cdbfr);
155         }
156
157         /* Nothing to do if there aren't any messages */
158         if (num_msgs == 0) {
159                 if (msglist != NULL) free(msglist);
160                 return;
161         }
162
163         /* If the room is set to expire by count, do that */
164         if (epbuf.expire_mode == EXPIRE_NUMMSGS) {
165                 if (num_msgs > epbuf.expire_value) {
166                         for (a=0; a<(num_msgs - epbuf.expire_value); ++a) {
167                                 fprintf(purgelist, "m=%ld\n", msglist[a]);
168                                 ++messages_purged;
169                         }
170                 }
171         }
172
173         /* If the room is set to expire by age... */
174         if (epbuf.expire_mode == EXPIRE_AGE) {
175                 for (a=0; a<num_msgs; ++a) {
176                         delnum = msglist[a];
177
178                         msg = CtdlFetchMessage(delnum, 0); /* dont need body */
179                         if (msg != NULL) {
180                                 xtime = atol(msg->cm_fields['T']);
181                                 CtdlFreeMessage(msg);
182                         } else {
183                                 xtime = 0L;
184                         }
185
186                         if ((xtime > 0L)
187                            && (now - xtime > (time_t)(epbuf.expire_value * 86400L))) {
188                                 fprintf(purgelist, "m=%ld\n", delnum);
189                                 ++messages_purged;
190                         }
191                 }
192         }
193
194         if (msglist != NULL) free(msglist);
195 }
196
197
198 /*
199  * Second phase of message purge -- read list of msgs from temp file and
200  * delete them.
201  */
202 void DoPurgeMessages(FILE *purgelist) {
203         char roomname[ROOMNAMELEN];
204         long msgnum;
205         char buf[SIZ];
206
207         rewind(purgelist);
208         strcpy(roomname, "nonexistent room ___ ___");
209         while (fgets(buf, sizeof buf, purgelist) != NULL) {
210                 buf[strlen(buf)-1]=0;
211                 if (!strncasecmp(buf, "r=", 2)) {
212                         strcpy(roomname, &buf[2]);
213                 }
214                 if (!strncasecmp(buf, "m=", 2)) {
215                         msgnum = atol(&buf[2]);
216                         if (msgnum > 0L) {
217                                 CtdlDeleteMessages(roomname, &msgnum, 1, "");
218                         }
219                 }
220         }
221 }
222
223
224 void PurgeMessages(void) {
225         FILE *purgelist;
226
227         lprintf(CTDL_DEBUG, "PurgeMessages() called\n");
228         messages_purged = 0;
229
230         purgelist = tmpfile();
231         if (purgelist == NULL) {
232                 lprintf(CTDL_CRIT, "Can't create purgelist temp file: %s\n",
233                         strerror(errno));
234                 return;
235         }
236
237         ForEachRoom(GatherPurgeMessages, (void *)purgelist );
238         DoPurgeMessages(purgelist);
239         fclose(purgelist);
240 }
241
242
243 void AddValidUser(struct ctdluser *usbuf, void *data) {
244         struct ValidUser *vuptr;
245
246         vuptr = (struct ValidUser *)malloc(sizeof(struct ValidUser));
247         vuptr->next = ValidUserList;
248         vuptr->vu_usernum = usbuf->usernum;
249         ValidUserList = vuptr;
250 }
251
252 void AddValidRoom(struct ctdlroom *qrbuf, void *data) {
253         struct ValidRoom *vrptr;
254
255         vrptr = (struct ValidRoom *)malloc(sizeof(struct ValidRoom));
256         vrptr->next = ValidRoomList;
257         vrptr->vr_roomnum = qrbuf->QRnumber;
258         vrptr->vr_roomgen = qrbuf->QRgen;
259         ValidRoomList = vrptr;
260 }
261
262 void DoPurgeRooms(struct ctdlroom *qrbuf, void *data) {
263         time_t age, purge_secs;
264         struct PurgeList *pptr;
265         struct ValidUser *vuptr;
266         int do_purge = 0;
267
268         /* For mailbox rooms, there's only one purging rule: if the user who
269          * owns the room still exists, we keep the room; otherwise, we purge
270          * it.  Bypass any other rules.
271          */
272         if (qrbuf->QRflags & QR_MAILBOX) {
273                 /* if user not found, do_purge will be 1 */
274                 do_purge = 1;
275                 for (vuptr=ValidUserList; vuptr!=NULL; vuptr=vuptr->next) {
276                         if (vuptr->vu_usernum == atol(qrbuf->QRname)) {
277                                 do_purge = 0;
278                         }
279                 }
280         }
281         else {
282                 /* Any of these attributes render a room non-purgable */
283                 if (qrbuf->QRflags & QR_PERMANENT) return;
284                 if (qrbuf->QRflags & QR_DIRECTORY) return;
285                 if (qrbuf->QRflags & QR_NETWORK) return;
286                 if (!strcasecmp(qrbuf->QRname, SYSCONFIGROOM)) return;
287                 if (is_noneditable(qrbuf)) return;
288
289                 /* If we don't know the modification date, be safe and don't purge */
290                 if (qrbuf->QRmtime <= (time_t)0) return;
291
292                 /* If no room purge time is set, be safe and don't purge */
293                 if (config.c_roompurge < 0) return;
294
295                 /* Otherwise, check the date of last modification */
296                 age = time(NULL) - (qrbuf->QRmtime);
297                 purge_secs = (time_t)config.c_roompurge * (time_t)86400;
298                 if (purge_secs <= (time_t)0) return;
299                 lprintf(CTDL_DEBUG, "<%s> is <%ld> seconds old\n", qrbuf->QRname, (long)age);
300                 if (age > purge_secs) do_purge = 1;
301         } /* !QR_MAILBOX */
302
303         if (do_purge) {
304                 pptr = (struct PurgeList *) malloc(sizeof(struct PurgeList));
305                 pptr->next = RoomPurgeList;
306                 strcpy(pptr->name, qrbuf->QRname);
307                 RoomPurgeList = pptr;
308         }
309
310 }
311
312
313
314 int PurgeRooms(void) {
315         struct PurgeList *pptr;
316         int num_rooms_purged = 0;
317         struct ctdlroom qrbuf;
318         struct ValidUser *vuptr;
319         char *transcript = NULL;
320
321         lprintf(CTDL_DEBUG, "PurgeRooms() called\n");
322
323
324         /* Load up a table full of valid user numbers so we can delete
325          * user-owned rooms for users who no longer exist */
326         ForEachUser(AddValidUser, NULL);
327
328         /* Then cycle through the room file */
329         ForEachRoom(DoPurgeRooms, NULL);
330
331         /* Free the valid user list */
332         while (ValidUserList != NULL) {
333                 vuptr = ValidUserList->next;
334                 free(ValidUserList);
335                 ValidUserList = vuptr;
336         }
337
338
339         transcript = malloc(SIZ);
340         strcpy(transcript, "The following rooms have been auto-purged:\n");
341
342         while (RoomPurgeList != NULL) {
343                 if (getroom(&qrbuf, RoomPurgeList->name) == 0) {
344                         transcript=realloc(transcript, strlen(transcript)+SIZ);
345                         snprintf(&transcript[strlen(transcript)], SIZ, " %s\n",
346                                 qrbuf.QRname);
347                         delete_room(&qrbuf);
348                 }
349                 pptr = RoomPurgeList->next;
350                 free(RoomPurgeList);
351                 RoomPurgeList = pptr;
352                 ++num_rooms_purged;
353         }
354
355         if (num_rooms_purged > 0) aide_message(transcript, "Room Autopurger Message");
356         free(transcript);
357
358         lprintf(CTDL_DEBUG, "Purged %d rooms.\n", num_rooms_purged);
359         return(num_rooms_purged);
360 }
361
362
363 /*
364  * Back end function to check user accounts for associated Unix accounts
365  * which no longer exist.  (Only relevant for host auth mode.)
366  */
367 void do_uid_user_purge(struct ctdluser *us, void *data) {
368         struct PurgeList *pptr;
369
370         if ((us->uid != (-1)) && (us->uid != CTDLUID)) {
371                 if (getpwuid(us->uid) == NULL) {
372                         pptr = (struct PurgeList *)
373                                 malloc(sizeof(struct PurgeList));
374                         pptr->next = UserPurgeList;
375                         strcpy(pptr->name, us->fullname);
376                         UserPurgeList = pptr;
377                 }
378         }
379         else {
380                 ++users_not_purged;
381         }
382 }
383
384
385
386 /*
387  * Back end function to check user accounts for expiration.
388  */
389 void do_user_purge(struct ctdluser *us, void *data) {
390         int purge;
391         time_t now;
392         time_t purge_time;
393         struct PurgeList *pptr;
394
395         /* Set purge time; if the user overrides the system default, use it */
396         if (us->USuserpurge > 0) {
397                 purge_time = ((time_t)us->USuserpurge) * 86400L;
398         }
399         else {
400                 purge_time = ((time_t)config.c_userpurge) * 86400L;
401         }
402
403         /* The default rule is to not purge. */
404         purge = 0;
405
406         /* If the user hasn't called in two months, his/her account
407          * has expired, so purge the record.
408          */
409         now = time(NULL);
410         if ((now - us->lastcall) > purge_time) purge = 1;
411
412         /* If the user set his/her password to 'deleteme', he/she
413          * wishes to be deleted, so purge the record.
414          */
415         if (!strcasecmp(us->password, "deleteme")) purge = 1;
416
417         /* If the record is marked as permanent, don't purge it.
418          */
419         if (us->flags & US_PERM) purge = 0;
420
421         /* If the user is an Aide, don't purge him/her/it.
422          */
423         if (us->axlevel == 6) purge = 0;
424
425         /* If the access level is 0, the record should already have been
426          * deleted, but maybe the user was logged in at the time or something.
427          * Delete the record now.
428          */
429         if (us->axlevel == 0) purge = 1;
430
431         /* 0 calls is impossible.  If there are 0 calls, it must
432          * be a corrupted record, so purge it.
433          */
434         if (us->timescalled == 0) purge = 1;
435
436         /* User number 0, as well as any negative user number, is
437          * also impossible.
438          */
439         if (us->usernum < 1L) purge = 1;
440
441         if (purge == 1) {
442                 pptr = (struct PurgeList *) malloc(sizeof(struct PurgeList));
443                 pptr->next = UserPurgeList;
444                 strcpy(pptr->name, us->fullname);
445                 UserPurgeList = pptr;
446         }
447         else {
448                 ++users_not_purged;
449         }
450
451 }
452
453
454
455 int PurgeUsers(void) {
456         struct PurgeList *pptr;
457         int num_users_purged = 0;
458         char *transcript = NULL;
459
460         lprintf(CTDL_DEBUG, "PurgeUsers() called\n");
461         users_not_purged = 0;
462
463         switch(config.c_auth_mode) {
464                 case AUTHMODE_NATIVE:
465                         if (config.c_userpurge > 0) {
466                                 ForEachUser(do_user_purge, NULL);
467                         }
468                         break;
469                 case AUTHMODE_HOST:
470                         ForEachUser(do_uid_user_purge, NULL);
471                         break;
472                 default:
473                         lprintf(CTDL_DEBUG, "Unknown authentication mode!\n");
474                         break;
475         }
476
477         transcript = malloc(SIZ);
478
479         if (users_not_purged == 0) {
480                 strcpy(transcript, "The auto-purger was told to purge every user.  It is\n"
481                                 "refusing to do this because it usually indicates a problem\n"
482                                 "such as an inability to communicate with a name service.\n"
483                 );
484                 while (UserPurgeList != NULL) {
485                         pptr = UserPurgeList->next;
486                         free(UserPurgeList);
487                         UserPurgeList = pptr;
488                         ++num_users_purged;
489                 }
490         }
491
492         else {
493                 strcpy(transcript, "The following users have been auto-purged:\n");
494                 while (UserPurgeList != NULL) {
495                         transcript=realloc(transcript, strlen(transcript)+SIZ);
496                         snprintf(&transcript[strlen(transcript)], SIZ, " %s\n",
497                                 UserPurgeList->name);
498                         purge_user(UserPurgeList->name);
499                         pptr = UserPurgeList->next;
500                         free(UserPurgeList);
501                         UserPurgeList = pptr;
502                         ++num_users_purged;
503                 }
504         }
505
506         if (num_users_purged > 0) aide_message(transcript, "User Purge Message");
507         free(transcript);
508
509         lprintf(CTDL_DEBUG, "Purged %d users.\n", num_users_purged);
510         return(num_users_purged);
511 }
512
513
514 /*
515  * Purge visits
516  *
517  * This is a really cumbersome "garbage collection" function.  We have to
518  * delete visits which refer to rooms and/or users which no longer exist.  In
519  * order to prevent endless traversals of the room and user files, we first
520  * build linked lists of rooms and users which _do_ exist on the system, then
521  * traverse the visit file, checking each record against those two lists and
522  * purging the ones that do not have a match on _both_ lists.  (Remember, if
523  * either the room or user being referred to is no longer on the system, the
524  * record is completely useless.)
525  */
526 int PurgeVisits(void) {
527         struct cdbdata *cdbvisit;
528         struct visit vbuf;
529         struct VPurgeList *VisitPurgeList = NULL;
530         struct VPurgeList *vptr;
531         int purged = 0;
532         char IndexBuf[32];
533         int IndexLen;
534         struct ValidRoom *vrptr;
535         struct ValidUser *vuptr;
536         int RoomIsValid, UserIsValid;
537
538         /* First, load up a table full of valid room/gen combinations */
539         ForEachRoom(AddValidRoom, NULL);
540
541         /* Then load up a table full of valid user numbers */
542         ForEachUser(AddValidUser, NULL);
543
544         /* Now traverse through the visits, purging irrelevant records... */
545         cdb_rewind(CDB_VISIT);
546         while(cdbvisit = cdb_next_item(CDB_VISIT), cdbvisit != NULL) {
547                 memset(&vbuf, 0, sizeof(struct visit));
548                 memcpy(&vbuf, cdbvisit->ptr,
549                         ( (cdbvisit->len > sizeof(struct visit)) ?
550                         sizeof(struct visit) : cdbvisit->len) );
551                 cdb_free(cdbvisit);
552
553                 RoomIsValid = 0;
554                 UserIsValid = 0;
555
556                 /* Check to see if the room exists */
557                 for (vrptr=ValidRoomList; vrptr!=NULL; vrptr=vrptr->next) {
558                         if ( (vrptr->vr_roomnum==vbuf.v_roomnum)
559                              && (vrptr->vr_roomgen==vbuf.v_roomgen))
560                                 RoomIsValid = 1;
561                 }
562
563                 /* Check to see if the user exists */
564                 for (vuptr=ValidUserList; vuptr!=NULL; vuptr=vuptr->next) {
565                         if (vuptr->vu_usernum == vbuf.v_usernum)
566                                 UserIsValid = 1;
567                 }
568
569                 /* Put the record on the purge list if it's dead */
570                 if ((RoomIsValid==0) || (UserIsValid==0)) {
571                         vptr = (struct VPurgeList *)
572                                 malloc(sizeof(struct VPurgeList));
573                         vptr->next = VisitPurgeList;
574                         vptr->vp_roomnum = vbuf.v_roomnum;
575                         vptr->vp_roomgen = vbuf.v_roomgen;
576                         vptr->vp_usernum = vbuf.v_usernum;
577                         VisitPurgeList = vptr;
578                 }
579
580         }
581
582         /* Free the valid room/gen combination list */
583         while (ValidRoomList != NULL) {
584                 vrptr = ValidRoomList->next;
585                 free(ValidRoomList);
586                 ValidRoomList = vrptr;
587         }
588
589         /* Free the valid user list */
590         while (ValidUserList != NULL) {
591                 vuptr = ValidUserList->next;
592                 free(ValidUserList);
593                 ValidUserList = vuptr;
594         }
595
596         /* Now delete every visit on the purged list */
597         while (VisitPurgeList != NULL) {
598                 IndexLen = GenerateRelationshipIndex(IndexBuf,
599                                 VisitPurgeList->vp_roomnum,
600                                 VisitPurgeList->vp_roomgen,
601                                 VisitPurgeList->vp_usernum);
602                 cdb_delete(CDB_VISIT, IndexBuf, IndexLen);
603                 vptr = VisitPurgeList->next;
604                 free(VisitPurgeList);
605                 VisitPurgeList = vptr;
606                 ++purged;
607         }
608
609         return(purged);
610 }
611
612 /*
613  * Purge the use table of old entries.
614  *
615  */
616 int PurgeUseTable(void) {
617         int purged = 0;
618         struct cdbdata *cdbut;
619         struct UseTable ut;
620         struct UPurgeList *ul = NULL;
621         struct UPurgeList *uptr; 
622
623         /* Phase 1: traverse through the table, discovering old records... */
624         lprintf(CTDL_DEBUG, "Purge use table: phase 1\n");
625         cdb_rewind(CDB_USETABLE);
626         while(cdbut = cdb_next_item(CDB_USETABLE), cdbut != NULL) {
627
628         /*
629          * TODODRW: change this to create a new function time_t cdb_get_timestamp( struct cdbdata *)
630          * this will release this file from the serv_network.h
631          * Maybe it could be a macro that extracts and casts the reult
632          */
633                 memcpy(&ut, cdbut->ptr,
634                        ((cdbut->len > sizeof(struct UseTable)) ?
635                         sizeof(struct UseTable) : cdbut->len));
636                 cdb_free(cdbut);
637
638                 if ( (time(NULL) - ut.ut_timestamp) > USETABLE_RETAIN ) {
639                         uptr = (struct UPurgeList *) malloc(sizeof(struct UPurgeList));
640                         if (uptr != NULL) {
641                                 uptr->next = ul;
642                                 safestrncpy(uptr->up_key, ut.ut_msgid, sizeof uptr->up_key);
643                                 ul = uptr;
644                         }
645                         ++purged;
646                 }
647
648         }
649
650         /* Phase 2: delete the records */
651         lprintf(CTDL_DEBUG, "Purge use table: phase 2\n");
652         while (ul != NULL) {
653                 cdb_delete(CDB_USETABLE, ul->up_key, strlen(ul->up_key));
654                 uptr = ul->next;
655                 free(ul);
656                 ul = uptr;
657         }
658
659         lprintf(CTDL_DEBUG, "Purge use table: finished (purged %d records)\n", purged);
660         return(purged);
661 }
662
663
664
665 /*
666  * Purge the EUID Index of old records.
667  *
668  */
669 int PurgeEuidIndexTable(void) {
670         int purged = 0;
671         struct cdbdata *cdbei;
672         struct EPurgeList *el = NULL;
673         struct EPurgeList *eptr; 
674         long msgnum;
675         struct CtdlMessage *msg = NULL;
676
677         /* Phase 1: traverse through the table, discovering old records... */
678         lprintf(CTDL_DEBUG, "Purge EUID index: phase 1\n");
679         cdb_rewind(CDB_EUIDINDEX);
680         while(cdbei = cdb_next_item(CDB_EUIDINDEX), cdbei != NULL) {
681
682                 memcpy(&msgnum, cdbei->ptr, sizeof(long));
683
684                 msg = CtdlFetchMessage(msgnum, 0);
685                 if (msg != NULL) {
686                         CtdlFreeMessage(msg);   /* it still exists, so do nothing */
687                 }
688                 else {
689                         eptr = (struct EPurgeList *) malloc(sizeof(struct EPurgeList));
690                         if (eptr != NULL) {
691                                 eptr->next = el;
692                                 eptr->ep_keylen = cdbei->len - sizeof(long);
693                                 eptr->ep_key = malloc(cdbei->len);
694                                 memcpy(eptr->ep_key, &cdbei->ptr[sizeof(long)], eptr->ep_keylen);
695                                 el = eptr;
696                         }
697                         ++purged;
698                 }
699
700                 cdb_free(cdbei);
701
702         }
703
704         /* Phase 2: delete the records */
705         lprintf(CTDL_DEBUG, "Purge euid index: phase 2\n");
706         while (el != NULL) {
707                 cdb_delete(CDB_EUIDINDEX, el->ep_key, el->ep_keylen);
708                 free(el->ep_key);
709                 eptr = el->next;
710                 free(el);
711                 el = eptr;
712         }
713
714         lprintf(CTDL_DEBUG, "Purge euid index: finished (purged %d records)\n", purged);
715         return(purged);
716 }
717
718
719 void *purge_databases(void *args)
720 {
721         int retval;
722         static time_t last_purge = 0;
723         time_t now;
724         struct tm tm;
725
726         while (!CtdlThreadCheckStop()) {
727                 /* Do the auto-purge if the current hour equals the purge hour,
728                  * but not if the operation has already been performed in the
729                  * last twelve hours.  This is usually enough granularity.
730                  */
731                 now = time(NULL);
732                 localtime_r(&now, &tm);
733                 if ((tm.tm_hour != config.c_purge_hour) || ((now - last_purge) < 43200)) {
734                         CtdlThreadSleep(60);
735                         continue;
736                 }
737
738
739                 lprintf(CTDL_INFO, "Auto-purger: starting.\n");
740
741                 if (!CtdlThreadCheckStop())
742                 {
743                         retval = PurgeUsers();
744                         lprintf(CTDL_NOTICE, "Purged %d users.\n", retval);
745                 }
746                 
747                 if (!CtdlThreadCheckStop())
748                 {
749                         PurgeMessages();
750                         lprintf(CTDL_NOTICE, "Expired %d messages.\n", messages_purged);
751                 }
752
753                 if (!CtdlThreadCheckStop())
754                 {
755                         retval = PurgeRooms();
756                         lprintf(CTDL_NOTICE, "Expired %d rooms.\n", retval);
757                 }
758
759                 if (!CtdlThreadCheckStop())
760                 {
761                         retval = PurgeVisits();
762                         lprintf(CTDL_NOTICE, "Purged %d visits.\n", retval);
763                 }
764
765                 if (!CtdlThreadCheckStop())
766                 {
767                         retval = PurgeUseTable();
768                         lprintf(CTDL_NOTICE, "Purged %d entries from the use table.\n", retval);
769                 }
770
771                 if (!CtdlThreadCheckStop())
772                 {
773                         retval = PurgeEuidIndexTable();
774                         lprintf(CTDL_NOTICE, "Purged %d entries from the EUID index.\n", retval);
775                 }
776
777                 if (!CtdlThreadCheckStop())
778                 {
779                         retval = TDAP_ProcessAdjRefCountQueue();
780                         lprintf(CTDL_NOTICE, "Processed %d message reference count adjustments.\n", retval);
781                 }
782
783                 if (!CtdlThreadCheckStop())
784                 {
785                         lprintf(CTDL_INFO, "Auto-purger: finished.\n");
786                         last_purge = now;       /* So we don't do it again soon */
787                 }
788                 else
789                         lprintf(CTDL_INFO, "Auto-purger: STOPPED.\n");
790
791         }
792         return NULL;
793 }
794 /*****************************************************************************/
795
796
797 void do_fsck_msg(long msgnum, void *userdata) {
798         struct ctdlroomref *ptr;
799
800         ptr = (struct ctdlroomref *)malloc(sizeof(struct ctdlroomref));
801         ptr->next = rr;
802         ptr->msgnum = msgnum;
803         rr = ptr;
804 }
805
806 void do_fsck_room(struct ctdlroom *qrbuf, void *data)
807 {
808         getroom(&CC->room, qrbuf->QRname);
809         CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL, do_fsck_msg, NULL);
810 }
811
812 /*
813  * Check message reference counts
814  */
815 void cmd_fsck(char *argbuf) {
816         long msgnum;
817         struct cdbdata *cdbmsg;
818         struct MetaData smi;
819         struct ctdlroomref *ptr;
820         int realcount;
821
822         if (CtdlAccessCheck(ac_aide)) return;
823
824         /* Lame way of checking whether anyone else is doing this now */
825         if (rr != NULL) {
826                 cprintf("%d Another FSCK is already running.\n", ERROR + RESOURCE_BUSY);
827                 return;
828         }
829
830         cprintf("%d Checking message reference counts\n", LISTING_FOLLOWS);
831
832         cprintf("\nThis could take a while.  Please be patient!\n\n");
833         cprintf("Gathering pointers...\n");
834         ForEachRoom(do_fsck_room, NULL);
835
836         get_control();
837         cprintf("Checking message base...\n");
838         for (msgnum = 0L; msgnum <= CitControl.MMhighest; ++msgnum) {
839
840                 cdbmsg = cdb_fetch(CDB_MSGMAIN, &msgnum, sizeof(long));
841                 if (cdbmsg != NULL) {
842                         cdb_free(cdbmsg);
843                         cprintf("Message %7ld    ", msgnum);
844
845                         GetMetaData(&smi, msgnum);
846                         cprintf("refcount=%-2d   ", smi.meta_refcount);
847
848                         realcount = 0;
849                         for (ptr = rr; ptr != NULL; ptr = ptr->next) {
850                                 if (ptr->msgnum == msgnum) ++realcount;
851                         }
852                         cprintf("realcount=%-2d\n", realcount);
853
854                         if ( (smi.meta_refcount != realcount)
855                            || (realcount == 0) ) {
856                                 AdjRefCount(msgnum, (smi.meta_refcount - realcount));
857                         }
858
859                 }
860
861         }
862
863         cprintf("Freeing memory...\n");
864         while (rr != NULL) {
865                 ptr = rr->next;
866                 free(rr);
867                 rr = ptr;
868         }
869
870         cprintf("Done!\n");
871         cprintf("000\n");
872
873 }
874
875
876
877
878 /*****************************************************************************/
879
880 CTDL_MODULE_INIT(expire)
881 {
882         if (!threading)
883         {
884                 CtdlRegisterProtoHook(cmd_fsck, "FSCK", "Check message ref counts");
885         }
886         else
887                 CtdlThreadCreate("Auto Purger", CTDLTHREAD_BIGSTACK, purge_databases, NULL);
888         /* return our Subversion id for the Log */
889         return "$Id$";
890 }