b685c701af4d1f13d99bd716fd156eeb06eea183
[citadel.git] / citadel / housekeeping.c
1 /*
2  * This file contains miscellaneous housekeeping tasks.
3  *
4  * Copyright (c) 1987-2017 by the citadel.org team
5  *
6  * This program is open source software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License, version 3.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include <stdio.h>
16 #include <libcitadel.h>
17
18 #include "ctdl_module.h"
19 #include "serv_extensions.h"
20 #include "room_ops.h"
21 #include "internet_addressing.h"
22 #include "journaling.h"
23
24 void check_sched_shutdown(void) {
25         if ((ScheduledShutdown == 1) && (ContextList == NULL)) {
26                 syslog(LOG_NOTICE, "housekeeping: scheduled shutdown initiating");
27                 server_shutting_down = 1;
28         }
29 }
30
31
32 /*
33  * Check (and fix) floor reference counts.  This doesn't need to be done
34  * very often, since the counts should remain correct during normal operation.
35  */
36 void check_ref_counts_backend(struct ctdlroom *qrbuf, void *data) {
37
38         int *new_refcounts;
39
40         new_refcounts = (int *) data;
41
42         ++new_refcounts[(int)qrbuf->QRfloor];
43 }
44
45
46 void check_ref_counts(void) {
47         struct floor flbuf;
48         int a;
49
50         int new_refcounts[MAXFLOORS];
51
52         syslog(LOG_DEBUG, "housekeeping: checking floor reference counts");
53         for (a=0; a<MAXFLOORS; ++a) {
54                 new_refcounts[a] = 0;
55         }
56
57         cdb_begin_transaction();
58         CtdlForEachRoom(check_ref_counts_backend, (void *)new_refcounts );
59         cdb_end_transaction();
60
61         for (a=0; a<MAXFLOORS; ++a) {
62                 lgetfloor(&flbuf, a);
63                 flbuf.f_ref_count = new_refcounts[a];
64                 if (new_refcounts[a] > 0) {
65                         flbuf.f_flags = flbuf.f_flags | QR_INUSE;
66                 }
67                 else {
68                         flbuf.f_flags = flbuf.f_flags & ~QR_INUSE;
69                 }
70                 lputfloor(&flbuf, a);
71                 syslog(LOG_DEBUG, "housekeeping: floor %d has %d rooms", a, new_refcounts[a]);
72         }
73 }       
74
75
76 /*
77  * This is the housekeeping loop.  Worker threads come through here after
78  * processing client requests but before jumping back into the pool.  We
79  * only allow housekeeping to execute once per minute, and we only allow one
80  * instance to run at a time.
81  */
82 static int housekeeping_in_progress = 0;
83 static time_t last_timer = 0L;
84 void do_housekeeping(void) {
85         int do_housekeeping_now = 0;
86         int do_perminute_housekeeping_now = 0;
87         time_t now;
88
89         /*
90          * We do it this way instead of wrapping the whole loop in an
91          * S_HOUSEKEEPING critical section because it eliminates the need to
92          * potentially have multiple concurrent mutexes in progress.
93          */
94         begin_critical_section(S_HOUSEKEEPING);
95         if (housekeeping_in_progress == 0) {
96                 do_housekeeping_now = 1;
97                 housekeeping_in_progress = 1;
98         }
99         end_critical_section(S_HOUSEKEEPING);
100
101         if (do_housekeeping_now == 0) {
102                 return;
103         }
104
105         /*
106          * Ok, at this point we've made the decision to run the housekeeping
107          * loop.  Everything below this point is real work.
108          */
109
110         now = time(NULL);
111         if ( (now - last_timer) > (time_t)60 ) {
112                 do_perminute_housekeeping_now = 1;
113                 last_timer = time(NULL);
114         }
115
116         /* First, do the "as often as needed" stuff... */
117         JournalRunQueue();
118         PerformSessionHooks(EVT_HOUSE);
119
120         /* Then, do the "once per minute" stuff... */
121         if (do_perminute_housekeeping_now) {
122                 cdb_check_handles();                    /* suggested by Justin Case */
123                 PerformSessionHooks(EVT_TIMER);         /* Run any timer hooks */
124         }
125
126         /*
127          * All done.
128          */
129         begin_critical_section(S_HOUSEKEEPING);
130         housekeeping_in_progress = 0;
131         end_critical_section(S_HOUSEKEEPING);
132 }
133
134
135 void CtdlDisableHouseKeeping(void)
136 {
137         int ActiveBackgroundJobs;
138         int do_housekeeping_now = 0;
139         struct CitContext *nptr;
140         int nContexts, i;
141
142 retry_block_housekeeping:
143         syslog(LOG_INFO, "housekeeping: trying to disable services");
144         begin_critical_section(S_HOUSEKEEPING);
145         if (housekeeping_in_progress == 0) {
146                 do_housekeeping_now = 1;
147                 housekeeping_in_progress = 1;
148         }
149         end_critical_section(S_HOUSEKEEPING);
150         if (do_housekeeping_now == 0) {
151                 usleep(1000000);
152                 goto retry_block_housekeeping;
153         }
154         
155         syslog(LOG_INFO, "housekeeping: checking for running server jobs");
156
157 retry_wait_for_contexts:
158         /* So that we don't keep the context list locked for a long time
159          * we create a copy of it first
160          */
161         ActiveBackgroundJobs = 0;
162         nptr = CtdlGetContextArray(&nContexts) ;
163         if (nptr)
164         {
165                 for (i=0; i<nContexts; i++) 
166                 {
167                         if ((nptr[i].state != CON_SYS) || (nptr[i].lastcmd == 0))
168                                 continue;
169                         ActiveBackgroundJobs ++;
170                         syslog(LOG_INFO, "jousekeeping: job CC[%d] active; use TERM if you don't want to wait for it", nptr[i].cs_pid);
171                 
172                 }
173         
174                 free(nptr);
175
176         }
177         if (ActiveBackgroundJobs != 0) {
178                 syslog(LOG_INFO, "housekeeping: found %d running jobs, need to wait", ActiveBackgroundJobs);
179                 usleep(5000000);
180                 goto retry_wait_for_contexts;
181         }
182         syslog(LOG_INFO, "housekeeping: disabled now.");
183 }
184
185
186 void CtdlEnableHouseKeeping(void)
187 {
188         begin_critical_section(S_HOUSEKEEPING);
189         housekeeping_in_progress = 0;
190         end_critical_section(S_HOUSEKEEPING);
191 }